From 39ba4f50e8366a6d09096a2a33a8b14199a0f7df Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Tue, 6 Oct 2020 20:51:20 -0700 Subject: [PATCH 1/7] Add ability to override os and runtime in 'az webapp up' --- .../appservice/_create_util.py | 13 +++- .../cli/command_modules/appservice/_params.py | 2 + .../cli/command_modules/appservice/custom.py | 65 +++++++++++++------ .../tests/latest/test_webapp_up_commands.py | 4 +- 4 files changed, 61 insertions(+), 23 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py b/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py index 494a1bf247f..1f2dbab76a2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py @@ -345,8 +345,10 @@ def get_profile_username(): return user -def get_sku_to_use(src_dir, html=False, sku=None): +def get_sku_to_use(src_dir, html=False, sku=None, runtime=None): if sku is None: + if runtime: # user overrided language detection by specifiying runtime + return 'F1' lang_details = get_lang_from_content(src_dir, html) return lang_details.get("default_sku") logger.info("Found sku argument, skipping use default sku") @@ -373,6 +375,15 @@ def get_plan_to_use(cmd, user, os_name, loc, sku, create_rg, resource_group_name return plan +# Portal uses the current_stack property in the app metadata to display the correct stack +# This value should be one of: ['dotnet', 'dotnetcore', 'node', 'php', 'python', 'java'] +def get_current_stack_from_runtime(runtime): + language = runtime.split('|')[0].lower() + if language == 'aspnet': + return 'dotnet' + return language + + # if plan name not provided we need to get a plan name based on the OS, location & SKU def _determine_if_default_plan_to_use(cmd, plan_name, resource_group_name, loc, sku, create_rg): client = web_client_factory(cmd.cli_ctx) 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 86acd88369b..f2011be6fd5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_params.py @@ -603,6 +603,8 @@ def load_arguments(self, _): help="name of the appserviceplan associated with the webapp", local_context_attribute=LocalContextAttribute(name='plan_name', actions=[LocalContextAction.GET])) c.argument('sku', arg_type=sku_arg_type) + c.argument('os_type', options_list=['--os-type'], arg_type=get_enum_type(OS_TYPES), help="Set the OS type for the app to be created.") + c.argument('runtime', options_list=['--runtime', '-r'], help="canonicalized web runtime in the format of Framework|Version, e.g. \"PHP|7.2\". Use `az webapp list-runtimes` for available list") c.argument('dryrun', help="show summary of the create and deploy operation instead of executing it", default=False, action='store_true') c.argument('location', arg_type=get_location_type(self.cli_ctx)) 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 57090972d52..30becfa346e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -57,7 +57,7 @@ from ._create_util import (zip_contents_from_dir, get_runtime_version_details, create_resource_group, get_app_details, should_create_new_rg, set_location, get_site_availability, get_profile_username, get_plan_to_use, get_lang_from_content, get_rg_to_use, get_sku_to_use, - detect_os_form_src) + detect_os_form_src, get_current_stack_from_runtime) from ._constants import (FUNCTIONS_STACKS_API_JSON_PATHS, FUNCTIONS_STACKS_API_KEYS, FUNCTIONS_LINUX_RUNTIME_VERSION_REGEX, FUNCTIONS_WINDOWS_RUNTIME_VERSION_REGEX, NODE_VERSION_DEFAULT, RUNTIME_STACKS, FUNCTIONS_NO_V2_REGIONS) @@ -124,6 +124,7 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi https_only=using_webapp_up) helper = _StackRuntimeHelper(cmd, client, linux=is_linux) + current_stack = None if is_linux: if not validate_container_app_create_options(runtime, deployment_container_image_name, multicontainer_config_type, multicontainer_config_file): @@ -165,14 +166,13 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi "only appliable on linux webapp") match = helper.resolve(runtime) if not match: - raise CLIError("Runtime '{}' is not supported. Please invoke 'az webapp list-runtimes' to cross check".format(runtime)) # pylint: disable=line-too-long + raise CLIError("Windows runtime '{}' is not supported. " + "Please invoke 'az webapp list-runtimes' to cross check".format(runtime)) match['setter'](cmd=cmd, stack=match, site_config=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'): - if name_validation.name_available: - site_config.app_settings.append(NameValuePair(name="WEBSITE_NODE_DEFAULT_VERSION", - value=node_default_version)) + # portal uses the current_stack propety in metadata to display stack for windows apps + current_stack = get_current_stack_from_runtime(runtime) + else: # windows webapp without runtime specified if name_validation.name_available: site_config.app_settings.append(NameValuePair(name="WEBSITE_NODE_DEFAULT_VERSION", @@ -194,6 +194,11 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi poller = client.web_apps.create_or_update(resource_group_name, name, webapp_def) webapp = LongRunningOperation(cmd.cli_ctx)(poller) + if current_stack: + app_metadata = client.web_apps.list_metadata(resource_group_name, name) + app_metadata.properties["CURRENT_STACK"] = current_stack + client.web_apps.update_metadata(resource_group_name, name, kind="app", properties=app_metadata.properties) + # Ensure SCC operations follow right after the 'create', no precedent appsetting update commands _set_remote_or_local_git(cmd, webapp, resource_group_name, name, deployment_source_url, deployment_source_branch, deployment_local_git) @@ -3535,8 +3540,8 @@ def get_history_triggered_webjob(cmd, resource_group_name, name, webjob_name, sl return client.web_apps.list_triggered_web_job_history(resource_group_name, name, webjob_name) -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): +def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku=None, os_type=None, runtime=None, dryrun=False, # pylint: disable=too-many-statements, + logs=False, launch_browser=False, html=False): import os AppServicePlan = cmd.get_models('AppServicePlan') src_dir = os.getcwd() @@ -3546,17 +3551,38 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku _create_new_rg = False _site_availability = get_site_availability(cmd, name) _create_new_app = _site_availability.name_available - os_name = detect_os_form_src(src_dir, html) - lang_details = get_lang_from_content(src_dir, html) - language = lang_details.get('language') - - # detect the version - data = get_runtime_version_details(lang_details.get('file_loc'), language) - version_used_create = data.get('to_create') - detected_version = data.get('detected') + os_name = os_type if os_type else detect_os_form_src(src_dir, html) + _is_linux = os_name.lower() == 'linux' + + if runtime and html: + raise CLIError('Conflicting parameters: cannot have both --runtime and --html specified.') + + if runtime: + # TODO calvin: Change helper.resolve to accept different separators ('|', ',', etc) + helper = _StackRuntimeHelper(cmd, client, linux=_is_linux) + match = helper.resolve(runtime) + if not match: + if _is_linux: + raise CLIError("Linux runtime '{}' is not supported." + " Please invoke 'az webapp list-runtimes --linux' to cross check".format(runtime)) + raise CLIError("Windows runtime '{}' is not supported." + " Please invoke 'az webapp list-runtimes' to cross check".format(runtime)) + + language = runtime.split('|')[0] + version_used_create = '|'.join(runtime.split('|')[1:]) + detected_version = '-' + else: + # detect the version + _lang_details = get_lang_from_content(src_dir, html) + language = _lang_details.get('language') + _data = get_runtime_version_details(_lang_details.get('file_loc'), language) + version_used_create = _data.get('to_create') + detected_version = _data.get('detected') + runtime_version = "{}|{}".format(language, version_used_create) if \ version_used_create != "-" else version_used_create site_config = None + if not _create_new_app: # App exists, or App name unavailable if _site_availability.reason == 'Invalid': raise CLIError(_site_availability.message) @@ -3597,10 +3623,9 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku site_config = client.web_apps.get_configuration(rg_name, name) else: # need to create new app, check if we need to use default RG or use user entered values logger.warning("The webapp '%s' doesn't exist", name) - sku = get_sku_to_use(src_dir, html, sku) + sku = get_sku_to_use(src_dir, html, sku, runtime) loc = set_location(cmd, sku, location) rg_name = get_rg_to_use(cmd, user, loc, os_name, resource_group_name) - _is_linux = os_name.lower() == 'linux' _create_new_rg = should_create_new_rg(cmd, rg_name, _is_linux) plan = get_plan_to_use(cmd=cmd, user=user, @@ -3643,7 +3668,7 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku if _create_new_app: logger.warning("Creating webapp '%s' ...", name) - create_webapp(cmd, rg_name, name, plan, runtime_version if _is_linux else None, + create_webapp(cmd, rg_name, name, plan, runtime_version if not html else None, using_webapp_up=True, language=language) _configure_default_logging(cmd, rg_name, name) else: # for existing app if we might need to update the stack runtime settings diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py index 09c714b3b30..4fbbe334cb0 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py @@ -205,8 +205,8 @@ def test_webapp_up_dotnetcore_e2e(self, resource_group): ]) self.cmd('webapp config appsettings list', checks=[ - JMESPathCheck('[1].name', 'SCM_DO_BUILD_DURING_DEPLOYMENT'), - JMESPathCheck('[1].value', 'True') + JMESPathCheck('[0].name', 'SCM_DO_BUILD_DURING_DEPLOYMENT'), + JMESPathCheck('[0].value', 'True') ]) # verify SKU and kind of ASP created From 97ed1a6233d680427afcab2b12330e0ea013a0b3 Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Tue, 13 Oct 2020 23:05:21 -0700 Subject: [PATCH 2/7] Allow different delimiters for runtimes --- .../azure/cli/command_modules/appservice/_params.py | 6 ++++-- .../azure/cli/command_modules/appservice/custom.py | 11 +++++++++-- 2 files changed, 13 insertions(+), 4 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 f2011be6fd5..1db6dcd92ee 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_params.py @@ -131,7 +131,8 @@ def load_arguments(self, _): c.argument('docker_registry_server_password', options_list=['--docker-registry-server-password', '-w'], help='The container registry server password. Required for private registries.') c.argument('multicontainer_config_type', options_list=['--multicontainer-config-type'], help="Linux only.", arg_type=get_enum_type(MULTI_CONTAINER_TYPES)) c.argument('multicontainer_config_file', options_list=['--multicontainer-config-file'], help="Linux only. Config file for multicontainer apps. (local or remote)") - c.argument('runtime', options_list=['--runtime', '-r'], help="canonicalized web runtime in the format of Framework|Version, e.g. \"PHP|7.2\". Use `az webapp list-runtimes` for available list") # TODO ADD completer + c.argument('runtime', options_list=['--runtime', '-r'], help="canonicalized web runtime in the format of Framework|Version, e.g. \"PHP|7.2\". Allowed delimiters: \"|\", \" \", \":\". " + "Use `az webapp list-runtimes` for available list") # TODO ADD completer c.argument('plan', options_list=['--plan', '-p'], configured_default='appserviceplan', completer=get_resource_name_completion_list('Microsoft.Web/serverFarms'), help="name or resource id of the app service plan. Use 'appservice plan create' to get one", @@ -604,7 +605,8 @@ def load_arguments(self, _): local_context_attribute=LocalContextAttribute(name='plan_name', actions=[LocalContextAction.GET])) c.argument('sku', arg_type=sku_arg_type) c.argument('os_type', options_list=['--os-type'], arg_type=get_enum_type(OS_TYPES), help="Set the OS type for the app to be created.") - c.argument('runtime', options_list=['--runtime', '-r'], help="canonicalized web runtime in the format of Framework|Version, e.g. \"PHP|7.2\". Use `az webapp list-runtimes` for available list") + c.argument('runtime', options_list=['--runtime', '-r'], help="canonicalized web runtime in the format of Framework|Version, e.g. \"PHP|7.2\". Allowed delimiters: \"|\", \" \", \":\". " + "Use `az webapp list-runtimes` for available list.") c.argument('dryrun', help="show summary of the create and deploy operation instead of executing it", default=False, action='store_true') c.argument('location', arg_type=get_location_type(self.cli_ctx)) 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 30becfa346e..599abaa7860 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -123,6 +123,8 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi webapp_def = Site(location=location, site_config=site_config, server_farm_id=plan_info.id, tags=tags, https_only=using_webapp_up) helper = _StackRuntimeHelper(cmd, client, linux=is_linux) + if runtime: + runtime = helper.remove_delimiters(runtime) current_stack = None if is_linux: @@ -2534,6 +2536,11 @@ def __init__(self, cmd, client, linux=False): self._linux = linux self._stacks = [] + def remove_delimiters(self, runtime): + import re + runtime = re.split('[| :]', runtime) # delimiters allowed: '|', ' ', ':' + return '|'.join(filter(None, runtime)) + def resolve(self, display_name): self._load_stacks_hardcoded() return next((s for s in self._stacks if s['displayName'].lower() == display_name.lower()), @@ -3558,8 +3565,8 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku raise CLIError('Conflicting parameters: cannot have both --runtime and --html specified.') if runtime: - # TODO calvin: Change helper.resolve to accept different separators ('|', ',', etc) helper = _StackRuntimeHelper(cmd, client, linux=_is_linux) + runtime = helper.remove_delimiters(runtime) match = helper.resolve(runtime) if not match: if _is_linux: @@ -3615,7 +3622,7 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku # Raise error if current OS of the app is different from the current one if current_os.lower() != os_name.lower(): raise CLIError("The webapp '{}' is a {} app. The code detected at '{}' will default to " - "'{}'. Please create a new app" + "'{}'. Please create a new app " "to continue this operation.".format(name, current_os, src_dir, os_name)) _is_linux = plan_info.reserved # for an existing app check if the runtime version needs to be updated From 62677e8065bb366d19a659ef07dc674dc0a91776 Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Wed, 14 Oct 2020 11:23:55 -0700 Subject: [PATCH 3/7] runtime updates --- .../resources/WebappRuntimeStacks.json | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json b/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json index 5a5d4a4dbd0..aaa2a60b521 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json +++ b/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json @@ -23,25 +23,25 @@ { "displayName": "node|10.6", "configs": { - "WEBSITE_NODE_DEFAULT_VERSION": "10.6" + "WEBSITE_NODE_DEFAULT_VERSION": "10.6.0" } }, { "displayName": "node|10.10", "configs": { - "WEBSITE_NODE_DEFAULT_VERSION": "10.10" + "WEBSITE_NODE_DEFAULT_VERSION": "10.0.0" } }, { "displayName": "node|10.14", "configs": { - "WEBSITE_NODE_DEFAULT_VERSION": "10.14" + "WEBSITE_NODE_DEFAULT_VERSION": "10.14.1" } }, { "displayName": "node|12-lts", "configs": { - "WEBSITE_NODE_DEFAULT_VERSION": "12.9" + "WEBSITE_NODE_DEFAULT_VERSION": "12.13.0" } }, { @@ -66,7 +66,7 @@ "displayName": "java|1.8|Tomcat|7.0", "configs": { "java_version": "1.8", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "7.0" } }, @@ -74,7 +74,7 @@ "displayName": "java|1.8|Tomcat|8.0", "configs": { "java_version": "1.8", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "8.0" } }, @@ -82,7 +82,7 @@ "displayName": "java|1.8|Tomcat|8.5", "configs": { "java_version": "1.8", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "8.5" } }, @@ -90,7 +90,7 @@ "displayName": "java|1.8|Tomcat|9.0", "configs": { "java_version": "1.8", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "9.0" } }, @@ -98,15 +98,15 @@ "displayName": "java|1.8|Java SE|8", "configs": { "java_version": "1.8", - "java_container": "jetty", - "java_container_version": "8" + "java_container": "JAVA", + "java_container_version": "SE" } }, { "displayName": "java|11|Tomcat|7.0", "configs": { "java_version": "11", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "7.0" } }, @@ -114,7 +114,7 @@ "displayName": "java|11|Tomcat|8.0", "configs": { "java_version": "11", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "8.0" } }, @@ -122,7 +122,7 @@ "displayName": "java|11|Tomcat|8.5", "configs": { "java_version": "11", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "8.5" } }, @@ -130,7 +130,7 @@ "displayName": "java|11|Tomcat|9.0", "configs": { "java_version": "11", - "java_container": "tomcat", + "java_container": "TOMCAT", "java_container_version": "9.0" } }, @@ -138,8 +138,8 @@ "displayName": "java|11|Java SE|8", "configs": { "java_version": "11", - "java_container": "java", - "java_container_version": "8" + "java_container": "JAVA", + "java_container_version": "SE" } } ], From 0c0bfd58626d93d9569cfbdef9e43a76410c3703 Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Wed, 14 Oct 2020 19:41:05 -0700 Subject: [PATCH 4/7] Add webapp up tests --- .../appservice/_create_util.py | 6 +- .../recordings/test_webapp_up_choose_os.yaml | 2419 +++++ .../test_webapp_up_choose_os_and_runtime.yaml | 2880 ++++++ .../test_webapp_up_choose_runtime.yaml | 3247 +++++++ .../test_webapp_up_different_skus.yaml | 2797 ++++++ .../test_webapp_up_dotnetcore_e2e.yaml | 2732 ++++++ .../test_webapp_up_invalid_name.yaml | 12 +- ...webapp_up_name_exists_in_subscription.yaml | 2524 ++++++ ...pp_up_name_exists_not_in_subscription.yaml | 250 +- .../recordings/test_webapp_up_node_e2e.yaml | 2356 +++++ .../recordings/test_webapp_up_python_e2e.yaml | 3505 +++++++ .../test_webapp_up_runtime_delimiters.yaml | 764 ++ .../test_webapp_up_statichtml_e2e.yaml | 8057 +++++++++++++++++ .../tests/latest/test_webapp_up_commands.py | 290 +- 14 files changed, 31748 insertions(+), 91 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_runtime.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_different_skus.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_dotnetcore_e2e.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_in_subscription.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_node_e2e.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_python_e2e.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_runtime_delimiters.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_statichtml_e2e.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py b/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py index 1f2dbab76a2..6134a4c862e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_create_util.py @@ -405,7 +405,11 @@ def _determine_if_default_plan_to_use(cmd, plan_name, resource_group_name, loc, # based on SKU or not data_sorted = sorted(_asp_list, key=lambda x: x.name) _plan_info = data_sorted[_num_asp - 1] - _asp_num = int(_plan_info.name.split('_')[4]) + 1 # default asp created by CLI can be of type plan_num + _asp_num = 1 + try: + _asp_num = int(_plan_info.name.split('_')[-1]) + 1 # default asp created by CLI can be of type plan_num + except ValueError: + pass return '{}_{}'.format(_asp_generic, _asp_num) return plan_name diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os.yaml new file mode 100644 index 00000000000..262111652d0 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os.yaml @@ -0,0 +1,2419 @@ +interactions: +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=P1V2&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=P1V2&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09:12 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": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "P1V2", "tier": "PREMIUMV2", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '163' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":28319,"name":"up-nodeplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-129_28319","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 + content-length: + - '1384' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:38 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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":28319,"name":"up-nodeplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-129_28319","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 + content-length: + - '1384' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:38 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: '{"name": "up-nodeapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:38 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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '542' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:42.7633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","possibleOutboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163,40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5681' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:59 GMT + etag: + - '"1D6A2B9C6764EE0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10:00 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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:43.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","possibleOutboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163,40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5476' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:01 GMT + etag: + - '"1D6A2B9C6764EE0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:03 GMT + etag: + - '"1D6A2B9D204FCC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"5sdhGgcgxXgbywryj9tGpuh1CedlNniP3GYbJ4WEy6jSQms30ZkYbsrkPH5D","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:5sdhGgcgxXgbywryj9tGpuh1CedlNniP3GYbJ4WEy6jSQms30ZkYbsrkPH5D@up-nodeapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:03.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","possibleOutboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163,40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5476' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:04 GMT + etag: + - '"1D6A2B9D204FCC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10:04 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: !!binary | + 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 + CwALAJYCAADQLgAAAAA= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '12668' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:17 GMT + location: + - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-10-17Z + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:20 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:23 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:26 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:29 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:32 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:34 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":1,"status_text":"Building + and Deploying ''5a098761710a458383a8b83562879267''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:37 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5a098761710a458383a8b83562879267","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:10:19.5473186Z","start_time":"2020-10-15T06:10:19.7120353Z","end_time":"2020-10-15T06:10:39.5374128Z","last_success_end_time":"2020-10-15T06:10:39.5374128Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003"}' + headers: + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:40 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:03.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","possibleOutboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163,40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5476' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:41 GMT + etag: + - '"1D6A2B9D204FCC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:03.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","possibleOutboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163,40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5476' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:42 GMT + etag: + - '"1D6A2B9D204FCC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:03.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","possibleOutboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163,40.113.236.255,23.99.209.120,23.99.213.137,40.113.238.109,40.113.224.116","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5476' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:42 GMT + etag: + - '"1D6A2B9D204FCC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10: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-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web","name":"up-nodeapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-nodeapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3601' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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-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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-nodeapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":28319,"name":"up-nodeplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-129_28319","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 + content-length: + - '1384' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml new file mode 100644 index 00000000000..e34d555ad58 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml @@ -0,0 +1,2880 @@ +interactions: +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":27394,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_27394","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: + - '1387' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":27394,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_27394","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: + - '1387' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: '{"name": "up-nodeapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "node|10-lts", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '543' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:10.1833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5671' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:26 GMT + etag: + - '"1D6A2B9D69FFBAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10:27 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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:10.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5471' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:27 GMT + etag: + - '"1D6A2B9D69FFBAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:29 GMT + etag: + - '"1D6A2B9E1799760"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"ddDraqNAXR0nrrAssW1e7uF5tXRoq4tKG6bnpvGv7j8QFsrpqLkYnb3Zg5Cm","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:ddDraqNAXR0nrrAssW1e7uF5tXRoq4tKG6bnpvGv7j8QFsrpqLkYnb3Zg5Cm@up-nodeapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5466' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:29 GMT + etag: + - '"1D6A2B9E1799760"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10:30 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: !!binary | + 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 + CwALAJYCAADQLgAAAAA= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '12668' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:11:09 GMT + location: + - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-11-09Z + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"temp-771393bb","status":0,"status_text":"Receiving changes.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Deploying + from pushed zip file","progress":"Fetching changes.","received_time":"2020-10-15T06:11:09.1574065Z","start_time":"2020-10-15T06:11:09.1574065Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":true,"is_readonly":false,"url":null,"log_url":null,"site_name":"up-nodeapp000003"}' + headers: + content-length: + - '473' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:13 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:16 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:19 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:22 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:25 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:28 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:32 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:35 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:38 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:40 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:44 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:47 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:50 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:52 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:55 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:59 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12:02 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building + and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12:05 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","end_time":"2020-10-15T06:12:05.6154671Z","last_success_end_time":"2020-10-15T06:12:05.6154671Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003"}' + headers: + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12:07 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5466' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:07 GMT + etag: + - '"1D6A2B9E1799760"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5466' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:07 GMT + etag: + - '"1D6A2B9E1799760"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5466' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:09 GMT + etag: + - '"1D6A2B9E1799760"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:12:09 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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web","name":"up-nodeapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"node|10-lts","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-nodeapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3602' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: + - '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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-nodeapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: + - appservice plan show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":27394,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_27394","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: + - '1387' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_runtime.yaml new file mode 100644 index 00000000000..ed1a2d50e6a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_runtime.yaml @@ -0,0 +1,3247 @@ +interactions: +- request: + body: '{"name": "up-pythonapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"name": "up-pythonapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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 + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","name":"up-pythonplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":24650,"name":"up-pythonplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_24650","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: + - '1387' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","name":"up-pythonplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":24650,"name":"up-pythonplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_24650","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: + - '1387' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: '{"name": "up-pythonapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "PYTHON|3.6", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '542' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:59.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5660' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:15 GMT + etag: + - '"1D6A2B9D05ED3D5"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:00.2533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5465' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:17 GMT + etag: + - '"1D6A2B9D05ED3D5"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:17 GMT + etag: + - '"1D6A2B9DB2EC595"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishingcredentials/$up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-pythonapp000003","publishingPassword":"NfCFiF0ytjpaS3uxyjjRT2z20A3u31QDjBkabP4XNqNY8h2MQqGctnnWaqBF","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-pythonapp000003:NfCFiF0ytjpaS3uxyjjRT2z20A3u31QDjBkabP4XNqNY8h2MQqGctnnWaqBF@up-pythonapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:18.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5465' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:19 GMT + etag: + - '"1D6A2B9DB2EC595"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10:20 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: !!binary | + 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 + ZWE1NWY1N2Q0OWQ3NTU2ODBiZjE0MGQ3OTUBxwA4/3gBKylKTVUwtDRjMDQwMDMxUdBLzyzJTM/L + L0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtU + SZCro4uvq15uCsOlvopL9ju6i7arFV3bXaqwcVfGoUNQRYkFBTmZyYklmfl5egWVDCuyXy27zfK6 + 7Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5Jd5b9T8va22zUEgFAHBa + UhJQSwMEFAAAAAgAIblOUV1WH0u1AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvMTkvMWJiM2ZiYTA3 + NWY0NTVmNDhlNmQ3NmRkYjQxNjE2YmMzNDIxNzYBsABP/3gBjY5BasMwEEW71inmAi0zo5ElQQkh + u6xDu5c9o9RQ20FR2+vHhR6gqwcf3udN27LMHdjjU29mEHOVQKOGQdCrcPQlECNjMMxUK9fsJQm5 + W2m2dhCxKNWiatZqXAfmFHkgTfuFBqSYgiglV776x9bgZG1VeLd27/A6fv/yeF3K/PkybcsBKBDl + zAkFnjEhun3d+7r90/SE/s90bzct3eB8vsCPjTBta52v7gHsuEbxUEsDBBQAAAAIACG5TlHmy6VV + vwAAALoAAAA2AAAALmdpdC9vYmplY3RzLzI3Lzk2YjBhZmVkNjU1ZTBlNTYxYmVmYmRjNWJlZmEx + M2U3ZGZkYTlhAboARf94AbXPTU7EMAwFYNY9hS8wVX47toQQWxaIBSdwHZeJNG2qNF3M7YlAHAEv + Pz29J0tZ19zAET61qgouMYmP/XyImBLJLOIoLgF9IhcsW8dop2HnqluDyJFQHaLnq0nao4YDWmF2 + HqclCM1zJHEDn+1WKrxnqeUoS4OPXTf4LGcVhef1j0vX4wdfz0PrMW6l6n5/jF+53c55lLK+gA1k + jbHOTnAxV2OGrv2Lpv/VP7xtuWW+w+/QN0hEZOJQSwMEFAAAAAgAIblOUd9fzDX5AAAA9AAAADYA + AAAuZ2l0L29iamVjdHMvMjgvODhlYzNjOWE0MTMxMTE4Y2ZmZjBjOTQ0N2ZhYzM4NTI4MjM0OWEB + 9AAL/3gBjZFBS8QwEIU9C/6HEFjQS+tBEKQrFFvcQtnDttZLIGTbsQ22SUimqf337i6r6LoH5/hg + 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 + dC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1AWAAn/94 + AUvKyU9SsLBgSM7JTM62tTXTM+dyy0ksBjIN9Qz0jLgyS4pTEvPSU4vyS4ttbYEiJlxemXlZiUa2 + tkZ6hgZcvolF2aUFwYlpqWAdXOGpRdlVqaXpILWGJnqGAG83HG5QSwMEFAAAAAgAIblOUX3zWBq1 + AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvNDAvZmFlYzEwOGFjZDlhZjY2ZjVkYThhNTY4OTYwYWQ0 + YTYyOGZhMWYBsABP/3gBnY5BasQwDEW7zim0LxRLkZwJDKXQbS+hKDZj2thTR9Pz171CN5/Hh/f5 + 1o6jOJCEJ+8pgZouikxIKa5r1piRLkKXuEfBEUvmoBR5umtP1UFi5C1Spo2zsfC8zGxhRyXhYChb + 0Cxpnyd9+K11eE/3m57wUSpc7Y+/Sn07ivV2tuwv1o5XQJmRVw4o8BwohGm046Snf+rDrz+pO3iD + ga6ljqnvR7HP07X79AubyVBMUEsDBBQAAAAIACG5TlGWCbN+/gAAAPkAAAA2AAAALmdpdC9vYmpl + Y3RzLzQ0L2U3NGZlN2RkOWRmZTJmNjIyODcyNjFkOGQ1NmQ1MDE3ODU0ZDE4AfkABv94AW2Py2rD + MBBFu/ZXDHTdVA9LI0EogULaTT5iJI0SE78qy2399zWF7rq6XDjnwo3TMHQVtMSHWpjBsJbSY0TU + 1qPUUsmYbeuc4WBdcJSkMy2bZqbCYwWF3gZBmZM1hgUbKwPnkKLZg6RmTDmRpz/eOt1GaXxSQVhU + WRFmgcEJGz0JCsJIH1CJhtZ6mwq8TmWD8/TVc4Fj3Mtp2cZK37E9jFxfQLZeGasQFTwJFKKJv4fq + jr919X0NcBynwnO/na5dva3hsAP/aM2Fy5VhXvseCn+svFR4VJDLNEDgMqZPLkt9HmjZp5vm0o3d + QD2ce1ruQPP8A4ZAZOBQSwMEFAAAAAgAIblOUT1AKpTMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMv + NGEvYTFlOGEzNDg2NGMwOGJkZWM2MDA4ZTJjODc2MTQ1ODFkNTNmN2IBxwA4/3gBKylKTVUwtDRj + MDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/ + 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 + 6fqoZ0/vVoSqu5o7kXUa3AubGCQs4VJytXzi93di6XfD2/ZLZXjKFsIWByCyV/NhUp5UG+aGfWzk + 3JbJcPT0LVTLmZ4c2tIPDu+r98NjaUp4l2CxY7XzYWn2Sb/UY4rlRt5Rluy9mW9kTm3e3II9Wv7d + OsVzofU3nhvkOatRMm9hP/4hVEXDFqa2zooFqw0O2GR/XIsnYzZv8Vn3NN/XoUOE7dF/VmazJ0Ew + GH3fOBBq5wLj9u59KkK2aKVJqbjd8TL2MDyR0R8K+Thb+Fd5L6nbsk4IGoQwNJzUNXxWsV7Gm8Ad + wlS9lKieN6X0zMUz/+EEbxx48+qdy/3ZzHSNfy/GBbc06ijYmcRYm1OW/gRujeDIUEsDBBQAAAAI + ACG5TlGE3OkXsAAAAKsAAAA2AAAALmdpdC9vYmplY3RzLzY4LzM0YzE1OWQyYjA2NzJmMmE3ZjA3 + YjgwNmM5YTBhYjA1MTliNzIwAasAVP94AY3OQY7CMAyFYdY5hS8AitPaSaTRCLHgCOydxIUKSqs0 + M+enLNiz+qUnfdLL8zSNDZyjXauqQNohRp+97zh67NBhHrgPgTRxSEEKBuqVzCJVnxv0kZOVQQsT + qVViTDqkkmmLYKe+DEWiGPlrt7nCSeuzwEXr2uAn/b97vE4yPg55nn4B++iInA8Me+utNdu6/Wv6 + nWSH/JHmJOuY4fyQ9Q6yLAfzAr07RzxQSwMEFAAAAAgAIblOUVqp1mIhAAAAHgAAADYAAAAuZ2l0 + L29iamVjdHMvNmEvZWY5NGNhZjZiYWYwMTc2NjUyM2ZkODcwZWExNTA1MmUxZDQ2OGarYPQ+ddI/ + yMAkseC0p865bVtNLxibXDJ+wsTgZcC6CwBQSwMEFAAAAAgAIblOUXtFhwRsAgAAZwIAADYAAAAu + Z2l0L29iamVjdHMvNzIvMzY0Zjk5ZmU0YmY4ZDUyNjJkZjNiMTliMzMxMDJhZWFhNzkxZTUBZwKY + /XgBbVPBbtQwEOXsr7BUThWbgFQ4cCwFqVJVVZRyQWjlOJPEXcdj2bPbNV/Pc7ILHLg4npk34zcz + L53nTr97e/X+1YW+LkIby3N0nnrdao7iZvdrud/c3ekB/qy221issRNtt626bGL5Ybn/qS5fx9JY + b3JW6kJ/0nQUCtlxyABlrs4blyW5bi/wonw0dmdGF0bVPBSZOCgKh1Z1e+f7VvV0IM9xQ+OYYSEV + J78Ez6aHY3U368e7rlU4Ply1KpokiOc142BSJQnYxoWBW9W4kMV4NNjYYVxDldtDuT0FEiz9lPcA + FS0TZVob1yaRfklO0JfuijY6Lqx1tslF0UPiGU6hOXojVKt0NDCS/qmtl+5yrYsJ0RudWRuYrF14 + Jiu6R2rLCCd4Bs44a1AaUJ1NcANlqQONZCvtP6S15zGr6OIGl0aOstx78oSdyuTypncJD3AqSxS5 + T8EJ6GbBLiwfKJmRdKLIGKCaZPZwYmDCR5xnwN9bc4l71YEKnPFKltwcZ6/OyMW4fLOYqplKrF1l + h93g7W/JhIwxnfQxM3oCYFHJswkj6yz7YfgIN/pRnq3xW7wikEuG5irwC8S2O+OWtQZLoPpCHVRI + kjcrPUAfbTKxnLENNgaz1niMkwtH3bPdzxRkIQSZ2dxuTzoE6KFcV01SUmLSSBAinLerZvU9C3XM + OygrltBtMRC7i4y1LT9CLBC1AuMq8A2GXH+Jmm+xmlQgESNQ0ET93q9CU2ukBjbnQE3o8VAtVQ+Y + B5cEGq3WAUerPt9/X4g9xgKqOiZeBHUemoJmauDkryW+cqT/4BLcZ9RvnhVlElBLAwQUAAAACAAh + uU5RKNlCKcsCAADGAgAANgAAAC5naXQvb2JqZWN0cy83OC80MjY0NGQzNTZlOTIyMzU3NmEyZTgy + ZGU1OGViZjA3OTkyZjQyMwHGAjn9eAGNU9tu4zYQ7bO+go8NjOh+XewWK8myIt8l29nEwT6QFHVJ + KFEWdVnn6+vEXbRoF0UGIEAMzzkYzszBrKrKDiiyo/3WtYQAW8VQN5GhKxYxVYItQ8Z6qmm2ZiCo + EZJhDTvYkoUGtqTuQKYYtkZsCDPZNrClyoYOHUuBmZOqKNVVZKWyJmMkwL4rWAtS0pA6hYh1T5fz + HXzWHdNxNE2b/Ovla89Jy8WataShZzEvu6JHImbVH0AxLNVUTNUxwES+hHDJXn7RkRaEZXfXI/D5 + L9rX/6XlTc7LHNy+hReE0Rpswy3YReHa3R+S4D0vAAGM3MOe63q+68ZePE+HaVH7ibewimd9M2ht + NLpuehdFbnCar9TCRK9HN3Huiax/ezzmfiWAFSffysS/z/zRHYZCdys8I2nuIHey7F2LpvWL0ywC + +0fyWBFoczk01CGa2tZhdp/w6iCASRg0wynR1Dpi635N3c3pMOQLf+vLTkgPzD+o/kMA+dJAFC2w + WQzLA6R7uzqnd4200wUg5YdYx+p4ng3r7ekYNeOxal8KZ6+jY0mfN/35xJ4T1Iavx8AsbDaZeMtp + CufjK/bp0QkFkLomm6e7KItW5+luIz3SOKcnxx02BW3wuXUKOEinRou6Y5bWcr7bm5M+7hcTeo4Z + WcUCMKLCH23lYZ1Vz6uZvy9b3/fmcTMr6UPFxqUFEc64vFnhKdlwNTV6NJNjR8vCH/qW5F8E8IVo + gyVcZxasp7+emOD1VQNG0r68kj4HWcsqIIuKLiqgY283Q9SEdxAHTz9h338vuq7hnyTp76WRGkgp + 6bj0E3TzazFRuAVPCaEEcgJq1hH+ITWpvVL4zRvfL2CdE8ryj3ERZUiqIL+sveTfuesw2Ikt765S + 74b4YBEX97yZWbp2SBTFa4NuBGFX5jVJb1mW3aLzp/96l/dNw9runy77E0IuY5BQSwMEFAAAAAgA + IblOUSqxJj80AQAALwEAADYAAAAuZ2l0L29iamVjdHMvNzkvZjQ1MWJkNTY0MDNkNDI3M2E1MTIw + MjA1ZTA5MWZmMmY5MzQ4NDEBLwHQ/ngBKylKTVUwNjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP + +8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15u + CsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+voJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElB + SVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76bJff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXF + eiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWpSXpGeuZ6yfl5aZnpDAYpE+4zfHpwL4y15m/D + 3lz+woOTgpBUGuuZwFSuPpPEls5l1j9rQoJBS9zJc//FK9QAnMaAiVBLAwQUAAAACAAhuU5R97+A + TcwAAADHAAAANgAAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEz + ZWVmYzNjOWM3MAHHADj/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8b + ZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kg72iW9y3 + d39s5CvU46ccTOUOe395L1RRYkFBTmZyYklmfp5eQSXDiuxXy26zvC77JXlnc0/6waNMuvqvoSqL + UgtLM4tSc1PzSor1SipKGGaeVhaZePWSw7V1scv8E/Jl7b6J3AAA1V5Q8FBLAwQUAAAACAAhuU5R + kk1vAMsAAADGAAAANgAAAC5naXQvb2JqZWN0cy84My9iZTYzMThhOTIxMTFiZWMyZTFjYWVmZDFi + MmQ3ZmU0MzVjYTc1MgHGADn/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U1 + 3c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw8XV + k7RfHTfuFpULaAux7rvKyLejEaoosaAgJzM5sSQzP0+voJJhRfarZbdZXpf9kryzuSf94FEmXf3X + UJVFqYWlmUWpual5JcV6JRUlDA6+Nh+/z0g8Ja/Ee6v+52WtbRYKqQCIlk+TUEsDBBQAAAAIACG5 + TlFgl1ZorgEAAKkBAAA2AAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJmYjAzMzVkZTM2MjQ0ZmJi + MjY4YzgyYmUxNzY3MWRhAakBVv54AcWTwW7bMAyGdzaQdyC6SwzM9oCd5tOCAjl12IbuVhSDItOx + WktURHpd9vSj7K5pi1x2GiDAAkX9/PlR3o20g4/vP7ypqmpVRLPHH3KM2AIbH0dcFR2yTS6Ko9DC + xffBMegy4F1w3oyPeWBiBBmMQIeeAksyggwDPYAQpCnoja9HGSjAdjR8n/NHZ02WBV2b31NC2KjI + NaafzmIOXrkw/aovVsVown5Sa9yuigrirKNmE3WTlSVoskA+nTeVyle8KGkwt7Yq3r50sDQIPaUz + 1ddz7TJf+w8t57Jb9eVJobigFv1M6h3oSAwjMKLSRrh5ZJoJPmN3mJy9ZzFJbteDSOS2aTqyXHtn + EzH1UlvyzYyqeYaqsRTEuICJm5NGtQAv6wXipeYkt5vEhf0TH53FHVqBwejb6CgKdovBz38rwpeI + Aa5pSjrcS+p0wr1+Qx7hySVpEs85r7xavUG9+sv5TVnDOT4nLq8KwHbz7Z+L9ObQlKBjmKloczfZ + XTby6QXH27U3bhRqzx+X8OBkABOOSqZz+cXrb3OYkPOWlwLeYxBWwn8A6ONBjlBLAwQUAAAACAAh + uU5RZmnNg94AAADZAAAANgAAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMAHZACb/eAGVkDFLBDEQha0X9j88sLltNqDYXKUI14mIdscV2WRiIpvM + XjKL+O9NXCwUG7uBee99b2aaecL1zdXFJe45SQ7TKiG99l3fvfhQsGR+IyPwukBbXoQsxBOOD8Fk + LuwEjwslPPOaDdUMS2DXsuxq5LTzIkvZK8VVVL40Y/x2joajMtXBzmx6NYw4cEbkTAjJcY5aAicU + og37C4DD3dO/IU6f1YCKqVTR9bhja9eK3P7odtpFHWbh/d/rAe9BPHT6qJ+xofXUM84rlTaWDRAj + JSlj330C4SWC6lBLAwQUAAAACAAhuU5RINaxYXQAAABvAAAANgAAAC5naXQvb2JqZWN0cy84Ny9j + NTFjOTQ4NjcyMzg1MmU4OWRiYmJjOWM3YzYzOTg2YWE5MTkzNAFvAJD/eAFLyslPUjA0MGRwC/L3 + VSjJTMxLz8/J1y8tL07P1M1Lz8yr0E3LSSzOtiqoLMnIzzPWM9NNzCnIzEs11jPn4nL1C1Pw8QwO + cfWLD/APCrG1MDAw4HKNCPAPdlUAs7mc/QMiFfQTCwrABACrYiFrUEsDBBQAAAAIACG5TlE8H++S + OQAAADQAAAA2AAAALmdpdC9vYmplY3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3 + MzE1NmFmZWZhATQAy/94ASspSk1VMDZlMDQwMDMxUchNzMzTK6hkWNhZ08C/99oXJdG2czefV85n + kg49CQA4txCeUEsDBBQAAAAIACG5TlE+63VCjwAAAIoAAAA2AAAALmdpdC9vYmplY3RzLzhlLzM0 + NDRiZDQ2MTg3ODdkNDAzYzBiNGRjNDRjNzA2YTAyMDJlZGVmAYoAdf94AaWNQQpCMQxEXfcUuYCS + 1NL/CyLu1IVLD9D2t1qwFtr8+xsQT+BmJsyQN7HVWhg02g33lCA6v2hacB+tuHUTGqNF5inMNgc5 + EYksKr/ys3W4ldjbaJnhXPiyBriP1OFQR+ZH4XGqv34XWz0CGUcC0ISwRWEpSWWf5edfkrq+Cxf/ + gi/yA4BORCxQSwMEFAAAAAgAIblOUd1nxUHLAAAAxgAAADYAAAAuZ2l0L29iamVjdHMvOGYvNmEw + YTRmOWQ5OWRhOGViM2RiYjVkMzdmNmNmMjVkZmVhY2Q4ZDABxgA5/3gBKylKTVUwtDRjMDQwMDMx + UdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvM + mm/w+6ZiqTtUSZCro4uvq15uCoO9olvct3d/bOQr1OOnHEzlDnt/eS9UUWJBQU5mcmJJZn6eXkEl + w4rsV8tus7wu+yV5Z3NP+sGjTLr6r6Eqi1ILSzOLUnNT80qK9UoqShgcfG0+fp+ReEpeifdW/c/L + WtssFFIB0M9Qf1BLAwQUAAAACAAhuU5RISfNXdUCAADQAgAANgAAAC5naXQvb2JqZWN0cy85MC85 + YTZmNmU0YzliMzhlMTI3N2IzODAxNTUwYmM0YjdkNjZlZDQ5OAHQAi/9eAGNVV1P20AQ7HOl/ofT + PVEe7NKiIiG7yAoJiQQ0xA5VpajWxd44J+w7c3dOiCj/veuv4KRBIm9e7e3Ozsxu5qmck5PvZ6cf + nIunLCUrUJpL4dIT6wu9+PHpoxNJseBJoZjBOAYIcVie+2AMF4muAmUojskDbFz6y78ahd51EN6P + JsHUu+7f3odD7/byuj+hZMXSAlyaMS4sLEKJ/a73Xi8Y3XtBPwyGI5+WEJpfU+/yfLaUGcw0NzBb + r9dKSjMDsZr5keK50TMWGb5iBkKz5NrKN282bpH+3yM3Kx2uuDIFS7F0mCv5tLESMN3gkok4BXX0 + +VCD8e9g+PN27AXDLRGHgLdPHXufZkdvtIHMWsO8pS2SWc7TShoSw7xIXGpUAZQYphDbQLEM1lI9 + uPQU9Wzoduy9Qp3CPii0QFs+k3GRgiaqEF6a3jDBEohv6uBAKoxN4LEAbXTbdytoQ0VrELSIgkyu + gAiE5NLxxiyl+HqG7LFwwLTpXY1afKW4h7K/nb6ZXdqvW5i0JTtCEpIzs3Rpg8xaRAnvmomU5p+7 + 9Hg32HDg0qpkwuvxd3N05bOxkhFoLZVLUdh2wllejWrBE/zthltvrhc4PUIpbbmDVoGWhYog2ORI + 2FToHCK+4BDvpz0WXIEXlb1dWpd9pdKx95RAZtcKF6XRuKS61Hj72QQaOn2D5orIgGMKJdrIvJkS + l7/RvPMS3+K5iHl5KroVK0VLjbjIC9N6BeUwoPDWLFiq0bOtd+rlduyDpRy7hNvpWcFv0PaaWwWk + Zv9diDNmoiUpVOrSI+sYV5cnQiroMY20H4Z2ENn+kM+T/t207wfhdDJ6oaX56mn/2Loi1baOd3vV + mysgwUvVcvQuTpD28sJJQUzllUmt8K5PalbrObsrYD9Pzk9eDubiAQIR3xWgNr5Rr4rvKLUnSP3Z + io9fHbd1D8/20FQ67/zD/AM7/u25UEsDBBQAAAAIACG5TlEJVBWefAIAAHcCAAA2AAAALmdpdC9v + YmplY3RzLzkxLzQyYjI4ZTIyYjYyYzAzMWIzMmZhMWNiMTVjMzNkYTdjOTA1YzIwAXcCiP14AX1S + y46bQBDMma8YKcdV1jwHkHajBexgMGBj/IDcBpgBbINhGIy9Xx82yd6i9KFVKnVJ3V2VXeu6YkAT + tC+MYgxQhlQkyKIgYqjrBEEiiJoiajCHijA1lcg8EqHMtYjihgEFQjmFIhFTmWSyIkuqJGd8LiBR + kflMUFIeEQXn0ue8zBOEM4HXUJbriEBIlBxpSIGaDnmUywiKGkEC4dDAyisFFm5L1AOvasBL9oEv + VfM29Jj2z82V4vbyeC4qVg7pc3atvwNBkUSBV1UJgide5HluYqf7GKbArthySMHLX9nbf2VFW/RV + Ab59lLmwnQBs7A2IHDswdvvt4jfPAQ6MvZmZhmFahhGaoZvuy1tibc2VWp7k9U2izmgY+dJxDOt+ + 2SK7XEh1IjE3eadRsUj2Kgea449cl7Z3IQy1+BEexotLArNzGuTQlJV5R7xZcY+s1D4qT3EXJroZ + bKaXxu/n4+GwXXGg8xuhb7qoKrr30LANyu5GlvijvzvozIncUzhj+eGhOyc41/0iGUJ5pm614OE6 + Sr/zIAdOSMhovt5l3pUfPQJnY1ZIqefXITptjlZkPnZuUPgBHmc3Za2s59UylkfelavH5udqr3Pg + bqbdim/n/qG8dIW0q89sv7JictDri6/FQhIU9IdsueX25KkD2tz2SeyuyySwtE0cjNMOS707P2o1 + QlG7WIYS7YK+Mw6xe7YVlNxXuHXGJw9Gftb58+MqDMSG7O13WiaSoVkt/8qB15nY77k/ni2C+b8d + 43xMCwza4XIBFHcD7hn4KoiA0GsNPgM2q1E/RYab0tPcMGWAXcEEGaqaKUjdUGXnniHKfgEy1wMb + UEsDBBQAAAAIACG5TlHwqBwKzAAAAMcAAAA2AAAALmdpdC9vYmplY3RzLzk1LzQ1M2RiZWQwOTMx + MTRlM2UzNWIzMzU4YjIxNjcwZDI1MDFiOTAyAccAOP94ASspSk1VMLQ0YzA0MDAzMVHQS88syUzP + yy9KZSgy85/5z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7 + VEmQq6OLr6tebgrD5h7XxbnKrnov/rue8zxo8K1k04cJUEWJBQU5mcmJJZn5eXoFlQwrsl8tu83y + uuyX5J3NPekHjzLp6r+GqixKLSzNLErNTc0rKdYrqShhcPC1+fh9RuIpeSXeW/U/L2tts1BIBQA+ + ElGiUEsDBBQAAAAIACG5TlGixBHV9AAAAO8AAAA2AAAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdl + N2Y5ZTgyNDQyMzhiM2Q4ZjI2MmQ1NDc4OWIyOGZjAe8AEP94AY2QQWuDQBCFey70PywLgeaih9JD + iylIlEaQHOLWXBaWTZzqUt1d1lHjv29M00LTHDq3ecN8897sarMjD0+PN8He6HdVdk6iMvrl7paQ + QFqbAaLSZXsSJqkoyAeMC7rNXhMRpkzkyYa9hWm8zsUqXEdpvKGkl3UHC9pIpb0jhBL/X/vhkiV5 + yGLBVklGJwvnOvOiZ16ZBnirEPgwDM4Y5KB7nu2dsthyO2JltAcHuHbya2olVj8OZ9nYIjSRUz3M + /sKvUU7BL5P2ymEn66MXYZ05jF4JKPqpraQuanD3829W4P9+a+Bffv4TcRaAwVBLAwQUAAAACAAh + uU5RfmRWQGUAAABgAAAANgAAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2 + NGY2MDZmMWQzZWY2MTRkOAFgAJ//eAFLyslPUrCwYEjOyUzOtrU10zPncstJLAYyDfUM9Iy4MkuK + UxLz0lOL8kuLbW2BIiZcXpl5WYlGtrZGeoYGXL6JRdmlBcGJaalgHVzhqUXZVaml6SC1hqZ6xgBv + PBxxUEsDBBQAAAAIACG5TlH44ZrgiAAAAIMAAAA2AAAALmdpdC9vYmplY3RzL2ExLzg5N2M4MDBm + YmRkNmY0MjIxNTg2Y2VkOWU3Nzk5ZjAyMWI1NWM5AYMAfP94ATWMwQpCIRREW9+vmFYqRBEEQfCg + VfQHLS8+npKkXjGl3y+LdjNzmDNHmbE/HFe+SoKP9vlASEVqw2UUsqVg+mXNnG1yzIbo/Nm3VXpz + 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 + 7l31y00hYhpvrlfte/qvJig7C0rNia6yMq0dpnVT3bybL9PLEySDowXS8D4HuXG1fPVyO4SrZnal + rpVvbcVVJ0fdkbIdIZWDnW/GXwjt5eRQSwMEFAAAAAgAIblOUTtIlmG9AAAAuAAAADYAAAAuZ2l0 + L29iamVjdHMvYWMvYTdhMTQyMTJlNjk5ZmE2ZjEyODUyODZkNjUxNmQ2N2Y0MGEyNjQBuABH/3gB + KylKTVUwNLdgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVS35ydmpR + WmZOKkP7UZkpbUUWQS/m7t4zpyZ5RtZKSROoKh9PZ1e/YFcGb6mr0vp8f8w+dy02mTXf4PdNxVJ3 + qJIgV0cXX1e93BSG385zXhkxuWao7Hi2arVBRZFA6ORNJgZAoJBYUMDQKyfnIcPXo3Dz0qETErNP + F4tm/fsFAIVwR29QSwMEFAAAAAgAIblOUb+wsVh0AQAAbwEAADYAAAAuZ2l0L29iamVjdHMvYjMv + OGM0NWEzNmQyMzQ1MmVlOGZmNDVjZTQ5YzEzMGY2NzRiMmYwOTABbwGQ/ngBjZLBSgMxEIY9C77D + gJcWbAMeRDxZhJ4UFQUPxUOanXWjm8w2M7HWp3ey1bYWD8IedpPMfP98m3lLczg7Pz04hruVNBRh + 2lp+A9t1oB+Tz5wQnnAOE12oKcEVRbE+YuKjw6PDx8Yz6GMh+OiDbYFt6Frs66WxAhUGiizJCjI0 + tAQhSDlqxT6v9c6KV+iGW5gPmN69w7J47WP+GBfsVIME0mQ+aqbQl52Aci0jMCJIgzD7BpR2O40W + 2bs3FpvkedCIdHxhTEWOx8G7REy1jB0Fg3GU2dgyv1EZI17nMG4zv9l2GnW9u2Ef7rh3lPw8i48v + G0tdold0Ao1VXRV1gtU65s0PF247jPBAOem8V1Tp0HXpVWW3k5X0EPdn9hI7raBa85XzZjiGvyxt + 7ewBYDq53wr5J6S2CzME/Rm9FR1uVgpLkMtfNp8HwfpW6OLv7SEsvTRg40rNVL5cAr1Ji4xcXnkN + CAGjsBr+Anme995QSwMEFAAAAAgAIblOUSvc9DEDAQAA/gAAADYAAAAuZ2l0L29iamVjdHMvYzQv + MGVmYmI0MGU4NzEwNjAyZTc5ZDc4MWM4YjQ0M2MxNzhmMjI3NWMB/gAB/3gBnU9LTsUgFHXcVTB7 + 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 + ACG5TlGf8C1nNAEAAC8BAAA2AAAALmdpdC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1 + YzU1NGExYTllNmY5YTM5ZWMzAS8B0P54ASspSk1VMDYyZTA0MDAzMVHQS88syUzPyy9KZSgy85/5 + z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7VEmQq6OLr6te + bgrD/ckeCa8lk0UXhIRff9XEGuF0S94fqig3MTNPr6CSYWFnTQP/3mtflETbzt18XjmfSTr0JFRJ + QUlZcXxZZlFJaWJOal5ZfEFRfkUlSM+SJUIzmHe+myX3+JeBdFh6z6p2lUlQPUWphaWZRam5qXkl + xXolFSUMWe+nnPq264N4WpD9jYJXoqx6sm79ULXlqUl6Rnrmesn5eWmZ6QwTZuXn+cy2eKhebcEY + yn1k+7W8KzOQVBrrmcBUrj6TxJbOZdY/a0KCQUvcyXP/xSvUAGa0f6BQSwMEFAAAAAgAIblOUV9+ + 8+1tAQAAaAEAADYAAAAuZ2l0L29iamVjdHMvZmIvNDM5Y2VhMzIwMjQ1NjgyNGI4ZTZhYWFiMzA3 + ODcyMTA1NTkzYjIBaAGX/ngBlZLBSgMxEIY9F3yHgV5asM1NtCeL0JtoqeCh9JBmZ93YTWabmbXU + p3ey1RaLIMIeks3M/N9+m3VNa7i+ub3ow9NeKoowqy1vwDYN6Gb60SaEF1zDVF+UlOCeolgfMfFl + 77L3XHkGfSwEH32wNbANTY1dv1RWoMBAkSVZQYaKdiAEqY3acZ5Xe2fFa+gfueMcPFOUQMrmo1KF + rvEKNNkyAiOCVAjLr4g8UPEXmN69Q5i33m1YbFI6crwaVCINT4zJu3HwLhFTKWNHwWActWxs1mDU + yYgPM4w7ajDb47hR0ykcdoT9TlXy61Z8fD3KahK9oROorForqBEsDqwP37nw2GCEBbVJWe+pQKAy + zypaJydW0iLuas6InXZQqXy53gzH8Juqk6KzAJhN5/8OKe3WDEH/SGdFP26Z6TLI3Q+bq0Gwvhaa + /H48hJ2XCmzcq5nC57ugF2rbIuclHwJCwCishj8BFxr6S1BLAwQUAAAACAAhuU5RTYPO3CoAAAAp + AAAAFgAAAC5naXQvcmVmcy9oZWFkcy9tYXN0ZXIFwUkRADAIBLB/1Ww5BpDDUfxLaLJXnZ9nLlzb + CCoZdnNjqEaobMDoOh9QSwMEFAAAAAgAIblOUdYl1KAiAAAAIAAAAB0AAAAuZ2l0L3JlZnMvcmVt + b3Rlcy9vcmlnaW4vSEVBRCtKTbNSKEpNK9YvSs3NL0kt1s8vykzPzNPPTSwuSS3iAgBQSwECFAAU + AAAACAAhuU5RrtXvKF0CAABuBAAACgAAAAAAAAAAAAAAtoEAAAAALmdpdGlnbm9yZVBLAQIUABQA + AAAIACG5TlEstqWhXQAAAGoAAAAOAAAAAAAAAAAAAAC2gYUCAABhcHBsaWNhdGlvbi5weVBLAQIU + ABQAAAAIACG5TlFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAAAAC2gQ4DAABMSUNFTlNFUEsBAhQAFAAA + AAgAIblOUUhuvDyPAQAAiAMAAAkAAAAAAAAAAAAAALaBwgUAAFJFQURNRS5tZFBLAQIUABQAAAAI + ACG5TlGab84DVwAAAF0AAAAQAAAAAAAAAAAAAAC2gXgHAAByZXF1aXJlbWVudHMudHh0UEsBAhQA + FAAAAAgAIblOUaOoHCbRAAAAPwEAAAsAAAAAAAAAAAAAALaB/QcAAC5naXQvY29uZmlnUEsBAhQA + FAAAAAgAIblOUTeLBx8/AAAASQAAABAAAAAAAAAAAAAAALaB9wgAAC5naXQvZGVzY3JpcHRpb25Q + SwECFAAUAAAACAAhuU5RK2lzpxkAAAAXAAAACQAAAAAAAAAAAAAAtoFkCQAALmdpdC9IRUFEUEsB + AhQAFAAAAAgAIblOUax80NgkAQAAwQEAAAoAAAAAAAAAAAAAALaBpAkAAC5naXQvaW5kZXhQSwEC + FAAUAAAACAAhuU5RG7aRBOoAAAC/AQAAEAAAAAAAAAAAAAAAtoHwCgAALmdpdC9wYWNrZWQtcmVm + c1BLAQIUABQAAAAIACG5TlGFT/gJFwEAAN4BAAAgAAAAAAAAAAAAAAC2gQgMAAAuZ2l0L2hvb2tz + L2FwcGx5cGF0Y2gtbXNnLnNhbXBsZVBLAQIUABQAAAAIACG5TlHp+MoQ9wEAAIADAAAcAAAAAAAA + AAAAAAC2gV0NAAAuZ2l0L2hvb2tzL2NvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgAIblOURZi + ts8fBgAA/wwAACQAAAAAAAAAAAAAALaBjg8AAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFu + LnNhbXBsZVBLAQIUABQAAAAIACG5TlGaDPfAigAAAL0AAAAdAAAAAAAAAAAAAAC2ge8VAAAuZ2l0 + L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIACG5TlHPwEwCCQEAAKgBAAAgAAAA + AAAAAAAAAAC2gbQWAAAuZ2l0L2hvb2tzL3ByZS1hcHBseXBhdGNoLnNhbXBsZVBLAQIUABQAAAAI + ACG5TlESHWcqiQMAAGYGAAAcAAAAAAAAAAAAAAC2gfsXAAAuZ2l0L2hvb2tzL3ByZS1jb21taXQu + c2FtcGxlUEsBAhQAFAAAAAgAIblOUUQ/817/AAAAoAEAACIAAAAAAAAAAAAAALaBvhsAAC5naXQv + aG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGVQSwECFAAUAAAACAAhuU5RBNiPsZ0CAABEBQAA + GgAAAAAAAAAAAAAAtoH9HAAALmdpdC9ob29rcy9wcmUtcHVzaC5zYW1wbGVQSwECFAAUAAAACAAh + uU5RhOxYUd8HAAAiEwAAHAAAAAAAAAAAAAAAtoHSHwAALmdpdC9ob29rcy9wcmUtcmViYXNlLnNh + bXBsZVBLAQIUABQAAAAIACG5TlGSxPiWSQEAACACAAAdAAAAAAAAAAAAAAC2gesnAAAuZ2l0L2hv + b2tzL3ByZS1yZWNlaXZlLnNhbXBsZVBLAQIUABQAAAAIACG5TlHtEzYw6AIAANQFAAAkAAAAAAAA + AAAAAAC2gW8pAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29tbWl0LW1zZy5zYW1wbGVQSwECFAAUAAAA + CAAhuU5RGiFEJXUEAAAaDgAAGAAAAAAAAAAAAAAAtoGZLAAALmdpdC9ob29rcy91cGRhdGUuc2Ft + cGxlUEsBAhQAFAAAAAgAIblOUXc9zSGtAAAA8AAAABEAAAAAAAAAAAAAALaBRDEAAC5naXQvaW5m + by9leGNsdWRlUEsBAhQAFAAAAAgAIblOUSpLLHSZAAAA0wAAAA4AAAAAAAAAAAAAALaBIDIAAC5n + aXQvbG9ncy9IRUFEUEsBAhQAFAAAAAgAIblOUSpLLHSZAAAA0wAAABsAAAAAAAAAAAAAALaB5TIA + AC5naXQvbG9ncy9yZWZzL2hlYWRzL21hc3RlclBLAQIUABQAAAAIACG5TlEqSyx0mQAAANMAAAAi + AAAAAAAAAAAAAAC2gbczAAAuZ2l0L2xvZ3MvcmVmcy9yZW1vdGVzL29yaWdpbi9IRUFEUEsBAhQA + FAAAAAgAIblOUaY6UR1SBAAATQQAADYAAAAAAAAAAAAAALaBkDQAAC5naXQvb2JqZWN0cy8xMC9k + N2FmOTY1NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNlBLAQIUABQAAAAIACG5TlH7famK + zAIAAMcCAAA2AAAAAAAAAAAAAAC2gTY5AAAuZ2l0L29iamVjdHMvMTUvNTJiN2ZkMTU3YzNiMDhm + YzAwOTZmMThlNGFkNWVmNDI4YmMxMmJQSwECFAAUAAAACAAhuU5Rib97EcwAAADHAAAANgAAAAAA + AAAAAAAAtoFWPAAALmdpdC9vYmplY3RzLzE2L2NhOTQ5Yjk2ZGE3YWVhNTVmNTdkNDlkNzU1Njgw + YmYxNDBkNzk1UEsBAhQAFAAAAAgAIblOUV1WH0u1AAAAsAAAADYAAAAAAAAAAAAAALaBdj0AAC5n + aXQvb2JqZWN0cy8xOS8xYmIzZmJhMDc1ZjQ1NWY0OGU2ZDc2ZGRiNDE2MTZiYzM0MjE3NlBLAQIU + ABQAAAAIACG5TlHmy6VVvwAAALoAAAA2AAAAAAAAAAAAAAC2gX8+AAAuZ2l0L29iamVjdHMvMjcv + OTZiMGFmZWQ2NTVlMGU1NjFiZWZiZGM1YmVmYTEzZTdkZmRhOWFQSwECFAAUAAAACAAhuU5R31/M + NfkAAAD0AAAANgAAAAAAAAAAAAAAtoGSPwAALmdpdC9vYmplY3RzLzI4Lzg4ZWMzYzlhNDEzMTEx + OGNmZmYwYzk0NDdmYWMzODUyODIzNDlhUEsBAhQAFAAAAAgAIblOUSfS34p9AAAAeAAAADYAAAAA + AAAAAAAAALaB30AAAC5naXQvb2JqZWN0cy8yZC9hOWMzNTU1NTM0NThkZDljYmNjMjk1ZjQ4M2Q5 + MjQxYTEyYTgxNlBLAQIUABQAAAAIACG5TlE++Q7S2AIAANMCAAA2AAAAAAAAAAAAAAC2gbBBAAAu + Z2l0L29iamVjdHMvMzAvNjQ5MGRmMDBmMmUwZGU1NjA1N2NmZDgwYmQ2ZDBmNzFjMTkyNTJQSwEC + FAAUAAAACAAhuU5Rt3vZN3QCAABvAgAANgAAAAAAAAAAAAAAtoHcRAAALmdpdC9vYmplY3RzLzNh + LzQ2ODcxYjViNzJiNGRiNWRkYTFlZDEzODY0Mjg1Y2ZmYzY2NGM3UEsBAhQAFAAAAAgAIblOUWls + ZhK1AAAAsAAAADYAAAAAAAAAAAAAALaBpEcAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkw + NjcyOGY2NmE3MWY2MjBhNmQxZTc4YmZlYVBLAQIUABQAAAAIACG5TlFO544KrgEAAKkBAAA2AAAA + AAAAAAAAAAC2ga1IAAAuZ2l0L29iamVjdHMvM2YvMjE0NjVlZjZlZWZjM2MxZjc4Mjc1Zjk0YzE2 + NTBiNTZlZmQzYmRQSwECFAAUAAAACAAhuU5R3AlonWUAAABgAAAANgAAAAAAAAAAAAAAtoGvSgAA + LmdpdC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1UEsB + AhQAFAAAAAgAIblOUX3zWBq1AAAAsAAAADYAAAAAAAAAAAAAALaBaEsAAC5naXQvb2JqZWN0cy80 + MC9mYWVjMTA4YWNkOWFmNjZmNWRhOGE1Njg5NjBhZDRhNjI4ZmExZlBLAQIUABQAAAAIACG5TlGW + CbN+/gAAAPkAAAA2AAAAAAAAAAAAAAC2gXFMAAAuZ2l0L29iamVjdHMvNDQvZTc0ZmU3ZGQ5ZGZl + MmY2MjI4NzI2MWQ4ZDU2ZDUwMTc4NTRkMThQSwECFAAUAAAACAAhuU5RPUAqlMwAAADHAAAANgAA + AAAAAAAAAAAAtoHDTQAALmdpdC9vYmplY3RzLzRhL2ExZThhMzQ4NjRjMDhiZGVjNjAwOGUyYzg3 + NjE0NTgxZDUzZjdiUEsBAhQAFAAAAAgAIblOUUDzmqU1AQAAMAEAADYAAAAAAAAAAAAAALaB404A + AC5naXQvb2JqZWN0cy80Yi8xNDI2MGE4NmNhYTEyZjNjNDNiOTY3ZjQzMzA1MmI0MzVkMjc4NlBL + AQIUABQAAAAIACG5TlEDpVJ4tAIAAK8CAAA2AAAAAAAAAAAAAAC2gWxQAAAuZ2l0L29iamVjdHMv + NGIvMWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDdQSwECFAAUAAAACAAhuU5R + ObGiejcCAAAyAgAANgAAAAAAAAAAAAAAtoF0UwAALmdpdC9vYmplY3RzLzU2LzY0YjYyZjJiNGZj + NDU0MzczNGMwZDFhMjU0MGMxNWIwYWY1ZWQzUEsBAhQAFAAAAAgAIblOUUImqm80AgAALwIAADYA + AAAAAAAAAAAAALaB/1UAAC5naXQvb2JqZWN0cy81Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTVi + ZWZmODAwNDlkMjA2MFBLAQIUABQAAAAIACG5TlF0xD70wAAAALsAAAA2AAAAAAAAAAAAAAC2gYdY + AAAuZ2l0L29iamVjdHMvNWEvNTk4ZTI4ODNhNzBkZWMyOTBhNDgxY2FhMjM4NmY0YzliYjU5YzJQ + SwECFAAUAAAACAAhuU5R2mwDGS4BAAApAQAANgAAAAAAAAAAAAAAtoGbWQAALmdpdC9vYmplY3Rz + LzVlLzMxMTk3Yzc3MzY5NzEzMTIxY2Y2NDg4NWViNjhiOGFkMTg1NGU1UEsBAhQAFAAAAAgAIblO + URbU7+1DAgAAPgIAADYAAAAAAAAAAAAAALaBHVsAAC5naXQvb2JqZWN0cy82My9lMzY2Y2ZlYjMy + ZjljZTc4ZmM0MDNmNjMyZmNhYzY3OTA0YjI5YVBLAQIUABQAAAAIACG5TlGE3OkXsAAAAKsAAAA2 + AAAAAAAAAAAAAAC2gbRdAAAuZ2l0L29iamVjdHMvNjgvMzRjMTU5ZDJiMDY3MmYyYTdmMDdiODA2 + YzlhMGFiMDUxOWI3MjBQSwECFAAUAAAACAAhuU5RWqnWYiEAAAAeAAAANgAAAAAAAAAAAAAAtoG4 + XgAALmdpdC9vYmplY3RzLzZhL2VmOTRjYWY2YmFmMDE3NjY1MjNmZDg3MGVhMTUwNTJlMWQ0Njhm + UEsBAhQAFAAAAAgAIblOUXtFhwRsAgAAZwIAADYAAAAAAAAAAAAAALaBLV8AAC5naXQvb2JqZWN0 + cy83Mi8zNjRmOTlmZTRiZjhkNTI2MmRmM2IxOWIzMzEwMmFlYWE3OTFlNVBLAQIUABQAAAAIACG5 + TlEo2UIpywIAAMYCAAA2AAAAAAAAAAAAAAC2ge1hAAAuZ2l0L29iamVjdHMvNzgvNDI2NDRkMzU2 + ZTkyMjM1NzZhMmU4MmRlNThlYmYwNzk5MmY0MjNQSwECFAAUAAAACAAhuU5RKrEmPzQBAAAvAQAA + NgAAAAAAAAAAAAAAtoEMZQAALmdpdC9vYmplY3RzLzc5L2Y0NTFiZDU2NDAzZDQyNzNhNTEyMDIw + NWUwOTFmZjJmOTM0ODQxUEsBAhQAFAAAAAgAIblOUfe/gE3MAAAAxwAAADYAAAAAAAAAAAAAALaB + lGYAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEzZWVmYzNjOWM3 + MFBLAQIUABQAAAAIACG5TlGSTW8AywAAAMYAAAA2AAAAAAAAAAAAAAC2gbRnAAAuZ2l0L29iamVj + dHMvODMvYmU2MzE4YTkyMTExYmVjMmUxY2FlZmQxYjJkN2ZlNDM1Y2E3NTJQSwECFAAUAAAACAAh + uU5RYJdWaK4BAACpAQAANgAAAAAAAAAAAAAAtoHTaAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJm + YjAzMzVkZTM2MjQ0ZmJiMjY4YzgyYmUxNzY3MWRhUEsBAhQAFAAAAAgAIblOUWZpzYPeAAAA2QAA + ADYAAAAAAAAAAAAAALaB1WoAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMFBLAQIUABQAAAAIACG5TlEg1rFhdAAAAG8AAAA2AAAAAAAAAAAAAAC2 + gQdsAAAuZ2l0L29iamVjdHMvODcvYzUxYzk0ODY3MjM4NTJlODlkYmJiYzljN2M2Mzk4NmFhOTE5 + MzRQSwECFAAUAAAACAAhuU5RPB/vkjkAAAA0AAAANgAAAAAAAAAAAAAAtoHPbAAALmdpdC9vYmpl + Y3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3MzE1NmFmZWZhUEsBAhQAFAAAAAgA + IblOUT7rdUKPAAAAigAAADYAAAAAAAAAAAAAALaBXG0AAC5naXQvb2JqZWN0cy84ZS8zNDQ0YmQ0 + NjE4Nzg3ZDQwM2MwYjRkYzQ0YzcwNmEwMjAyZWRlZlBLAQIUABQAAAAIACG5TlHdZ8VBywAAAMYA + AAA2AAAAAAAAAAAAAAC2gT9uAAAuZ2l0L29iamVjdHMvOGYvNmEwYTRmOWQ5OWRhOGViM2RiYjVk + MzdmNmNmMjVkZmVhY2Q4ZDBQSwECFAAUAAAACAAhuU5RISfNXdUCAADQAgAANgAAAAAAAAAAAAAA + toFebwAALmdpdC9vYmplY3RzLzkwLzlhNmY2ZTRjOWIzOGUxMjc3YjM4MDE1NTBiYzRiN2Q2NmVk + NDk4UEsBAhQAFAAAAAgAIblOUQlUFZ58AgAAdwIAADYAAAAAAAAAAAAAALaBh3IAAC5naXQvb2Jq + ZWN0cy85MS80MmIyOGUyMmI2MmMwMzFiMzJmYTFjYjE1YzMzZGE3YzkwNWMyMFBLAQIUABQAAAAI + ACG5TlHwqBwKzAAAAMcAAAA2AAAAAAAAAAAAAAC2gVd1AAAuZ2l0L29iamVjdHMvOTUvNDUzZGJl + ZDA5MzExNGUzZTM1YjMzNThiMjE2NzBkMjUwMWI5MDJQSwECFAAUAAAACAAhuU5RosQR1fQAAADv + AAAANgAAAAAAAAAAAAAAtoF3dgAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdlN2Y5ZTgyNDQyMzhi + M2Q4ZjI2MmQ1NDc4OWIyOGZjUEsBAhQAFAAAAAgAIblOUX5kVkBlAAAAYAAAADYAAAAAAAAAAAAA + ALaBv3cAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2NGY2MDZmMWQzZWY2 + MTRkOFBLAQIUABQAAAAIACG5TlH44ZrgiAAAAIMAAAA2AAAAAAAAAAAAAAC2gXh4AAAuZ2l0L29i + amVjdHMvYTEvODk3YzgwMGZiZGQ2ZjQyMjE1ODZjZWQ5ZTc3OTlmMDIxYjU1YzlQSwECFAAUAAAA + CAAhuU5Ro0IPgeMFAADeBQAANgAAAAAAAAAAAAAAtoFUeQAALmdpdC9vYmplY3RzL2E0L2E0MTI5 + ODAzYjllZTlhMWVlM2ZhMzAxYjU2Njc4Y2FhODcyNDkyUEsBAhQAFAAAAAgAIblOUbIY8KNvAAAA + agAAADYAAAAAAAAAAAAAALaBi38AAC5naXQvb2JqZWN0cy9hOC82YmVhYTZkYjA0ZWI3NmZhMTlk + Y2IzOGM2N2MxYzUwMjJkMmZlYlBLAQIUABQAAAAIACG5TlGj6R9xWwAAAFYAAAA2AAAAAAAAAAAA + AAC2gU6AAAAuZ2l0L29iamVjdHMvYTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3 + MThlMTNQSwECFAAUAAAACAAhuU5RgfqW7c8CAADKAgAANgAAAAAAAAAAAAAAtoH9gAAALmdpdC9v + YmplY3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2UEsBAhQAFAAA + AAgAIblOUTtIlmG9AAAAuAAAADYAAAAAAAAAAAAAALaBIIQAAC5naXQvb2JqZWN0cy9hYy9hN2Ex + NDIxMmU2OTlmYTZmMTI4NTI4NmQ2NTE2ZDY3ZjQwYTI2NFBLAQIUABQAAAAIACG5TlG/sLFYdAEA + AG8BAAA2AAAAAAAAAAAAAAC2gTGFAAAuZ2l0L29iamVjdHMvYjMvOGM0NWEzNmQyMzQ1MmVlOGZm + NDVjZTQ5YzEzMGY2NzRiMmYwOTBQSwECFAAUAAAACAAhuU5RK9z0MQMBAAD+AAAANgAAAAAAAAAA + AAAAtoH5hgAALmdpdC9vYmplY3RzL2M0LzBlZmJiNDBlODcxMDYwMmU3OWQ3ODFjOGI0NDNjMTc4 + ZjIyNzVjUEsBAhQAFAAAAAgAIblOUe5utYw8AAAANwAAADYAAAAAAAAAAAAAALaBUIgAAC5naXQv + b2JqZWN0cy9jOS9hZDIxZDAzYzZkMjE2OTcwNDQyNzA0ODdiODZmYjI3MDAwMTE2MFBLAQIUABQA + AAAIACG5TlEpo4PWsAEAAKsBAAA2AAAAAAAAAAAAAAC2geCIAAAuZ2l0L29iamVjdHMvZDEvYWI5 + MjJiZWFjNzMzOGIxNTFlNTA4NjU0M2I4ZWQ1MDEwZWI4ODFQSwECFAAUAAAACAAhuU5RDqp48agB + AACjAQAANgAAAAAAAAAAAAAAtoHkigAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcy + NjcyZDZiYjc1MjBiMWJhNjhjMmMyUEsBAhQAFAAAAAgAIblOUX23KJJCAgAAPQIAADYAAAAAAAAA + AAAAALaB4IwAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1OGI2 + ZDBhYmJmOVBLAQIUABQAAAAIACG5TlFZTf/5igEAAIUBAAA2AAAAAAAAAAAAAAC2gXaPAAAuZ2l0 + L29iamVjdHMvZGYvOTM0ODYwZWIxOTYzMTVhMDU0NTdkN2VhODIwNTU4NDJkYTFmNGZQSwECFAAU + AAAACAAhuU5RY2Y+ijECAAAsAgAANgAAAAAAAAAAAAAAtoFUkQAALmdpdC9vYmplY3RzL2UxL2Fi + ZjhiN2EzYmMyNTZiZjIwNDU0ZjIyYTExOTgwOGI0YzdhYmU5UEsBAhQAFAAAAAgAIblOUa+0xwNw + AgAAawIAADYAAAAAAAAAAAAAALaB2ZMAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRiNmJiOGE1 + YzY3MTBmNmUzMzZjMzVhOGI4MTY3N1BLAQIUABQAAAAIACG5TlEQFwZqNgIAADECAAA2AAAAAAAA + AAAAAAC2gZ2WAAAuZ2l0L29iamVjdHMvZjEvNTgzZThhYWYwODVjNzIwNTRhOTcxYWY5ZDJiZDQy + YjdkMDMwY2JQSwECFAAUAAAACAAhuU5Rn/AtZzQBAAAvAQAANgAAAAAAAAAAAAAAtoEnmQAALmdp + dC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1YzU1NGExYTllNmY5YTM5ZWMzUEsBAhQA + FAAAAAgAIblOUV9+8+1tAQAAaAEAADYAAAAAAAAAAAAAALaBr5oAAC5naXQvb2JqZWN0cy9mYi80 + MzljZWEzMjAyNDU2ODI0YjhlNmFhYWIzMDc4NzIxMDU1OTNiMlBLAQIUABQAAAAIACG5TlFNg87c + KgAAACkAAAAWAAAAAAAAAAAAAAC2gXCcAAAuZ2l0L3JlZnMvaGVhZHMvbWFzdGVyUEsBAhQAFAAA + AAgAIblOUdYl1KAiAAAAIAAAAB0AAAAAAAAAAAAAALaBzpwAAC5naXQvcmVmcy9yZW1vdGVzL29y + aWdpbi9IRUFEUEsFBgAAAABWAFYAHx4AACudAAAAAA== + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '47968' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:50 GMT + location: + - https://up-pythonapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-10-50Z + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":0,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Updating submodules.","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:53.9498906Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:54 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:57 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:00 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:03 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:07 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:10 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:13 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:16 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:20 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:22 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:25 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":1,"status_text":"Building + and Deploying ''181ca05551fa48b3a06ae08b36ba56d2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:28 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"181ca05551fa48b3a06ae08b36ba56d2","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:10:53.9498906Z","start_time":"2020-10-15T06:10:54.1955573Z","end_time":"2020-10-15T06:11:30.3216948Z","last_success_end_time":"2020-10-15T06:11:30.3216948Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-pythonapp000003"}' + headers: + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:31 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:18.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5465' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:31 GMT + etag: + - '"1D6A2B9DB2EC595"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:18.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5465' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:32 GMT + etag: + - '"1D6A2B9DB2EC595"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:18.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5465' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:32 GMT + etag: + - '"1D6A2B9DB2EC595"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11:33 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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/web","name":"up-pythonapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"PYTHON|3.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-pythonapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3601' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:33 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 list + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:34 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 appsettings list + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-pythonapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:34 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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","name":"up-pythonplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":24650,"name":"up-pythonplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_24650","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: + - '1387' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_different_skus.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_different_skus.yaml new file mode 100644 index 00000000000..ae0395da5bb --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_different_skus.yaml @@ -0,0 +1,2797 @@ +interactions: +- request: + body: '{"name": "up-different-skus000002", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '83' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 03:23:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 03:23:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","name":"up-different-skus-plan000005","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":22767,"name":"up-different-skus-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-081_22767","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: + - '1435' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","name":"up-different-skus-plan000005","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":22767,"name":"up-different-skus-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-081_22767","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: + - '1435' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "up-different-skus000002", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '68' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "python|3.7", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '558' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002","name":"up-different-skus000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skus000002","state":"Running","hostNames":["up-different-skus000002.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-different-skus000002","repositorySiteName":"up-different-skus000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skus000002.azurewebsites.net","up-different-skus000002.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":"up-different-skus000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skus000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:23:34.4366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skus000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.165.184.170","possibleInboundIpAddresses":"52.165.184.170","ftpUsername":"up-different-skus000002\\$up-different-skus000002","ftpsHostName":"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211","possibleOutboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-different-skus000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5878' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23:51 GMT + etag: + - '"1D6A2A290B9346B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1941' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 03:23:51 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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002","name":"up-different-skus000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skus000002","state":"Running","hostNames":["up-different-skus000002.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-different-skus000002","repositorySiteName":"up-different-skus000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skus000002.azurewebsites.net","up-different-skus000002.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":"up-different-skus000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skus000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:23:35.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skus000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.165.184.170","possibleInboundIpAddresses":"52.165.184.170","ftpUsername":"up-different-skus000002\\$up-different-skus000002","ftpsHostName":"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211","possibleOutboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-different-skus000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5678' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23:51 GMT + etag: + - '"1D6A2A290B9346B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '681' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23:53 GMT + etag: + - '"1D6A2A29B765475"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002/publishingcredentials/$up-different-skus000002","name":"up-different-skus000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-different-skus000002","publishingPassword":"ShfsDXn0Bmvfnhv4yuZCvT8d7KXh7bRkNPfi3EaMSfLjAbplYnpdZ733jyvS","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-different-skus000002:ShfsDXn0Bmvfnhv4yuZCvT8d7KXh7bRkNPfi3EaMSfLjAbplYnpdZ733jyvS@up-different-skus000002.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '819' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002","name":"up-different-skus000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skus000002","state":"Running","hostNames":["up-different-skus000002.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-different-skus000002","repositorySiteName":"up-different-skus000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skus000002.azurewebsites.net","up-different-skus000002.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":"up-different-skus000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skus000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:23:53.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skus000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.165.184.170","possibleInboundIpAddresses":"52.165.184.170","ftpUsername":"up-different-skus000002\\$up-different-skus000002","ftpsHostName":"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211","possibleOutboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-different-skus000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5678' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:23:53 GMT + etag: + - '"1D6A2A29B765475"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1941' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 03:23: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: !!binary | + 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 + ZWE1NWY1N2Q0OWQ3NTU2ODBiZjE0MGQ3OTUBxwA4/3gBKylKTVUwtDRjMDQwMDMxUdBLzyzJTM/L + L0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtU + SZCro4uvq15uCsOlvopL9ju6i7arFV3bXaqwcVfGoUNQRYkFBTmZyYklmfl5egWVDCuyXy27zfK6 + 7Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5Jd5b9T8va22zUEgFAHBa + UhJQSwMEFAAAAAgA6aJOUV1WH0u1AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvMTkvMWJiM2ZiYTA3 + NWY0NTVmNDhlNmQ3NmRkYjQxNjE2YmMzNDIxNzYBsABP/3gBjY5BasMwEEW71inmAi0zo5ElQQkh + u6xDu5c9o9RQ20FR2+vHhR6gqwcf3udN27LMHdjjU29mEHOVQKOGQdCrcPQlECNjMMxUK9fsJQm5 + W2m2dhCxKNWiatZqXAfmFHkgTfuFBqSYgiglV776x9bgZG1VeLd27/A6fv/yeF3K/PkybcsBKBDl + zAkFnjEhun3d+7r90/SE/s90bzct3eB8vsCPjTBta52v7gHsuEbxUEsDBBQAAAAIAOmiTlHmy6VV + vwAAALoAAAA2AAAALmdpdC9vYmplY3RzLzI3Lzk2YjBhZmVkNjU1ZTBlNTYxYmVmYmRjNWJlZmEx + M2U3ZGZkYTlhAboARf94AbXPTU7EMAwFYNY9hS8wVX47toQQWxaIBSdwHZeJNG2qNF3M7YlAHAEv + Pz29J0tZ19zAET61qgouMYmP/XyImBLJLOIoLgF9IhcsW8dop2HnqluDyJFQHaLnq0nao4YDWmF2 + HqclCM1zJHEDn+1WKrxnqeUoS4OPXTf4LGcVhef1j0vX4wdfz0PrMW6l6n5/jF+53c55lLK+gA1k + jbHOTnAxV2OGrv2Lpv/VP7xtuWW+w+/QN0hEZOJQSwMEFAAAAAgA6aJOUd9fzDX5AAAA9AAAADYA + AAAuZ2l0L29iamVjdHMvMjgvODhlYzNjOWE0MTMxMTE4Y2ZmZjBjOTQ0N2ZhYzM4NTI4MjM0OWEB + 9AAL/3gBjZFBS8QwEIU9C/6HEFjQS+tBEKQrFFvcQtnDttZLIGTbsQ22SUimqf337i6r6LoH5/hg + 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 + dC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1AWAAn/94 + AUvKyU9SsLBgSM7JTM62tTXTM+dyy0ksBjIN9Qz0jLgyS4pTEvPSU4vyS4ttbYEiJlxemXlZiUa2 + tkZ6hgZcvolF2aUFwYlpqWAdXOGpRdlVqaXpILWGJnqGAG83HG5QSwMEFAAAAAgA6aJOUX3zWBq1 + AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvNDAvZmFlYzEwOGFjZDlhZjY2ZjVkYThhNTY4OTYwYWQ0 + YTYyOGZhMWYBsABP/3gBnY5BasQwDEW7zim0LxRLkZwJDKXQbS+hKDZj2thTR9Pz171CN5/Hh/f5 + 1o6jOJCEJ+8pgZouikxIKa5r1piRLkKXuEfBEUvmoBR5umtP1UFi5C1Spo2zsfC8zGxhRyXhYChb + 0Cxpnyd9+K11eE/3m57wUSpc7Y+/Sn07ivV2tuwv1o5XQJmRVw4o8BwohGm046Snf+rDrz+pO3iD + ga6ljqnvR7HP07X79AubyVBMUEsDBBQAAAAIAOmiTlGWCbN+/gAAAPkAAAA2AAAALmdpdC9vYmpl + Y3RzLzQ0L2U3NGZlN2RkOWRmZTJmNjIyODcyNjFkOGQ1NmQ1MDE3ODU0ZDE4AfkABv94AW2Py2rD + MBBFu/ZXDHTdVA9LI0EogULaTT5iJI0SE78qy2399zWF7rq6XDjnwo3TMHQVtMSHWpjBsJbSY0TU + 1qPUUsmYbeuc4WBdcJSkMy2bZqbCYwWF3gZBmZM1hgUbKwPnkKLZg6RmTDmRpz/eOt1GaXxSQVhU + WRFmgcEJGz0JCsJIH1CJhtZ6mwq8TmWD8/TVc4Fj3Mtp2cZK37E9jFxfQLZeGasQFTwJFKKJv4fq + jr919X0NcBynwnO/na5dva3hsAP/aM2Fy5VhXvseCn+svFR4VJDLNEDgMqZPLkt9HmjZp5vm0o3d + QD2ce1ruQPP8A4ZAZOBQSwMEFAAAAAgA6aJOUT1AKpTMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMv + NGEvYTFlOGEzNDg2NGMwOGJkZWM2MDA4ZTJjODc2MTQ1ODFkNTNmN2IBxwA4/3gBKylKTVUwtDRj + MDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/ + 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 + 6fqoZ0/vVoSqu5o7kXUa3AubGCQs4VJytXzi93di6XfD2/ZLZXjKFsIWByCyV/NhUp5UG+aGfWzk + 3JbJcPT0LVTLmZ4c2tIPDu+r98NjaUp4l2CxY7XzYWn2Sb/UY4rlRt5Rluy9mW9kTm3e3II9Wv7d + OsVzofU3nhvkOatRMm9hP/4hVEXDFqa2zooFqw0O2GR/XIsnYzZv8Vn3NN/XoUOE7dF/VmazJ0Ew + GH3fOBBq5wLj9u59KkK2aKVJqbjd8TL2MDyR0R8K+Thb+Fd5L6nbsk4IGoQwNJzUNXxWsV7Gm8Ad + wlS9lKieN6X0zMUz/+EEbxx48+qdy/3ZzHSNfy/GBbc06ijYmcRYm1OW/gRujeDIUEsDBBQAAAAI + AOmiTlGE3OkXsAAAAKsAAAA2AAAALmdpdC9vYmplY3RzLzY4LzM0YzE1OWQyYjA2NzJmMmE3ZjA3 + YjgwNmM5YTBhYjA1MTliNzIwAasAVP94AY3OQY7CMAyFYdY5hS8AitPaSaTRCLHgCOydxIUKSqs0 + M+enLNiz+qUnfdLL8zSNDZyjXauqQNohRp+97zh67NBhHrgPgTRxSEEKBuqVzCJVnxv0kZOVQQsT + qVViTDqkkmmLYKe+DEWiGPlrt7nCSeuzwEXr2uAn/b97vE4yPg55nn4B++iInA8Me+utNdu6/Wv6 + nWSH/JHmJOuY4fyQ9Q6yLAfzAr07RzxQSwMEFAAAAAgA6aJOUVqp1mIhAAAAHgAAADYAAAAuZ2l0 + L29iamVjdHMvNmEvZWY5NGNhZjZiYWYwMTc2NjUyM2ZkODcwZWExNTA1MmUxZDQ2OGarYPQ+ddI/ + yMAkseC0p865bVtNLxibXDJ+wsTgZcC6CwBQSwMEFAAAAAgA6aJOUXtFhwRsAgAAZwIAADYAAAAu + Z2l0L29iamVjdHMvNzIvMzY0Zjk5ZmU0YmY4ZDUyNjJkZjNiMTliMzMxMDJhZWFhNzkxZTUBZwKY + /XgBbVPBbtQwEOXsr7BUThWbgFQ4cCwFqVJVVZRyQWjlOJPEXcdj2bPbNV/Pc7ILHLg4npk34zcz + L53nTr97e/X+1YW+LkIby3N0nnrdao7iZvdrud/c3ekB/qy221issRNtt626bGL5Ybn/qS5fx9JY + b3JW6kJ/0nQUCtlxyABlrs4blyW5bi/wonw0dmdGF0bVPBSZOCgKh1Z1e+f7VvV0IM9xQ+OYYSEV + J78Ez6aHY3U368e7rlU4Ply1KpokiOc142BSJQnYxoWBW9W4kMV4NNjYYVxDldtDuT0FEiz9lPcA + FS0TZVob1yaRfklO0JfuijY6Lqx1tslF0UPiGU6hOXojVKt0NDCS/qmtl+5yrYsJ0RudWRuYrF14 + Jiu6R2rLCCd4Bs44a1AaUJ1NcANlqQONZCvtP6S15zGr6OIGl0aOstx78oSdyuTypncJD3AqSxS5 + T8EJ6GbBLiwfKJmRdKLIGKCaZPZwYmDCR5xnwN9bc4l71YEKnPFKltwcZ6/OyMW4fLOYqplKrF1l + h93g7W/JhIwxnfQxM3oCYFHJswkj6yz7YfgIN/pRnq3xW7wikEuG5irwC8S2O+OWtQZLoPpCHVRI + kjcrPUAfbTKxnLENNgaz1niMkwtH3bPdzxRkIQSZ2dxuTzoE6KFcV01SUmLSSBAinLerZvU9C3XM + OygrltBtMRC7i4y1LT9CLBC1AuMq8A2GXH+Jmm+xmlQgESNQ0ET93q9CU2ukBjbnQE3o8VAtVQ+Y + B5cEGq3WAUerPt9/X4g9xgKqOiZeBHUemoJmauDkryW+cqT/4BLcZ9RvnhVlElBLAwQUAAAACADp + ok5RKNlCKcsCAADGAgAANgAAAC5naXQvb2JqZWN0cy83OC80MjY0NGQzNTZlOTIyMzU3NmEyZTgy + ZGU1OGViZjA3OTkyZjQyMwHGAjn9eAGNU9tu4zYQ7bO+go8NjOh+XewWK8myIt8l29nEwT6QFHVJ + KFEWdVnn6+vEXbRoF0UGIEAMzzkYzszBrKrKDiiyo/3WtYQAW8VQN5GhKxYxVYItQ8Z6qmm2ZiCo + EZJhDTvYkoUGtqTuQKYYtkZsCDPZNrClyoYOHUuBmZOqKNVVZKWyJmMkwL4rWAtS0pA6hYh1T5fz + HXzWHdNxNE2b/Ovla89Jy8WataShZzEvu6JHImbVH0AxLNVUTNUxwES+hHDJXn7RkRaEZXfXI/D5 + L9rX/6XlTc7LHNy+hReE0Rpswy3YReHa3R+S4D0vAAGM3MOe63q+68ZePE+HaVH7ibewimd9M2ht + NLpuehdFbnCar9TCRK9HN3Huiax/ezzmfiWAFSffysS/z/zRHYZCdys8I2nuIHey7F2LpvWL0ywC + +0fyWBFoczk01CGa2tZhdp/w6iCASRg0wynR1Dpi635N3c3pMOQLf+vLTkgPzD+o/kMA+dJAFC2w + WQzLA6R7uzqnd4200wUg5YdYx+p4ng3r7ekYNeOxal8KZ6+jY0mfN/35xJ4T1Iavx8AsbDaZeMtp + CufjK/bp0QkFkLomm6e7KItW5+luIz3SOKcnxx02BW3wuXUKOEinRou6Y5bWcr7bm5M+7hcTeo4Z + WcUCMKLCH23lYZ1Vz6uZvy9b3/fmcTMr6UPFxqUFEc64vFnhKdlwNTV6NJNjR8vCH/qW5F8E8IVo + gyVcZxasp7+emOD1VQNG0r68kj4HWcsqIIuKLiqgY283Q9SEdxAHTz9h338vuq7hnyTp76WRGkgp + 6bj0E3TzazFRuAVPCaEEcgJq1hH+ITWpvVL4zRvfL2CdE8ryj3ERZUiqIL+sveTfuesw2Ikt765S + 74b4YBEX97yZWbp2SBTFa4NuBGFX5jVJb1mW3aLzp/96l/dNw9runy77E0IuY5BQSwMEFAAAAAgA + 6aJOUSqxJj80AQAALwEAADYAAAAuZ2l0L29iamVjdHMvNzkvZjQ1MWJkNTY0MDNkNDI3M2E1MTIw + MjA1ZTA5MWZmMmY5MzQ4NDEBLwHQ/ngBKylKTVUwNjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP + +8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15u + CsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+voJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElB + SVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76bJff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXF + eiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWpSXpGeuZ6yfl5aZnpDAYpE+4zfHpwL4y15m/D + 3lz+woOTgpBUGuuZwFSuPpPEls5l1j9rQoJBS9zJc//FK9QAnMaAiVBLAwQUAAAACADpok5R97+A + TcwAAADHAAAANgAAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEz + ZWVmYzNjOWM3MAHHADj/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8b + ZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kg72iW9y3 + d39s5CvU46ccTOUOe395L1RRYkFBTmZyYklmfp5eQSXDiuxXy26zvC77JXlnc0/6waNMuvqvoSqL + UgtLM4tSc1PzSor1SipKGGaeVhaZePWSw7V1scv8E/Jl7b6J3AAA1V5Q8FBLAwQUAAAACADpok5R + kk1vAMsAAADGAAAANgAAAC5naXQvb2JqZWN0cy84My9iZTYzMThhOTIxMTFiZWMyZTFjYWVmZDFi + MmQ3ZmU0MzVjYTc1MgHGADn/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U1 + 3c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw8XV + k7RfHTfuFpULaAux7rvKyLejEaoosaAgJzM5sSQzP0+voJJhRfarZbdZXpf9kryzuSf94FEmXf3X + UJVFqYWlmUWpual5JcV6JRUlDA6+Nh+/z0g8Ja/Ee6v+52WtbRYKqQCIlk+TUEsDBBQAAAAIAOmi + TlFgl1ZorgEAAKkBAAA2AAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJmYjAzMzVkZTM2MjQ0ZmJi + MjY4YzgyYmUxNzY3MWRhAakBVv54AcWTwW7bMAyGdzaQdyC6SwzM9oCd5tOCAjl12IbuVhSDItOx + WktURHpd9vSj7K5pi1x2GiDAAkX9/PlR3o20g4/vP7ypqmpVRLPHH3KM2AIbH0dcFR2yTS6Ko9DC + xffBMegy4F1w3oyPeWBiBBmMQIeeAksyggwDPYAQpCnoja9HGSjAdjR8n/NHZ02WBV2b31NC2KjI + NaafzmIOXrkw/aovVsVown5Sa9yuigrirKNmE3WTlSVoskA+nTeVyle8KGkwt7Yq3r50sDQIPaUz + 1ddz7TJf+w8t57Jb9eVJobigFv1M6h3oSAwjMKLSRrh5ZJoJPmN3mJy9ZzFJbteDSOS2aTqyXHtn + EzH1UlvyzYyqeYaqsRTEuICJm5NGtQAv6wXipeYkt5vEhf0TH53FHVqBwejb6CgKdovBz38rwpeI + Aa5pSjrcS+p0wr1+Qx7hySVpEs85r7xavUG9+sv5TVnDOT4nLq8KwHbz7Z+L9ObQlKBjmKloczfZ + XTby6QXH27U3bhRqzx+X8OBkABOOSqZz+cXrb3OYkPOWlwLeYxBWwn8A6ONBjlBLAwQUAAAACADp + ok5RZmnNg94AAADZAAAANgAAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMAHZACb/eAGVkDFLBDEQha0X9j88sLltNqDYXKUI14mIdscV2WRiIpvM + XjKL+O9NXCwUG7uBee99b2aaecL1zdXFJe45SQ7TKiG99l3fvfhQsGR+IyPwukBbXoQsxBOOD8Fk + LuwEjwslPPOaDdUMS2DXsuxq5LTzIkvZK8VVVL40Y/x2joajMtXBzmx6NYw4cEbkTAjJcY5aAicU + og37C4DD3dO/IU6f1YCKqVTR9bhja9eK3P7odtpFHWbh/d/rAe9BPHT6qJ+xofXUM84rlTaWDRAj + JSlj330C4SWC6lBLAwQUAAAACADpok5RINaxYXQAAABvAAAANgAAAC5naXQvb2JqZWN0cy84Ny9j + NTFjOTQ4NjcyMzg1MmU4OWRiYmJjOWM3YzYzOTg2YWE5MTkzNAFvAJD/eAFLyslPUjA0MGRwC/L3 + VSjJTMxLz8/J1y8tL07P1M1Lz8yr0E3LSSzOtiqoLMnIzzPWM9NNzCnIzEs11jPn4nL1C1Pw8QwO + cfWLD/APCrG1MDAw4HKNCPAPdlUAs7mc/QMiFfQTCwrABACrYiFrUEsDBBQAAAAIAOmiTlE8H++S + OQAAADQAAAA2AAAALmdpdC9vYmplY3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3 + MzE1NmFmZWZhATQAy/94ASspSk1VMDZlMDQwMDMxUchNzMzTK6hkWNhZ08C/99oXJdG2czefV85n + kg49CQA4txCeUEsDBBQAAAAIAOmiTlE+63VCjwAAAIoAAAA2AAAALmdpdC9vYmplY3RzLzhlLzM0 + NDRiZDQ2MTg3ODdkNDAzYzBiNGRjNDRjNzA2YTAyMDJlZGVmAYoAdf94AaWNQQpCMQxEXfcUuYCS + 1NL/CyLu1IVLD9D2t1qwFtr8+xsQT+BmJsyQN7HVWhg02g33lCA6v2hacB+tuHUTGqNF5inMNgc5 + EYksKr/ys3W4ldjbaJnhXPiyBriP1OFQR+ZH4XGqv34XWz0CGUcC0ISwRWEpSWWf5edfkrq+Cxf/ + gi/yA4BORCxQSwMEFAAAAAgA6aJOUd1nxUHLAAAAxgAAADYAAAAuZ2l0L29iamVjdHMvOGYvNmEw + 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 + MTRlM2UzNWIzMzU4YjIxNjcwZDI1MDFiOTAyAccAOP94ASspSk1VMLQ0YzA0MDAzMVHQS88syUzP + yy9KZSgy85/5z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7 + VEmQq6OLr6tebgrD5h7XxbnKrnov/rue8zxo8K1k04cJUEWJBQU5mcmJJZn5eXoFlQwrsl8tu83y + uuyX5J3NPekHjzLp6r+GqixKLSzNLErNTc0rKdYrqShhcPC1+fh9RuIpeSXeW/U/L2tts1BIBQA+ + ElGiUEsDBBQAAAAIAOmiTlGixBHV9AAAAO8AAAA2AAAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdl + N2Y5ZTgyNDQyMzhiM2Q4ZjI2MmQ1NDc4OWIyOGZjAe8AEP94AY2QQWuDQBCFey70PywLgeaih9JD + iylIlEaQHOLWXBaWTZzqUt1d1lHjv29M00LTHDq3ecN8897sarMjD0+PN8He6HdVdk6iMvrl7paQ + QFqbAaLSZXsSJqkoyAeMC7rNXhMRpkzkyYa9hWm8zsUqXEdpvKGkl3UHC9pIpb0jhBL/X/vhkiV5 + yGLBVklGJwvnOvOiZ16ZBnirEPgwDM4Y5KB7nu2dsthyO2JltAcHuHbya2olVj8OZ9nYIjSRUz3M + /sKvUU7BL5P2ymEn66MXYZ05jF4JKPqpraQuanD3829W4P9+a+Bffv4TcRaAwVBLAwQUAAAACADp + ok5RfmRWQGUAAABgAAAANgAAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2 + NGY2MDZmMWQzZWY2MTRkOAFgAJ//eAFLyslPUrCwYEjOyUzOtrU10zPncstJLAYyDfUM9Iy4MkuK + UxLz0lOL8kuLbW2BIiZcXpl5WYlGtrZGeoYGXL6JRdmlBcGJaalgHVzhqUXZVaml6SC1hqZ6xgBv + PBxxUEsDBBQAAAAIAOmiTlH44ZrgiAAAAIMAAAA2AAAALmdpdC9vYmplY3RzL2ExLzg5N2M4MDBm + YmRkNmY0MjIxNTg2Y2VkOWU3Nzk5ZjAyMWI1NWM5AYMAfP94ATWMwQpCIRREW9+vmFYqRBEEQfCg + VfQHLS8+npKkXjGl3y+LdjNzmDNHmbE/HFe+SoKP9vlASEVqw2UUsqVg+mXNnG1yzIbo/Nm3VXpz + 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 + 7l31y00hYhpvrlfte/qvJig7C0rNia6yMq0dpnVT3bybL9PLEySDowXS8D4HuXG1fPVyO4SrZnal + rpVvbcVVJ0fdkbIdIZWDnW/GXwjt5eRQSwMEFAAAAAgA6aJOUTtIlmG9AAAAuAAAADYAAAAuZ2l0 + L29iamVjdHMvYWMvYTdhMTQyMTJlNjk5ZmE2ZjEyODUyODZkNjUxNmQ2N2Y0MGEyNjQBuABH/3gB + KylKTVUwNLdgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVS35ydmpR + WmZOKkP7UZkpbUUWQS/m7t4zpyZ5RtZKSROoKh9PZ1e/YFcGb6mr0vp8f8w+dy02mTXf4PdNxVJ3 + qJIgV0cXX1e93BSG385zXhkxuWao7Hi2arVBRZFA6ORNJgZAoJBYUMDQKyfnIcPXo3Dz0qETErNP + F4tm/fsFAIVwR29QSwMEFAAAAAgA6aJOUb+wsVh0AQAAbwEAADYAAAAuZ2l0L29iamVjdHMvYjMv + OGM0NWEzNmQyMzQ1MmVlOGZmNDVjZTQ5YzEzMGY2NzRiMmYwOTABbwGQ/ngBjZLBSgMxEIY9C77D + gJcWbAMeRDxZhJ4UFQUPxUOanXWjm8w2M7HWp3ey1bYWD8IedpPMfP98m3lLczg7Pz04hruVNBRh + 2lp+A9t1oB+Tz5wQnnAOE12oKcEVRbE+YuKjw6PDx8Yz6GMh+OiDbYFt6Frs66WxAhUGiizJCjI0 + tAQhSDlqxT6v9c6KV+iGW5gPmN69w7J47WP+GBfsVIME0mQ+aqbQl52Aci0jMCJIgzD7BpR2O40W + 2bs3FpvkedCIdHxhTEWOx8G7REy1jB0Fg3GU2dgyv1EZI17nMG4zv9l2GnW9u2Ef7rh3lPw8i48v + G0tdold0Ao1VXRV1gtU65s0PF247jPBAOem8V1Tp0HXpVWW3k5X0EPdn9hI7raBa85XzZjiGvyxt + 7ewBYDq53wr5J6S2CzME/Rm9FR1uVgpLkMtfNp8HwfpW6OLv7SEsvTRg40rNVL5cAr1Ji4xcXnkN + CAGjsBr+Anme995QSwMEFAAAAAgA6aJOUSvc9DEDAQAA/gAAADYAAAAuZ2l0L29iamVjdHMvYzQv + MGVmYmI0MGU4NzEwNjAyZTc5ZDc4MWM4YjQ0M2MxNzhmMjI3NWMB/gAB/3gBnU9LTsUgFHXcVTB7 + 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 + AOmiTlGf8C1nNAEAAC8BAAA2AAAALmdpdC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1 + YzU1NGExYTllNmY5YTM5ZWMzAS8B0P54ASspSk1VMDYyZTA0MDAzMVHQS88syUzPyy9KZSgy85/5 + z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7VEmQq6OLr6te + bgrD/ckeCa8lk0UXhIRff9XEGuF0S94fqig3MTNPr6CSYWFnTQP/3mtflETbzt18XjmfSTr0JFRJ + QUlZcXxZZlFJaWJOal5ZfEFRfkUlSM+SJUIzmHe+myX3+JeBdFh6z6p2lUlQPUWphaWZRam5qXkl + xXolFSUMWe+nnPq264N4WpD9jYJXoqx6sm79ULXlqUl6Rnrmesn5eWmZ6QwTZuXn+cy2eKhebcEY + yn1k+7W8KzOQVBrrmcBUrj6TxJbOZdY/a0KCQUvcyXP/xSvUAGa0f6BQSwMEFAAAAAgA6aJOUV9+ + 8+1tAQAAaAEAADYAAAAuZ2l0L29iamVjdHMvZmIvNDM5Y2VhMzIwMjQ1NjgyNGI4ZTZhYWFiMzA3 + ODcyMTA1NTkzYjIBaAGX/ngBlZLBSgMxEIY9F3yHgV5asM1NtCeL0JtoqeCh9JBmZ93YTWabmbXU + p3ey1RaLIMIeks3M/N9+m3VNa7i+ub3ow9NeKoowqy1vwDYN6Gb60SaEF1zDVF+UlOCeolgfMfFl + 77L3XHkGfSwEH32wNbANTY1dv1RWoMBAkSVZQYaKdiAEqY3acZ5Xe2fFa+gfueMcPFOUQMrmo1KF + rvEKNNkyAiOCVAjLr4g8UPEXmN69Q5i33m1YbFI6crwaVCINT4zJu3HwLhFTKWNHwWActWxs1mDU + yYgPM4w7ajDb47hR0ykcdoT9TlXy61Z8fD3KahK9oROorForqBEsDqwP37nw2GCEBbVJWe+pQKAy + zypaJydW0iLuas6InXZQqXy53gzH8Juqk6KzAJhN5/8OKe3WDEH/SGdFP26Z6TLI3Q+bq0Gwvhaa + /H48hJ2XCmzcq5nC57ugF2rbIuclHwJCwCishj8BFxr6S1BLAwQUAAAACADpok5RTYPO3CoAAAAp + AAAAFgAAAC5naXQvcmVmcy9oZWFkcy9tYXN0ZXIFwUkRADAIBLB/1Ww5BpDDUfxLaLJXnZ9nLlzb + CCoZdnNjqEaobMDoOh9QSwMEFAAAAAgA6aJOUdYl1KAiAAAAIAAAAB0AAAAuZ2l0L3JlZnMvcmVt + b3Rlcy9vcmlnaW4vSEVBRCtKTbNSKEpNK9YvSs3NL0kt1s8vykzPzNPPTSwuSS3iAgBQSwECFAAU + AAAACADpok5RrtXvKF0CAABuBAAACgAAAAAAAAAAAAAAtoEAAAAALmdpdGlnbm9yZVBLAQIUABQA + AAAIAOmiTlEstqWhXQAAAGoAAAAOAAAAAAAAAAAAAAC2gYUCAABhcHBsaWNhdGlvbi5weVBLAQIU + ABQAAAAIAOmiTlFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAAAAC2gQ4DAABMSUNFTlNFUEsBAhQAFAAA + AAgA6aJOUUhuvDyPAQAAiAMAAAkAAAAAAAAAAAAAALaBwgUAAFJFQURNRS5tZFBLAQIUABQAAAAI + AOmiTlGab84DVwAAAF0AAAAQAAAAAAAAAAAAAAC2gXgHAAByZXF1aXJlbWVudHMudHh0UEsBAhQA + FAAAAAgA6aJOUaOoHCbRAAAAPwEAAAsAAAAAAAAAAAAAALaB/QcAAC5naXQvY29uZmlnUEsBAhQA + FAAAAAgA6aJOUTeLBx8/AAAASQAAABAAAAAAAAAAAAAAALaB9wgAAC5naXQvZGVzY3JpcHRpb25Q + SwECFAAUAAAACADpok5RK2lzpxkAAAAXAAAACQAAAAAAAAAAAAAAtoFkCQAALmdpdC9IRUFEUEsB + AhQAFAAAAAgA6aJOUax80NgkAQAAwQEAAAoAAAAAAAAAAAAAALaBpAkAAC5naXQvaW5kZXhQSwEC + FAAUAAAACADpok5RG7aRBOoAAAC/AQAAEAAAAAAAAAAAAAAAtoHwCgAALmdpdC9wYWNrZWQtcmVm + c1BLAQIUABQAAAAIAOmiTlGFT/gJFwEAAN4BAAAgAAAAAAAAAAAAAAC2gQgMAAAuZ2l0L2hvb2tz + L2FwcGx5cGF0Y2gtbXNnLnNhbXBsZVBLAQIUABQAAAAIAOmiTlHp+MoQ9wEAAIADAAAcAAAAAAAA + AAAAAAC2gV0NAAAuZ2l0L2hvb2tzL2NvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgA6aJOURZi + ts8fBgAA/wwAACQAAAAAAAAAAAAAALaBjg8AAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFu + LnNhbXBsZVBLAQIUABQAAAAIAOmiTlGaDPfAigAAAL0AAAAdAAAAAAAAAAAAAAC2ge8VAAAuZ2l0 + L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIAOmiTlHPwEwCCQEAAKgBAAAgAAAA + AAAAAAAAAAC2gbQWAAAuZ2l0L2hvb2tzL3ByZS1hcHBseXBhdGNoLnNhbXBsZVBLAQIUABQAAAAI + AOmiTlESHWcqiQMAAGYGAAAcAAAAAAAAAAAAAAC2gfsXAAAuZ2l0L2hvb2tzL3ByZS1jb21taXQu + c2FtcGxlUEsBAhQAFAAAAAgA6aJOUUQ/817/AAAAoAEAACIAAAAAAAAAAAAAALaBvhsAAC5naXQv + aG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGVQSwECFAAUAAAACADpok5RBNiPsZ0CAABEBQAA + GgAAAAAAAAAAAAAAtoH9HAAALmdpdC9ob29rcy9wcmUtcHVzaC5zYW1wbGVQSwECFAAUAAAACADp + ok5RhOxYUd8HAAAiEwAAHAAAAAAAAAAAAAAAtoHSHwAALmdpdC9ob29rcy9wcmUtcmViYXNlLnNh + bXBsZVBLAQIUABQAAAAIAOmiTlGSxPiWSQEAACACAAAdAAAAAAAAAAAAAAC2gesnAAAuZ2l0L2hv + b2tzL3ByZS1yZWNlaXZlLnNhbXBsZVBLAQIUABQAAAAIAOmiTlHtEzYw6AIAANQFAAAkAAAAAAAA + AAAAAAC2gW8pAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29tbWl0LW1zZy5zYW1wbGVQSwECFAAUAAAA + CADpok5RGiFEJXUEAAAaDgAAGAAAAAAAAAAAAAAAtoGZLAAALmdpdC9ob29rcy91cGRhdGUuc2Ft + cGxlUEsBAhQAFAAAAAgA6aJOUXc9zSGtAAAA8AAAABEAAAAAAAAAAAAAALaBRDEAAC5naXQvaW5m + by9leGNsdWRlUEsBAhQAFAAAAAgA6aJOUSpLLHSZAAAA0wAAAA4AAAAAAAAAAAAAALaBIDIAAC5n + aXQvbG9ncy9IRUFEUEsBAhQAFAAAAAgA6aJOUSpLLHSZAAAA0wAAABsAAAAAAAAAAAAAALaB5TIA + AC5naXQvbG9ncy9yZWZzL2hlYWRzL21hc3RlclBLAQIUABQAAAAIAOmiTlEqSyx0mQAAANMAAAAi + AAAAAAAAAAAAAAC2gbczAAAuZ2l0L2xvZ3MvcmVmcy9yZW1vdGVzL29yaWdpbi9IRUFEUEsBAhQA + FAAAAAgA6aJOUaY6UR1SBAAATQQAADYAAAAAAAAAAAAAALaBkDQAAC5naXQvb2JqZWN0cy8xMC9k + N2FmOTY1NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNlBLAQIUABQAAAAIAOmiTlH7famK + zAIAAMcCAAA2AAAAAAAAAAAAAAC2gTY5AAAuZ2l0L29iamVjdHMvMTUvNTJiN2ZkMTU3YzNiMDhm + YzAwOTZmMThlNGFkNWVmNDI4YmMxMmJQSwECFAAUAAAACADpok5Rib97EcwAAADHAAAANgAAAAAA + AAAAAAAAtoFWPAAALmdpdC9vYmplY3RzLzE2L2NhOTQ5Yjk2ZGE3YWVhNTVmNTdkNDlkNzU1Njgw + YmYxNDBkNzk1UEsBAhQAFAAAAAgA6aJOUV1WH0u1AAAAsAAAADYAAAAAAAAAAAAAALaBdj0AAC5n + aXQvb2JqZWN0cy8xOS8xYmIzZmJhMDc1ZjQ1NWY0OGU2ZDc2ZGRiNDE2MTZiYzM0MjE3NlBLAQIU + ABQAAAAIAOmiTlHmy6VVvwAAALoAAAA2AAAAAAAAAAAAAAC2gX8+AAAuZ2l0L29iamVjdHMvMjcv + OTZiMGFmZWQ2NTVlMGU1NjFiZWZiZGM1YmVmYTEzZTdkZmRhOWFQSwECFAAUAAAACADpok5R31/M + NfkAAAD0AAAANgAAAAAAAAAAAAAAtoGSPwAALmdpdC9vYmplY3RzLzI4Lzg4ZWMzYzlhNDEzMTEx + OGNmZmYwYzk0NDdmYWMzODUyODIzNDlhUEsBAhQAFAAAAAgA6aJOUSfS34p9AAAAeAAAADYAAAAA + AAAAAAAAALaB30AAAC5naXQvb2JqZWN0cy8yZC9hOWMzNTU1NTM0NThkZDljYmNjMjk1ZjQ4M2Q5 + MjQxYTEyYTgxNlBLAQIUABQAAAAIAOmiTlE++Q7S2AIAANMCAAA2AAAAAAAAAAAAAAC2gbBBAAAu + Z2l0L29iamVjdHMvMzAvNjQ5MGRmMDBmMmUwZGU1NjA1N2NmZDgwYmQ2ZDBmNzFjMTkyNTJQSwEC + FAAUAAAACADpok5Rt3vZN3QCAABvAgAANgAAAAAAAAAAAAAAtoHcRAAALmdpdC9vYmplY3RzLzNh + LzQ2ODcxYjViNzJiNGRiNWRkYTFlZDEzODY0Mjg1Y2ZmYzY2NGM3UEsBAhQAFAAAAAgA6aJOUWls + ZhK1AAAAsAAAADYAAAAAAAAAAAAAALaBpEcAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkw + NjcyOGY2NmE3MWY2MjBhNmQxZTc4YmZlYVBLAQIUABQAAAAIAOmiTlFO544KrgEAAKkBAAA2AAAA + AAAAAAAAAAC2ga1IAAAuZ2l0L29iamVjdHMvM2YvMjE0NjVlZjZlZWZjM2MxZjc4Mjc1Zjk0YzE2 + NTBiNTZlZmQzYmRQSwECFAAUAAAACADpok5R3AlonWUAAABgAAAANgAAAAAAAAAAAAAAtoGvSgAA + LmdpdC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1UEsB + AhQAFAAAAAgA6aJOUX3zWBq1AAAAsAAAADYAAAAAAAAAAAAAALaBaEsAAC5naXQvb2JqZWN0cy80 + MC9mYWVjMTA4YWNkOWFmNjZmNWRhOGE1Njg5NjBhZDRhNjI4ZmExZlBLAQIUABQAAAAIAOmiTlGW + CbN+/gAAAPkAAAA2AAAAAAAAAAAAAAC2gXFMAAAuZ2l0L29iamVjdHMvNDQvZTc0ZmU3ZGQ5ZGZl + MmY2MjI4NzI2MWQ4ZDU2ZDUwMTc4NTRkMThQSwECFAAUAAAACADpok5RPUAqlMwAAADHAAAANgAA + AAAAAAAAAAAAtoHDTQAALmdpdC9vYmplY3RzLzRhL2ExZThhMzQ4NjRjMDhiZGVjNjAwOGUyYzg3 + NjE0NTgxZDUzZjdiUEsBAhQAFAAAAAgA6aJOUUDzmqU1AQAAMAEAADYAAAAAAAAAAAAAALaB404A + AC5naXQvb2JqZWN0cy80Yi8xNDI2MGE4NmNhYTEyZjNjNDNiOTY3ZjQzMzA1MmI0MzVkMjc4NlBL + AQIUABQAAAAIAOmiTlEDpVJ4tAIAAK8CAAA2AAAAAAAAAAAAAAC2gWxQAAAuZ2l0L29iamVjdHMv + NGIvMWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDdQSwECFAAUAAAACADpok5R + ObGiejcCAAAyAgAANgAAAAAAAAAAAAAAtoF0UwAALmdpdC9vYmplY3RzLzU2LzY0YjYyZjJiNGZj + NDU0MzczNGMwZDFhMjU0MGMxNWIwYWY1ZWQzUEsBAhQAFAAAAAgA6aJOUUImqm80AgAALwIAADYA + AAAAAAAAAAAAALaB/1UAAC5naXQvb2JqZWN0cy81Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTVi + ZWZmODAwNDlkMjA2MFBLAQIUABQAAAAIAOmiTlF0xD70wAAAALsAAAA2AAAAAAAAAAAAAAC2gYdY + AAAuZ2l0L29iamVjdHMvNWEvNTk4ZTI4ODNhNzBkZWMyOTBhNDgxY2FhMjM4NmY0YzliYjU5YzJQ + SwECFAAUAAAACADpok5R2mwDGS4BAAApAQAANgAAAAAAAAAAAAAAtoGbWQAALmdpdC9vYmplY3Rz + LzVlLzMxMTk3Yzc3MzY5NzEzMTIxY2Y2NDg4NWViNjhiOGFkMTg1NGU1UEsBAhQAFAAAAAgA6aJO + URbU7+1DAgAAPgIAADYAAAAAAAAAAAAAALaBHVsAAC5naXQvb2JqZWN0cy82My9lMzY2Y2ZlYjMy + ZjljZTc4ZmM0MDNmNjMyZmNhYzY3OTA0YjI5YVBLAQIUABQAAAAIAOmiTlGE3OkXsAAAAKsAAAA2 + AAAAAAAAAAAAAAC2gbRdAAAuZ2l0L29iamVjdHMvNjgvMzRjMTU5ZDJiMDY3MmYyYTdmMDdiODA2 + YzlhMGFiMDUxOWI3MjBQSwECFAAUAAAACADpok5RWqnWYiEAAAAeAAAANgAAAAAAAAAAAAAAtoG4 + XgAALmdpdC9vYmplY3RzLzZhL2VmOTRjYWY2YmFmMDE3NjY1MjNmZDg3MGVhMTUwNTJlMWQ0Njhm + UEsBAhQAFAAAAAgA6aJOUXtFhwRsAgAAZwIAADYAAAAAAAAAAAAAALaBLV8AAC5naXQvb2JqZWN0 + cy83Mi8zNjRmOTlmZTRiZjhkNTI2MmRmM2IxOWIzMzEwMmFlYWE3OTFlNVBLAQIUABQAAAAIAOmi + TlEo2UIpywIAAMYCAAA2AAAAAAAAAAAAAAC2ge1hAAAuZ2l0L29iamVjdHMvNzgvNDI2NDRkMzU2 + ZTkyMjM1NzZhMmU4MmRlNThlYmYwNzk5MmY0MjNQSwECFAAUAAAACADpok5RKrEmPzQBAAAvAQAA + NgAAAAAAAAAAAAAAtoEMZQAALmdpdC9vYmplY3RzLzc5L2Y0NTFiZDU2NDAzZDQyNzNhNTEyMDIw + NWUwOTFmZjJmOTM0ODQxUEsBAhQAFAAAAAgA6aJOUfe/gE3MAAAAxwAAADYAAAAAAAAAAAAAALaB + lGYAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEzZWVmYzNjOWM3 + MFBLAQIUABQAAAAIAOmiTlGSTW8AywAAAMYAAAA2AAAAAAAAAAAAAAC2gbRnAAAuZ2l0L29iamVj + dHMvODMvYmU2MzE4YTkyMTExYmVjMmUxY2FlZmQxYjJkN2ZlNDM1Y2E3NTJQSwECFAAUAAAACADp + ok5RYJdWaK4BAACpAQAANgAAAAAAAAAAAAAAtoHTaAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJm + YjAzMzVkZTM2MjQ0ZmJiMjY4YzgyYmUxNzY3MWRhUEsBAhQAFAAAAAgA6aJOUWZpzYPeAAAA2QAA + ADYAAAAAAAAAAAAAALaB1WoAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMFBLAQIUABQAAAAIAOmiTlEg1rFhdAAAAG8AAAA2AAAAAAAAAAAAAAC2 + gQdsAAAuZ2l0L29iamVjdHMvODcvYzUxYzk0ODY3MjM4NTJlODlkYmJiYzljN2M2Mzk4NmFhOTE5 + MzRQSwECFAAUAAAACADpok5RPB/vkjkAAAA0AAAANgAAAAAAAAAAAAAAtoHPbAAALmdpdC9vYmpl + Y3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3MzE1NmFmZWZhUEsBAhQAFAAAAAgA + 6aJOUT7rdUKPAAAAigAAADYAAAAAAAAAAAAAALaBXG0AAC5naXQvb2JqZWN0cy84ZS8zNDQ0YmQ0 + NjE4Nzg3ZDQwM2MwYjRkYzQ0YzcwNmEwMjAyZWRlZlBLAQIUABQAAAAIAOmiTlHdZ8VBywAAAMYA + AAA2AAAAAAAAAAAAAAC2gT9uAAAuZ2l0L29iamVjdHMvOGYvNmEwYTRmOWQ5OWRhOGViM2RiYjVk + MzdmNmNmMjVkZmVhY2Q4ZDBQSwECFAAUAAAACADpok5RISfNXdUCAADQAgAANgAAAAAAAAAAAAAA + toFebwAALmdpdC9vYmplY3RzLzkwLzlhNmY2ZTRjOWIzOGUxMjc3YjM4MDE1NTBiYzRiN2Q2NmVk + NDk4UEsBAhQAFAAAAAgA6aJOUQlUFZ58AgAAdwIAADYAAAAAAAAAAAAAALaBh3IAAC5naXQvb2Jq + ZWN0cy85MS80MmIyOGUyMmI2MmMwMzFiMzJmYTFjYjE1YzMzZGE3YzkwNWMyMFBLAQIUABQAAAAI + AOmiTlHwqBwKzAAAAMcAAAA2AAAAAAAAAAAAAAC2gVd1AAAuZ2l0L29iamVjdHMvOTUvNDUzZGJl + ZDA5MzExNGUzZTM1YjMzNThiMjE2NzBkMjUwMWI5MDJQSwECFAAUAAAACADpok5RosQR1fQAAADv + AAAANgAAAAAAAAAAAAAAtoF3dgAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdlN2Y5ZTgyNDQyMzhi + M2Q4ZjI2MmQ1NDc4OWIyOGZjUEsBAhQAFAAAAAgA6aJOUX5kVkBlAAAAYAAAADYAAAAAAAAAAAAA + ALaBv3cAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2NGY2MDZmMWQzZWY2 + MTRkOFBLAQIUABQAAAAIAOmiTlH44ZrgiAAAAIMAAAA2AAAAAAAAAAAAAAC2gXh4AAAuZ2l0L29i + amVjdHMvYTEvODk3YzgwMGZiZGQ2ZjQyMjE1ODZjZWQ5ZTc3OTlmMDIxYjU1YzlQSwECFAAUAAAA + CADpok5Ro0IPgeMFAADeBQAANgAAAAAAAAAAAAAAtoFUeQAALmdpdC9vYmplY3RzL2E0L2E0MTI5 + ODAzYjllZTlhMWVlM2ZhMzAxYjU2Njc4Y2FhODcyNDkyUEsBAhQAFAAAAAgA6aJOUbIY8KNvAAAA + agAAADYAAAAAAAAAAAAAALaBi38AAC5naXQvb2JqZWN0cy9hOC82YmVhYTZkYjA0ZWI3NmZhMTlk + Y2IzOGM2N2MxYzUwMjJkMmZlYlBLAQIUABQAAAAIAOmiTlGj6R9xWwAAAFYAAAA2AAAAAAAAAAAA + AAC2gU6AAAAuZ2l0L29iamVjdHMvYTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3 + MThlMTNQSwECFAAUAAAACADpok5RgfqW7c8CAADKAgAANgAAAAAAAAAAAAAAtoH9gAAALmdpdC9v + YmplY3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2UEsBAhQAFAAA + AAgA6aJOUTtIlmG9AAAAuAAAADYAAAAAAAAAAAAAALaBIIQAAC5naXQvb2JqZWN0cy9hYy9hN2Ex + NDIxMmU2OTlmYTZmMTI4NTI4NmQ2NTE2ZDY3ZjQwYTI2NFBLAQIUABQAAAAIAOmiTlG/sLFYdAEA + AG8BAAA2AAAAAAAAAAAAAAC2gTGFAAAuZ2l0L29iamVjdHMvYjMvOGM0NWEzNmQyMzQ1MmVlOGZm + NDVjZTQ5YzEzMGY2NzRiMmYwOTBQSwECFAAUAAAACADpok5RK9z0MQMBAAD+AAAANgAAAAAAAAAA + AAAAtoH5hgAALmdpdC9vYmplY3RzL2M0LzBlZmJiNDBlODcxMDYwMmU3OWQ3ODFjOGI0NDNjMTc4 + ZjIyNzVjUEsBAhQAFAAAAAgA6aJOUe5utYw8AAAANwAAADYAAAAAAAAAAAAAALaBUIgAAC5naXQv + b2JqZWN0cy9jOS9hZDIxZDAzYzZkMjE2OTcwNDQyNzA0ODdiODZmYjI3MDAwMTE2MFBLAQIUABQA + AAAIAOmiTlEpo4PWsAEAAKsBAAA2AAAAAAAAAAAAAAC2geCIAAAuZ2l0L29iamVjdHMvZDEvYWI5 + MjJiZWFjNzMzOGIxNTFlNTA4NjU0M2I4ZWQ1MDEwZWI4ODFQSwECFAAUAAAACADpok5RDqp48agB + AACjAQAANgAAAAAAAAAAAAAAtoHkigAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcy + NjcyZDZiYjc1MjBiMWJhNjhjMmMyUEsBAhQAFAAAAAgA6aJOUX23KJJCAgAAPQIAADYAAAAAAAAA + AAAAALaB4IwAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1OGI2 + ZDBhYmJmOVBLAQIUABQAAAAIAOmiTlFZTf/5igEAAIUBAAA2AAAAAAAAAAAAAAC2gXaPAAAuZ2l0 + L29iamVjdHMvZGYvOTM0ODYwZWIxOTYzMTVhMDU0NTdkN2VhODIwNTU4NDJkYTFmNGZQSwECFAAU + AAAACADpok5RY2Y+ijECAAAsAgAANgAAAAAAAAAAAAAAtoFUkQAALmdpdC9vYmplY3RzL2UxL2Fi + ZjhiN2EzYmMyNTZiZjIwNDU0ZjIyYTExOTgwOGI0YzdhYmU5UEsBAhQAFAAAAAgA6aJOUa+0xwNw + AgAAawIAADYAAAAAAAAAAAAAALaB2ZMAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRiNmJiOGE1 + YzY3MTBmNmUzMzZjMzVhOGI4MTY3N1BLAQIUABQAAAAIAOmiTlEQFwZqNgIAADECAAA2AAAAAAAA + AAAAAAC2gZ2WAAAuZ2l0L29iamVjdHMvZjEvNTgzZThhYWYwODVjNzIwNTRhOTcxYWY5ZDJiZDQy + YjdkMDMwY2JQSwECFAAUAAAACADpok5Rn/AtZzQBAAAvAQAANgAAAAAAAAAAAAAAtoEnmQAALmdp + dC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1YzU1NGExYTllNmY5YTM5ZWMzUEsBAhQA + FAAAAAgA6aJOUV9+8+1tAQAAaAEAADYAAAAAAAAAAAAAALaBr5oAAC5naXQvb2JqZWN0cy9mYi80 + MzljZWEzMjAyNDU2ODI0YjhlNmFhYWIzMDc4NzIxMDU1OTNiMlBLAQIUABQAAAAIAOmiTlFNg87c + KgAAACkAAAAWAAAAAAAAAAAAAAC2gXCcAAAuZ2l0L3JlZnMvaGVhZHMvbWFzdGVyUEsBAhQAFAAA + AAgA6aJOUdYl1KAiAAAAIAAAAB0AAAAAAAAAAAAAALaBzpwAAC5naXQvcmVmcy9yZW1vdGVzL29y + aWdpbi9IRUFEUEsFBgAAAABWAFYAHx4AACudAAAAAA== + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '47968' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-different-skus000002.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 03:24:21 GMT + location: + - https://up-different-skus000002.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_03-24-21Z + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:24 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:27 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:31 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:33 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:36 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:40 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:43 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:45 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:49 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:51 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:55 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":1,"status_text":"Building + and Deploying ''dc7fa89225c94951a58e97276f07f3db''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","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":"up-different-skus000002"}' + headers: + content-length: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:24:57 GMT + location: + - http://up-different-skus000002.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-different-skus000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"dc7fa89225c94951a58e97276f07f3db","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T03:24:24.2154854Z","start_time":"2020-10-15T03:24:24.3775183Z","end_time":"2020-10-15T03:24:59.1364816Z","last_success_end_time":"2020-10-15T03:24:59.1364816Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-different-skus000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-different-skus000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-different-skus000002"}' + headers: + content-length: + - '708' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:25:00 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=3aca1aa4e5c4f1921a1109ccdb00ec81d52556026c45cdfc40306e237f25865a;Path=/;HttpOnly;Domain=up-different-skuscigh6fzulnbeiyvkh5cc772.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-different-skus000002","name":"up-different-skus000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skus000002","state":"Running","hostNames":["up-different-skus000002.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-different-skus000002","repositorySiteName":"up-different-skus000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skus000002.azurewebsites.net","up-different-skus000002.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":"up-different-skus000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skus000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:23:53.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skus000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.165.184.170","possibleInboundIpAddresses":"52.165.184.170","ftpUsername":"up-different-skus000002\\$up-different-skus000002","ftpsHostName":"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211","possibleOutboundIpAddresses":"52.165.184.170,52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-different-skus000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5678' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:25:00 GMT + etag: + - '"1D6A2A29B765475"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": "up-different-skus-2000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '83' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:25: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 03:25:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","name":"up-different-skus-plan000005","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":22767,"name":"up-different-skus-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-081_22767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1473' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:25: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 03:25:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan000005","name":"up-different-skus-plan000005","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":22767,"name":"up-different-skus-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-081_22767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1473' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 03:25: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "F1", "tier": "FREE", "capacity": 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '156' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-different-skus-plan-2000006?api-version=2019-08-01 + response: + body: + string: '{"Code":"Unauthorized","Message":"This subscription has reached the + limit of 1 Free Linux app service plan(s) it can create in this region. Please + choose a different sku or region.","Target":null,"Details":[{"Message":"This + subscription has reached the limit of 1 Free Linux app service plan(s) it + can create in this region. Please choose a different sku or region."},{"Code":"Unauthorized"},{"ErrorEntity":{"ExtendedCode":"52041","MessageTemplate":"This + subscription has reached the limit of {0} Free Linux app service plan(s) it + can create in this region. Please choose a different sku or region.","Parameters":["1"],"Code":"Unauthorized","Message":"This + subscription has reached the limit of 1 Free Linux app service plan(s) it + can create in this region. Please choose a different sku or region."}}],"Innererror":null}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '821' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 03:25:06 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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 401 + message: Unauthorized +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_dotnetcore_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_dotnetcore_e2e.yaml new file mode 100644 index 00000000000..d839c3481d1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_dotnetcore_e2e.yaml @@ -0,0 +1,2732 @@ +interactions: +- request: + body: '{"name": "up-dotnetcoreapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=F1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/calcha_rg_Windows_centralus?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Windows_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Windows_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"name": "up-dotnetcoreapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=F1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "isXenon": + false}, "sku": {"name": "F1", "tier": "FREE"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","name":"up-dotnetcoreplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":51330,"name":"up-dotnetcoreplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Limited","geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-035_51330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","name":"up-dotnetcoreplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":51330,"name":"up-dotnetcoreplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Limited","geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-035_51330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: '{"name": "up-dotnetcoreapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", "value": + "True"}, {"name": "ANCM_ADDITIONAL_ERROR_PAGE_LINK", "value": "https://up-dotnetcoreapp000003.scm.azurewebsites.net/detectors"}], + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '614' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-035.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-dotnetcoreapp000003","repositorySiteName":"up-dotnetcoreapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp000003.azurewebsites.net","up-dotnetcoreapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-dotnetcoreapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:25.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.6.0","possibleInboundIpAddresses":"52.176.6.0","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-035.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","possibleOutboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-035","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-dotnetcoreapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5556' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:43 GMT + etag: + - '"1D6A2B9BC503EB5"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/metadata/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '265' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "app", "properties": {"CURRENT_STACK": "dotnetcore"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/metadata?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"CURRENT_STACK":"dotnetcore"}}' + headers: + cache-control: + - no-cache + content-length: + - '293' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:44 GMT + etag: + - '"1D6A2B9C6BC7FA0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:09: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-035.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-dotnetcoreapp000003","repositorySiteName":"up-dotnetcoreapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp000003.azurewebsites.net","up-dotnetcoreapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-dotnetcoreapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:44.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.6.0","possibleInboundIpAddresses":"52.176.6.0","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-035.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","possibleOutboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-035","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-dotnetcoreapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5356' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:44 GMT + etag: + - '"1D6A2B9C6BC7FA0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:45 GMT + etag: + - '"1D6A2B9C7E8968B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/publishingcredentials/$up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-dotnetcoreapp000003","publishingPassword":"tW2F7GEnsprw1wzKLAouuZ9ip53mreffialMfkYhxeLcluat5HwFuesWng11","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-dotnetcoreapp000003:tW2F7GEnsprw1wzKLAouuZ9ip53mreffialMfkYhxeLcluat5HwFuesWng11@up-dotnetcoreapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09: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: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-035.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-dotnetcoreapp000003","repositorySiteName":"up-dotnetcoreapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp000003.azurewebsites.net","up-dotnetcoreapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-dotnetcoreapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:46.0566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.6.0","possibleInboundIpAddresses":"52.176.6.0","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-035.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","possibleOutboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-035","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-dotnetcoreapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5361' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:09:47 GMT + etag: + - '"1D6A2B9C7E8968B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:09: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-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!binary | + 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 + AAYABgCIAQAA5wYAAAAA + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '2181' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:09:51 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-15_06-09-52Z + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09:55 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:09:57 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:00 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:02 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:05 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:07 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:09 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:12 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:14 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:17 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:19 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:21 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:24 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":1,"status_text":"Building + and Deploying ''e5b85a1f6036484cb0e7cd4d1775a448''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","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":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:26 GMT + expires: + - '-1' + location: + - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"e5b85a1f6036484cb0e7cd4d1775a448","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:09:52.8748936Z","start_time":"2020-10-15T06:09:52.9686977Z","end_time":"2020-10-15T06:10:28.5556903Z","last_success_end_time":"2020-10-15T06:10:28.5556903Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-dotnetcoreapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '681' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappu65ryjff.scm.azurewebsites.net + - ARRAffinitySameSite=b6c882a5e013db277ef434fb044e8255f520bbdc70059876373bab098d534452;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappu65ryjff.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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-035.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-dotnetcoreapp000003","repositorySiteName":"up-dotnetcoreapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp000003.azurewebsites.net","up-dotnetcoreapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-dotnetcoreapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:46.0566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.6.0","possibleInboundIpAddresses":"52.176.6.0","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-035.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","possibleOutboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-035","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-dotnetcoreapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5361' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:29 GMT + etag: + - '"1D6A2B9C7E8968B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-035.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-dotnetcoreapp000003","repositorySiteName":"up-dotnetcoreapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp000003.azurewebsites.net","up-dotnetcoreapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-dotnetcoreapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:46.0566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.6.0","possibleInboundIpAddresses":"52.176.6.0","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-035.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","possibleOutboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-035","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-dotnetcoreapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5361' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:30 GMT + etag: + - '"1D6A2B9C7E8968B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-035.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-dotnetcoreapp000003","repositorySiteName":"up-dotnetcoreapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp000003.azurewebsites.net","up-dotnetcoreapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-dotnetcoreapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:09:46.0566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.6.0","possibleInboundIpAddresses":"52.176.6.0","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-035.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","possibleOutboundIpAddresses":"52.176.6.0,52.176.4.221,52.176.167.184,52.176.4.185,52.165.226.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-035","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-dotnetcoreapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5361' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:30 GMT + etag: + - '"1D6A2B9C7E8968B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:10:30 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: + - '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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/web","name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-dotnetcoreapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3596' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10:31 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 list + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"True","ANCM_ADDITIONAL_ERROR_PAGE_LINK":"https://up-dotnetcoreapp000003.scm.azurewebsites.net/detectors","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '452' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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-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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-dotnetcoreapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-dotnetcoreapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: + - appservice plan show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan000002","name":"up-dotnetcoreplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":51330,"name":"up-dotnetcoreplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-035_51330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_invalid_name.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_invalid_name.yaml index 059e743a19c..488e935fc94 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_invalid_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_invalid_name.yaml @@ -17,8 +17,8 @@ interactions: ParameterSetName: - -n --dryrun User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -35,7 +35,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 22:59:49 GMT + - Thu, 15 Oct 2020 06:10:48 GMT expires: - '-1' pragma: @@ -75,8 +75,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -93,7 +93,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 22:59:50 GMT + - Thu, 15 Oct 2020 06:10:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_in_subscription.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_in_subscription.yaml new file mode 100644 index 00000000000..bee9adaeb4a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_in_subscription.yaml @@ -0,0 +1,2524 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --is-linux + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T06:12:14Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12:15 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: '{"name": "up-name-exists-plan000002", "type": "Microsoft.Web/serverfarms", + "location": "eastus2", "properties": {"skuName": "S1", "needLinuxWorkers": true, + "capacity": 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan create + Connection: + - keep-alive + Content-Length: + - '186' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --sku --is-linux + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/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: + - Thu, 15 Oct 2020 06:12: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-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: + - appservice plan create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --is-linux + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T06:12:14Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12: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: '{"location": "eastus2", "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: + - '158' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --sku --is-linux + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","name":"up-name-exists-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US 2","properties":{"serverFarmId":9600,"name":"up-name-exists-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-EastUS2webspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9600","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: + - '1429' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-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 -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","name":"up-name-exists-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US 2","properties":{"serverFarmId":9600,"name":"up-name-exists-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-EastUS2webspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9600","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: + - '1429' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "up-name-exists-app000003", "type": "Microsoft.Web/sites", "location": + "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/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: + - Thu, 15 Oct 2020 06:12: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-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 -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","name":"up-name-exists-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US 2","properties":{"serverFarmId":9600,"name":"up-name-exists-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-EastUS2webspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9600","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: + - '1429' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "up-name-exists-app000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '68' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "python|3.7", "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: + - '499' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US 2","properties":{"name":"up-name-exists-app000003","state":"Running","hostNames":["up-name-exists-app000003.azurewebsites.net"],"webSpace":"clitest000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-EastUS2webspace/sites/up-name-exists-app000003","repositorySiteName":"up-name-exists-app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-app000003.azurewebsites.net","up-name-exists-app000003.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":"up-name-exists-app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-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/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:34.7266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-name-exists-app000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-name-exists-app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5906' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:51 GMT + etag: + - '"1D6A2BA2CB1ACAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1938' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:12:51 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 list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US 2","properties":{"name":"up-name-exists-app000003","state":"Running","hostNames":["up-name-exists-app000003.azurewebsites.net"],"webSpace":"clitest000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-EastUS2webspace/sites/up-name-exists-app000003","repositorySiteName":"up-name-exists-app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-app000003.azurewebsites.net","up-name-exists-app000003.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":"up-name-exists-app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-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/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:35.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-name-exists-app000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-name-exists-app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '5746' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: '{"name": "up-name-exists-app000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '83' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"Hostname + ''up-name-exists-app000003'' already exists. Please select a different name."}' + headers: + cache-control: + - no-cache + content-length: + - '160' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf50","name":"asdfsdf50","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf50","state":"Running","hostNames":["asdfsdf50.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf50","repositorySiteName":"asdfsdf50","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf50.azurewebsites.net","asdfsdf50.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf50.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf50.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:25:13.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf50","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf50\\$asdfsdf50","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf50.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf21","name":"asdfsdf21","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf21","state":"Running","hostNames":["asdfsdf21.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf21","repositorySiteName":"asdfsdf21","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf21.azurewebsites.net","asdfsdf21.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf21.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf21.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:55.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf21","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf21\\$asdfsdf21","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf21.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf111","name":"asdfsdf111","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf111","state":"Running","hostNames":["asdfsdf111.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf111","repositorySiteName":"asdfsdf111","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf111.azurewebsites.net","asdfsdf111.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf111.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf111.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:14:36.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf111","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf111\\$asdfsdf111","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf111.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf28","name":"asdfsdf28","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf28","state":"Running","hostNames":["asdfsdf28.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf28","repositorySiteName":"asdfsdf28","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf28.azurewebsites.net","asdfsdf28.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.6"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf28.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf28.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T22:09:43.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf28","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf28\\$asdfsdf28","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf28.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf6","name":"asdfsdf6","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf6","state":"Running","hostNames":["asdfsdf6.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf6","repositorySiteName":"asdfsdf6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf6.azurewebsites.net","asdfsdf6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf6.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:05:37.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf6","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf6\\$asdfsdf6","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf59","name":"asdfsdf59","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf59","state":"Running","hostNames":["asdfsdf59.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf59","repositorySiteName":"asdfsdf59","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf59.azurewebsites.net","asdfsdf59.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf59.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf59.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:43:10.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf59","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf59\\$asdfsdf59","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf59.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf5","name":"asdfsdf5","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf5","state":"Running","hostNames":["asdfsdf5.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf5","repositorySiteName":"asdfsdf5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf5.azurewebsites.net","asdfsdf5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf5.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:59:21.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf5","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf5\\$asdfsdf5","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf57","name":"asdfsdf57","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf57","state":"Running","hostNames":["asdfsdf57.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf57","repositorySiteName":"asdfsdf57","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf57.azurewebsites.net","asdfsdf57.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf57.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf57.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:26.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf57","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf57\\$asdfsdf57","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf57.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf30","name":"asdfsdf30","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf30","state":"Running","hostNames":["asdfsdf30.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf30","repositorySiteName":"asdfsdf30","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf30.azurewebsites.net","asdfsdf30.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf30.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf30.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T23:25:37.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf30","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf30\\$asdfsdf30","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf30.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf54","name":"asdfsdf54","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf54","state":"Running","hostNames":["asdfsdf54.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf54","repositorySiteName":"asdfsdf54","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf54.azurewebsites.net","asdfsdf54.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf54.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf54.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:27:07.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf54","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf54\\$asdfsdf54","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf54.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf52","name":"asdfsdf52","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf52","state":"Running","hostNames":["asdfsdf52.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf52","repositorySiteName":"asdfsdf52","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf52.azurewebsites.net","asdfsdf52.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf52.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf52.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:34:47.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf52","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf52\\$asdfsdf52","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf52.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf112","name":"asdfsdf112","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf112","state":"Running","hostNames":["asdfsdf112.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf112","repositorySiteName":"asdfsdf112","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf112.azurewebsites.net","asdfsdf112.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf112.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf112.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:21:31.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf112","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf112\\$asdfsdf112","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf112.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf85","name":"asdfsdf85","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf85","state":"Running","hostNames":["asdfsdf85.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf85","repositorySiteName":"asdfsdf85","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf85.azurewebsites.net","asdfsdf85.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf85.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf85.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:39:46.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf85","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf85\\$asdfsdf85","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf85.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf","name":"asdfsdf","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf","state":"Running","hostNames":["asdfsdf.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf","repositorySiteName":"asdfsdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf.azurewebsites.net","asdfsdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.7"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:21:18.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf\\$asdfsdf","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf42","name":"asdfsdf42","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf42","state":"Running","hostNames":["asdfsdf42.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf42","repositorySiteName":"asdfsdf42","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf42.azurewebsites.net","asdfsdf42.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf42.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf42.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:38:19.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf42","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf42\\$asdfsdf42","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf42.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf27","name":"asdfsdf27","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf27","state":"Running","hostNames":["asdfsdf27.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf27","repositorySiteName":"asdfsdf27","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf27.azurewebsites.net","asdfsdf27.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf27.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf27.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:32:39.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf27","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf27\\$asdfsdf27","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf27.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf43","name":"asdfsdf43","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf43","state":"Running","hostNames":["asdfsdf43.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf43","repositorySiteName":"asdfsdf43","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf43.azurewebsites.net","asdfsdf43.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf43.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf43.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:45:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf43","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf43\\$asdfsdf43","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf43.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf80","name":"asdfsdf80","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf80","state":"Running","hostNames":["asdfsdf80.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf80","repositorySiteName":"asdfsdf80","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf80.azurewebsites.net","asdfsdf80.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf80.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf80.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:14:27.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf80","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf80\\$asdfsdf80","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf80.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf19","name":"asdfsdf19","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf19","state":"Running","hostNames":["asdfsdf19.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf19","repositorySiteName":"asdfsdf19","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf19.azurewebsites.net","asdfsdf19.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf19.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf19.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:42:05.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf19","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf19\\$asdfsdf19","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf19.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf113","name":"asdfsdf113","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf113","state":"Running","hostNames":["asdfsdf113.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf113","repositorySiteName":"asdfsdf113","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf113.azurewebsites.net","asdfsdf113.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf113.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf113.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:20:12.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf113","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf113\\$asdfsdf113","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf113.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf4","name":"asdfsdf4","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf4","state":"Running","hostNames":["asdfsdf4.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf4","repositorySiteName":"asdfsdf4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf4.azurewebsites.net","asdfsdf4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf4.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:56:33.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf4","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf4\\$asdfsdf4","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf7","name":"asdfsdf7","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf7","state":"Running","hostNames":["asdfsdf7.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf7","repositorySiteName":"asdfsdf7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf7.azurewebsites.net","asdfsdf7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf7.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:34:13.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf7","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf7\\$asdfsdf7","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf58","name":"asdfsdf58","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf58","state":"Running","hostNames":["asdfsdf58.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf58","repositorySiteName":"asdfsdf58","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf58.azurewebsites.net","asdfsdf58.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf58.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf58.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:38:46.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf58","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf58\\$asdfsdf58","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf58.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf92","name":"asdfsdf92","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf92","state":"Running","hostNames":["asdfsdf92.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf92","repositorySiteName":"asdfsdf92","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf92.azurewebsites.net","asdfsdf92.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf92.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf92.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:59:33.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf92","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf92\\$asdfsdf92","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf92.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf11","name":"asdfsdf11","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf11","state":"Running","hostNames":["asdfsdf11.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf11","repositorySiteName":"asdfsdf11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf11.azurewebsites.net","asdfsdf11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf11.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:55:20.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf11\\$asdfsdf11","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf3","name":"asdfsdf3","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf3","state":"Running","hostNames":["asdfsdf3.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf3","repositorySiteName":"asdfsdf3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf3.azurewebsites.net","asdfsdf3.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf3.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:53:08.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf3","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf3\\$asdfsdf3","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf13","name":"asdfsdf13","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf13","state":"Running","hostNames":["asdfsdf13.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf13","repositorySiteName":"asdfsdf13","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf13.azurewebsites.net","asdfsdf13.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf13.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf13.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:06.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf13","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf13\\$asdfsdf13","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf13.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf25","name":"asdfsdf25","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf25","state":"Running","hostNames":["asdfsdf25.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf25","repositorySiteName":"asdfsdf25","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf25.azurewebsites.net","asdfsdf25.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf25.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf25.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:26:57.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf25","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf25\\$asdfsdf25","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf25.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf2","name":"asdfsdf2","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf2","state":"Running","hostNames":["asdfsdf2.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf2","repositorySiteName":"asdfsdf2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf2.azurewebsites.net","asdfsdf2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf2.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:45:20.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf2","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf2\\$asdfsdf2","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf55","name":"asdfsdf55","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf55","state":"Running","hostNames":["asdfsdf55.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf55","repositorySiteName":"asdfsdf55","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf55.azurewebsites.net","asdfsdf55.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf55.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf55.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:32:32.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf55","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf55\\$asdfsdf55","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf55.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf40","name":"asdfsdf40","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf40","state":"Running","hostNames":["asdfsdf40.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf40","repositorySiteName":"asdfsdf40","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf40.azurewebsites.net","asdfsdf40.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf40.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf40.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:20:03.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf40","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf40\\$asdfsdf40","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf40.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf12","name":"asdfsdf12","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf12","state":"Running","hostNames":["asdfsdf12.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf12","repositorySiteName":"asdfsdf12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf12.azurewebsites.net","asdfsdf12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf12.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:08:25.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf12\\$asdfsdf12","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf16","name":"asdfsdf16","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf16","state":"Running","hostNames":["asdfsdf16.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf16","repositorySiteName":"asdfsdf16","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf16.azurewebsites.net","asdfsdf16.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf16.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf16.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T03:04:00.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf16","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf16\\$asdfsdf16","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf16.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf56","name":"asdfsdf56","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf56","state":"Running","hostNames":["asdfsdf56.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf56","repositorySiteName":"asdfsdf56","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf56.azurewebsites.net","asdfsdf56.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf56.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf56.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:40.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf56","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf56\\$asdfsdf56","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf56.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf22","name":"asdfsdf22","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf22","state":"Running","hostNames":["asdfsdf22.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf22","repositorySiteName":"asdfsdf22","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf22.azurewebsites.net","asdfsdf22.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf22.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf22.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:53:18.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf22","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf22\\$asdfsdf22","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf22.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf61","name":"asdfsdf61","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf61","state":"Running","hostNames":["asdfsdf61.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf61","repositorySiteName":"asdfsdf61","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf61.azurewebsites.net","asdfsdf61.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf61.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf61.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:07:53.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf61","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf61\\$asdfsdf61","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf61.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf90","name":"asdfsdf90","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf90","state":"Running","hostNames":["asdfsdf90.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf90","repositorySiteName":"asdfsdf90","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf90.azurewebsites.net","asdfsdf90.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf90.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf90.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:52:58.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf90","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf90\\$asdfsdf90","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf90.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf51","name":"asdfsdf51","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf51","state":"Running","hostNames":["asdfsdf51.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf51","repositorySiteName":"asdfsdf51","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf51.azurewebsites.net","asdfsdf51.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf51.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf51.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:19:44.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf51","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf51\\$asdfsdf51","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf51.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf114","name":"asdfsdf114","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf114","state":"Running","hostNames":["asdfsdf114.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf114","repositorySiteName":"asdfsdf114","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf114.azurewebsites.net","asdfsdf114.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf114.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf114.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:45.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf114","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf114\\$asdfsdf114","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf114.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf24","name":"asdfsdf24","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf24","state":"Running","hostNames":["asdfsdf24.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf24","repositorySiteName":"asdfsdf24","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf24.azurewebsites.net","asdfsdf24.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf24.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf24.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:18:42.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf24","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf24\\$asdfsdf24","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf24.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf15","name":"asdfsdf15","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf15","state":"Running","hostNames":["asdfsdf15.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf15","repositorySiteName":"asdfsdf15","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf15.azurewebsites.net","asdfsdf15.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf15.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf15.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:13:11.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf15","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf15\\$asdfsdf15","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf15.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf10","name":"asdfsdf10","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf10","state":"Running","hostNames":["asdfsdf10.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf10","repositorySiteName":"asdfsdf10","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf10.azurewebsites.net","asdfsdf10.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf10.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf10.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:04:58.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf10","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf10\\$asdfsdf10","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf10.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf60","name":"asdfsdf60","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf60","state":"Running","hostNames":["asdfsdf60.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf60","repositorySiteName":"asdfsdf60","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf60.azurewebsites.net","asdfsdf60.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf60.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf60.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:41:49.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf60","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf60\\$asdfsdf60","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf60.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf23","name":"asdfsdf23","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf23","state":"Running","hostNames":["asdfsdf23.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf23","repositorySiteName":"asdfsdf23","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf23.azurewebsites.net","asdfsdf23.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf23.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf23.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:15:03.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf23","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf23\\$asdfsdf23","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf23.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf14","name":"asdfsdf14","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf14","state":"Running","hostNames":["asdfsdf14.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf14","repositorySiteName":"asdfsdf14","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf14.azurewebsites.net","asdfsdf14.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf14.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf14.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:46.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf14","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf14\\$asdfsdf14","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf14.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf8","name":"asdfsdf8","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf8","state":"Running","hostNames":["asdfsdf8.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf8","repositorySiteName":"asdfsdf8","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf8.azurewebsites.net","asdfsdf8.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf8.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf8.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:37:40.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf8","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf8\\$asdfsdf8","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf8.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmt5ckrakzq6yx6yq7/providers/Microsoft.Web/sites/up-pythonappb5rja76sonzm","name":"up-pythonappb5rja76sonzm","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappb5rja76sonzm","state":"Running","hostNames":["up-pythonappb5rja76sonzm.azurewebsites.net"],"webSpace":"clitestmt5ckrakzq6yx6yq7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestmt5ckrakzq6yx6yq7-CentralUSwebspace/sites/up-pythonappb5rja76sonzm","repositorySiteName":"up-pythonappb5rja76sonzm","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappb5rja76sonzm.azurewebsites.net","up-pythonappb5rja76sonzm.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappb5rja76sonzm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappb5rja76sonzm.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/clitestmt5ckrakzq6yx6yq7/providers/Microsoft.Web/serverfarms/up-pythonplan7jqmfoikwik","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:44.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappb5rja76sonzm","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappb5rja76sonzm\\$up-pythonappb5rja76sonzm","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestmt5ckrakzq6yx6yq7","defaultHostName":"up-pythonappb5rja76sonzm.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US 2","properties":{"name":"up-name-exists-app000003","state":"Running","hostNames":["up-name-exists-app000003.azurewebsites.net"],"webSpace":"clitest000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-EastUS2webspace/sites/up-name-exists-app000003","repositorySiteName":"up-name-exists-app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-app000003.azurewebsites.net","up-name-exists-app000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-name-exists-app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-app000003.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/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:35.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-name-exists-app000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-name-exists-app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '481316' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12:53 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: + - 02c46904-3d77-4cc0-a9e3-1cb1574382ff + - ac33a192-de02-4bf8-a9ab-32f43063e578 + - 820df242-170a-42ce-8d7f-394a51642c58 + - 770ecdc1-ab25-4e8a-9cd1-61cb02b9b02d + - 5e100dba-b0d9-44e6-98a1-0e9b32c4e5e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","name":"up-name-exists-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US 2","properties":{"serverFarmId":9600,"name":"up-name-exists-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-EastUS2webspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9600","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: + - '1429' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/config/web","name":"up-name-exists-app000003","type":"Microsoft.Web/sites/config","location":"East + 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":"","powerShellVersion":"","linuxFxVersion":"python|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-name-exists-app000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3648' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: '{"name": "up-name-exists-app000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '83' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"Hostname + ''up-name-exists-app000003'' already exists. Please select a different name."}' + headers: + cache-control: + - no-cache + content-length: + - '160' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmt5ckrakzq6yx6yq7/providers/Microsoft.Web/sites/up-pythonappb5rja76sonzm","name":"up-pythonappb5rja76sonzm","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappb5rja76sonzm","state":"Running","hostNames":["up-pythonappb5rja76sonzm.azurewebsites.net"],"webSpace":"clitestmt5ckrakzq6yx6yq7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestmt5ckrakzq6yx6yq7-CentralUSwebspace/sites/up-pythonappb5rja76sonzm","repositorySiteName":"up-pythonappb5rja76sonzm","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappb5rja76sonzm.azurewebsites.net","up-pythonappb5rja76sonzm.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappb5rja76sonzm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappb5rja76sonzm.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/clitestmt5ckrakzq6yx6yq7/providers/Microsoft.Web/serverfarms/up-pythonplan7jqmfoikwik","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:44.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappb5rja76sonzm","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappb5rja76sonzm\\$up-pythonappb5rja76sonzm","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestmt5ckrakzq6yx6yq7","defaultHostName":"up-pythonappb5rja76sonzm.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf50","name":"asdfsdf50","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf50","state":"Running","hostNames":["asdfsdf50.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf50","repositorySiteName":"asdfsdf50","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf50.azurewebsites.net","asdfsdf50.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf50.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf50.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:25:13.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf50","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf50\\$asdfsdf50","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf50.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf21","name":"asdfsdf21","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf21","state":"Running","hostNames":["asdfsdf21.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf21","repositorySiteName":"asdfsdf21","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf21.azurewebsites.net","asdfsdf21.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf21.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf21.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:55.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf21","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf21\\$asdfsdf21","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf21.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf111","name":"asdfsdf111","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf111","state":"Running","hostNames":["asdfsdf111.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf111","repositorySiteName":"asdfsdf111","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf111.azurewebsites.net","asdfsdf111.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf111.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf111.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:14:36.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf111","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf111\\$asdfsdf111","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf111.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf28","name":"asdfsdf28","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf28","state":"Running","hostNames":["asdfsdf28.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf28","repositorySiteName":"asdfsdf28","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf28.azurewebsites.net","asdfsdf28.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.6"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf28.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf28.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T22:09:43.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf28","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf28\\$asdfsdf28","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf28.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf6","name":"asdfsdf6","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf6","state":"Running","hostNames":["asdfsdf6.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf6","repositorySiteName":"asdfsdf6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf6.azurewebsites.net","asdfsdf6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf6.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:05:37.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf6","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf6\\$asdfsdf6","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf59","name":"asdfsdf59","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf59","state":"Running","hostNames":["asdfsdf59.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf59","repositorySiteName":"asdfsdf59","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf59.azurewebsites.net","asdfsdf59.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf59.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf59.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:43:10.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf59","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf59\\$asdfsdf59","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf59.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf5","name":"asdfsdf5","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf5","state":"Running","hostNames":["asdfsdf5.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf5","repositorySiteName":"asdfsdf5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf5.azurewebsites.net","asdfsdf5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf5.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:59:21.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf5","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf5\\$asdfsdf5","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf57","name":"asdfsdf57","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf57","state":"Running","hostNames":["asdfsdf57.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf57","repositorySiteName":"asdfsdf57","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf57.azurewebsites.net","asdfsdf57.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf57.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf57.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:26.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf57","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf57\\$asdfsdf57","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf57.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf30","name":"asdfsdf30","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf30","state":"Running","hostNames":["asdfsdf30.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf30","repositorySiteName":"asdfsdf30","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf30.azurewebsites.net","asdfsdf30.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf30.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf30.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T23:25:37.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf30","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf30\\$asdfsdf30","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf30.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf54","name":"asdfsdf54","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf54","state":"Running","hostNames":["asdfsdf54.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf54","repositorySiteName":"asdfsdf54","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf54.azurewebsites.net","asdfsdf54.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf54.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf54.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:27:07.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf54","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf54\\$asdfsdf54","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf54.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf52","name":"asdfsdf52","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf52","state":"Running","hostNames":["asdfsdf52.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf52","repositorySiteName":"asdfsdf52","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf52.azurewebsites.net","asdfsdf52.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf52.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf52.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:34:47.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf52","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf52\\$asdfsdf52","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf52.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf112","name":"asdfsdf112","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf112","state":"Running","hostNames":["asdfsdf112.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf112","repositorySiteName":"asdfsdf112","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf112.azurewebsites.net","asdfsdf112.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf112.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf112.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:21:31.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf112","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf112\\$asdfsdf112","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf112.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf85","name":"asdfsdf85","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf85","state":"Running","hostNames":["asdfsdf85.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf85","repositorySiteName":"asdfsdf85","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf85.azurewebsites.net","asdfsdf85.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf85.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf85.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:39:46.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf85","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf85\\$asdfsdf85","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf85.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf","name":"asdfsdf","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf","state":"Running","hostNames":["asdfsdf.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf","repositorySiteName":"asdfsdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf.azurewebsites.net","asdfsdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.7"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:21:18.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf\\$asdfsdf","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf42","name":"asdfsdf42","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf42","state":"Running","hostNames":["asdfsdf42.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf42","repositorySiteName":"asdfsdf42","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf42.azurewebsites.net","asdfsdf42.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf42.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf42.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:38:19.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf42","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf42\\$asdfsdf42","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf42.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf27","name":"asdfsdf27","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf27","state":"Running","hostNames":["asdfsdf27.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf27","repositorySiteName":"asdfsdf27","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf27.azurewebsites.net","asdfsdf27.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf27.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf27.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:32:39.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf27","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf27\\$asdfsdf27","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf27.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf43","name":"asdfsdf43","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf43","state":"Running","hostNames":["asdfsdf43.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf43","repositorySiteName":"asdfsdf43","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf43.azurewebsites.net","asdfsdf43.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf43.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf43.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:45:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf43","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf43\\$asdfsdf43","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf43.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf80","name":"asdfsdf80","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf80","state":"Running","hostNames":["asdfsdf80.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf80","repositorySiteName":"asdfsdf80","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf80.azurewebsites.net","asdfsdf80.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf80.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf80.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:14:27.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf80","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf80\\$asdfsdf80","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf80.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf19","name":"asdfsdf19","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf19","state":"Running","hostNames":["asdfsdf19.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf19","repositorySiteName":"asdfsdf19","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf19.azurewebsites.net","asdfsdf19.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf19.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf19.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:42:05.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf19","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf19\\$asdfsdf19","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf19.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf113","name":"asdfsdf113","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf113","state":"Running","hostNames":["asdfsdf113.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf113","repositorySiteName":"asdfsdf113","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf113.azurewebsites.net","asdfsdf113.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf113.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf113.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:20:12.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf113","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf113\\$asdfsdf113","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf113.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf4","name":"asdfsdf4","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf4","state":"Running","hostNames":["asdfsdf4.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf4","repositorySiteName":"asdfsdf4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf4.azurewebsites.net","asdfsdf4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf4.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:56:33.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf4","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf4\\$asdfsdf4","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf7","name":"asdfsdf7","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf7","state":"Running","hostNames":["asdfsdf7.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf7","repositorySiteName":"asdfsdf7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf7.azurewebsites.net","asdfsdf7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf7.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:34:13.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf7","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf7\\$asdfsdf7","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf58","name":"asdfsdf58","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf58","state":"Running","hostNames":["asdfsdf58.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf58","repositorySiteName":"asdfsdf58","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf58.azurewebsites.net","asdfsdf58.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf58.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf58.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:38:46.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf58","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf58\\$asdfsdf58","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf58.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf92","name":"asdfsdf92","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf92","state":"Running","hostNames":["asdfsdf92.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf92","repositorySiteName":"asdfsdf92","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf92.azurewebsites.net","asdfsdf92.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf92.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf92.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:59:33.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf92","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf92\\$asdfsdf92","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf92.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf11","name":"asdfsdf11","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf11","state":"Running","hostNames":["asdfsdf11.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf11","repositorySiteName":"asdfsdf11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf11.azurewebsites.net","asdfsdf11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf11.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:55:20.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf11\\$asdfsdf11","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf3","name":"asdfsdf3","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf3","state":"Running","hostNames":["asdfsdf3.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf3","repositorySiteName":"asdfsdf3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf3.azurewebsites.net","asdfsdf3.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf3.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:53:08.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf3","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf3\\$asdfsdf3","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf13","name":"asdfsdf13","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf13","state":"Running","hostNames":["asdfsdf13.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf13","repositorySiteName":"asdfsdf13","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf13.azurewebsites.net","asdfsdf13.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf13.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf13.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:06.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf13","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf13\\$asdfsdf13","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf13.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf25","name":"asdfsdf25","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf25","state":"Running","hostNames":["asdfsdf25.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf25","repositorySiteName":"asdfsdf25","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf25.azurewebsites.net","asdfsdf25.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf25.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf25.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:26:57.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf25","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf25\\$asdfsdf25","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf25.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf2","name":"asdfsdf2","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf2","state":"Running","hostNames":["asdfsdf2.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf2","repositorySiteName":"asdfsdf2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf2.azurewebsites.net","asdfsdf2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf2.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:45:20.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf2","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf2\\$asdfsdf2","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf55","name":"asdfsdf55","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf55","state":"Running","hostNames":["asdfsdf55.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf55","repositorySiteName":"asdfsdf55","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf55.azurewebsites.net","asdfsdf55.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf55.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf55.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:32:32.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf55","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf55\\$asdfsdf55","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf55.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf40","name":"asdfsdf40","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf40","state":"Running","hostNames":["asdfsdf40.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf40","repositorySiteName":"asdfsdf40","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf40.azurewebsites.net","asdfsdf40.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf40.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf40.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:20:03.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf40","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf40\\$asdfsdf40","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf40.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf12","name":"asdfsdf12","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf12","state":"Running","hostNames":["asdfsdf12.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf12","repositorySiteName":"asdfsdf12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf12.azurewebsites.net","asdfsdf12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf12.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:08:25.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf12\\$asdfsdf12","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf16","name":"asdfsdf16","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf16","state":"Running","hostNames":["asdfsdf16.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf16","repositorySiteName":"asdfsdf16","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf16.azurewebsites.net","asdfsdf16.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf16.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf16.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T03:04:00.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf16","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf16\\$asdfsdf16","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf16.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf56","name":"asdfsdf56","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf56","state":"Running","hostNames":["asdfsdf56.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf56","repositorySiteName":"asdfsdf56","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf56.azurewebsites.net","asdfsdf56.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf56.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf56.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:40.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf56","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf56\\$asdfsdf56","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf56.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf22","name":"asdfsdf22","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf22","state":"Running","hostNames":["asdfsdf22.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf22","repositorySiteName":"asdfsdf22","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf22.azurewebsites.net","asdfsdf22.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf22.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf22.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:53:18.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf22","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf22\\$asdfsdf22","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf22.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf61","name":"asdfsdf61","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf61","state":"Running","hostNames":["asdfsdf61.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf61","repositorySiteName":"asdfsdf61","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf61.azurewebsites.net","asdfsdf61.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf61.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf61.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:07:53.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf61","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf61\\$asdfsdf61","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf61.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf90","name":"asdfsdf90","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf90","state":"Running","hostNames":["asdfsdf90.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf90","repositorySiteName":"asdfsdf90","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf90.azurewebsites.net","asdfsdf90.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf90.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf90.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:52:58.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf90","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf90\\$asdfsdf90","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf90.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf51","name":"asdfsdf51","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf51","state":"Running","hostNames":["asdfsdf51.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf51","repositorySiteName":"asdfsdf51","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf51.azurewebsites.net","asdfsdf51.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf51.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf51.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:19:44.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf51","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf51\\$asdfsdf51","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf51.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf114","name":"asdfsdf114","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf114","state":"Running","hostNames":["asdfsdf114.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf114","repositorySiteName":"asdfsdf114","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf114.azurewebsites.net","asdfsdf114.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf114.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf114.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:45.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf114","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf114\\$asdfsdf114","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf114.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf24","name":"asdfsdf24","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf24","state":"Running","hostNames":["asdfsdf24.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf24","repositorySiteName":"asdfsdf24","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf24.azurewebsites.net","asdfsdf24.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf24.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf24.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:18:42.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf24","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf24\\$asdfsdf24","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf24.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf15","name":"asdfsdf15","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf15","state":"Running","hostNames":["asdfsdf15.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf15","repositorySiteName":"asdfsdf15","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf15.azurewebsites.net","asdfsdf15.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf15.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf15.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:13:11.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf15","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf15\\$asdfsdf15","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf15.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf10","name":"asdfsdf10","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf10","state":"Running","hostNames":["asdfsdf10.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf10","repositorySiteName":"asdfsdf10","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf10.azurewebsites.net","asdfsdf10.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf10.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf10.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:04:58.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf10","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf10\\$asdfsdf10","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf10.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf60","name":"asdfsdf60","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf60","state":"Running","hostNames":["asdfsdf60.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf60","repositorySiteName":"asdfsdf60","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf60.azurewebsites.net","asdfsdf60.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf60.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf60.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:41:49.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf60","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf60\\$asdfsdf60","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf60.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf23","name":"asdfsdf23","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf23","state":"Running","hostNames":["asdfsdf23.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf23","repositorySiteName":"asdfsdf23","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf23.azurewebsites.net","asdfsdf23.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf23.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf23.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:15:03.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf23","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf23\\$asdfsdf23","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf23.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf14","name":"asdfsdf14","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf14","state":"Running","hostNames":["asdfsdf14.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf14","repositorySiteName":"asdfsdf14","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf14.azurewebsites.net","asdfsdf14.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf14.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf14.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:46.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf14","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf14\\$asdfsdf14","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf14.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf8","name":"asdfsdf8","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf8","state":"Running","hostNames":["asdfsdf8.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf8","repositorySiteName":"asdfsdf8","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf8.azurewebsites.net","asdfsdf8.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf8.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf8.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:37:40.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf8","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf8\\$asdfsdf8","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf8.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US 2","properties":{"name":"up-name-exists-app000003","state":"Running","hostNames":["up-name-exists-app000003.azurewebsites.net"],"webSpace":"clitest000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-EastUS2webspace/sites/up-name-exists-app000003","repositorySiteName":"up-name-exists-app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-app000003.azurewebsites.net","up-name-exists-app000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-name-exists-app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-app000003.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/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:35.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-name-exists-app000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-name-exists-app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '481316' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12:57 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: + - 934bbaab-e9a9-4f6b-a9fa-9379afd440e4 + - 3d94e0db-b307-430e-8d1a-51e850c58ae5 + - 6e489bad-7434-403f-9035-290d95f2f8e5 + - d3af8f1a-49ed-442c-a7a5-03f01dce1725 + - 8fec11d0-43ea-471e-b4a1-3558e0b2436f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","name":"up-name-exists-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US 2","properties":{"serverFarmId":9600,"name":"up-name-exists-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-EastUS2webspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9600","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: + - '1429' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/config/web","name":"up-name-exists-app000003","type":"Microsoft.Web/sites/config","location":"East + 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":"","powerShellVersion":"","linuxFxVersion":"python|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-name-exists-app000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3648' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: '{"location": "eastus2", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '158' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","name":"up-name-exists-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"eastus2","properties":{"serverFarmId":9600,"name":"up-name-exists-plan000002","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":"clitest000001-EastUS2webspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9600","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: + - '1470' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:13: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-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/publishingcredentials/$up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites/publishingcredentials","location":"East + US 2","properties":{"name":null,"publishingUserName":"$up-name-exists-app000003","publishingPassword":"cxwcGiFpaqbShkBSkpDiCxe0bmlqo2iFARekwwxgs5NfoiflNmcMfg45t9v3","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-name-exists-app000003:cxwcGiFpaqbShkBSkpDiCxe0bmlqo2iFARekwwxgs5NfoiflNmcMfg45t9v3@up-name-exists-app000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '818' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:13: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US 2","properties":{"name":"up-name-exists-app000003","state":"Running","hostNames":["up-name-exists-app000003.azurewebsites.net"],"webSpace":"clitest000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-EastUS2webspace/sites/up-name-exists-app000003","repositorySiteName":"up-name-exists-app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-app000003.azurewebsites.net","up-name-exists-app000003.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":"up-name-exists-app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-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/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:35.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-name-exists-app000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-name-exists-app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5706' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:13:03 GMT + etag: + - '"1D6A2BA2CB1ACAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1938' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:13:03 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: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!binary | + 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 + ZWE1NWY1N2Q0OWQ3NTU2ODBiZjE0MGQ3OTUBxwA4/3gBKylKTVUwtDRjMDQwMDMxUdBLzyzJTM/L + L0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtU + SZCro4uvq15uCsOlvopL9ju6i7arFV3bXaqwcVfGoUNQRYkFBTmZyYklmfl5egWVDCuyXy27zfK6 + 7Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5Jd5b9T8va22zUEgFAHBa + UhJQSwMEFAAAAAgAh7lOUV1WH0u1AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvMTkvMWJiM2ZiYTA3 + NWY0NTVmNDhlNmQ3NmRkYjQxNjE2YmMzNDIxNzYBsABP/3gBjY5BasMwEEW71inmAi0zo5ElQQkh + u6xDu5c9o9RQ20FR2+vHhR6gqwcf3udN27LMHdjjU29mEHOVQKOGQdCrcPQlECNjMMxUK9fsJQm5 + W2m2dhCxKNWiatZqXAfmFHkgTfuFBqSYgiglV776x9bgZG1VeLd27/A6fv/yeF3K/PkybcsBKBDl + zAkFnjEhun3d+7r90/SE/s90bzct3eB8vsCPjTBta52v7gHsuEbxUEsDBBQAAAAIAIe5TlHmy6VV + vwAAALoAAAA2AAAALmdpdC9vYmplY3RzLzI3Lzk2YjBhZmVkNjU1ZTBlNTYxYmVmYmRjNWJlZmEx + M2U3ZGZkYTlhAboARf94AbXPTU7EMAwFYNY9hS8wVX47toQQWxaIBSdwHZeJNG2qNF3M7YlAHAEv + Pz29J0tZ19zAET61qgouMYmP/XyImBLJLOIoLgF9IhcsW8dop2HnqluDyJFQHaLnq0nao4YDWmF2 + HqclCM1zJHEDn+1WKrxnqeUoS4OPXTf4LGcVhef1j0vX4wdfz0PrMW6l6n5/jF+53c55lLK+gA1k + jbHOTnAxV2OGrv2Lpv/VP7xtuWW+w+/QN0hEZOJQSwMEFAAAAAgAh7lOUd9fzDX5AAAA9AAAADYA + AAAuZ2l0L29iamVjdHMvMjgvODhlYzNjOWE0MTMxMTE4Y2ZmZjBjOTQ0N2ZhYzM4NTI4MjM0OWEB + 9AAL/3gBjZFBS8QwEIU9C/6HEFjQS+tBEKQrFFvcQtnDttZLIGTbsQ22SUimqf337i6r6LoH5/hg + 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 + dC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1AWAAn/94 + AUvKyU9SsLBgSM7JTM62tTXTM+dyy0ksBjIN9Qz0jLgyS4pTEvPSU4vyS4ttbYEiJlxemXlZiUa2 + tkZ6hgZcvolF2aUFwYlpqWAdXOGpRdlVqaXpILWGJnqGAG83HG5QSwMEFAAAAAgAh7lOUX3zWBq1 + AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvNDAvZmFlYzEwOGFjZDlhZjY2ZjVkYThhNTY4OTYwYWQ0 + YTYyOGZhMWYBsABP/3gBnY5BasQwDEW7zim0LxRLkZwJDKXQbS+hKDZj2thTR9Pz171CN5/Hh/f5 + 1o6jOJCEJ+8pgZouikxIKa5r1piRLkKXuEfBEUvmoBR5umtP1UFi5C1Spo2zsfC8zGxhRyXhYChb + 0Cxpnyd9+K11eE/3m57wUSpc7Y+/Sn07ivV2tuwv1o5XQJmRVw4o8BwohGm046Snf+rDrz+pO3iD + ga6ljqnvR7HP07X79AubyVBMUEsDBBQAAAAIAIe5TlGWCbN+/gAAAPkAAAA2AAAALmdpdC9vYmpl + Y3RzLzQ0L2U3NGZlN2RkOWRmZTJmNjIyODcyNjFkOGQ1NmQ1MDE3ODU0ZDE4AfkABv94AW2Py2rD + MBBFu/ZXDHTdVA9LI0EogULaTT5iJI0SE78qy2399zWF7rq6XDjnwo3TMHQVtMSHWpjBsJbSY0TU + 1qPUUsmYbeuc4WBdcJSkMy2bZqbCYwWF3gZBmZM1hgUbKwPnkKLZg6RmTDmRpz/eOt1GaXxSQVhU + WRFmgcEJGz0JCsJIH1CJhtZ6mwq8TmWD8/TVc4Fj3Mtp2cZK37E9jFxfQLZeGasQFTwJFKKJv4fq + jr919X0NcBynwnO/na5dva3hsAP/aM2Fy5VhXvseCn+svFR4VJDLNEDgMqZPLkt9HmjZp5vm0o3d + QD2ce1ruQPP8A4ZAZOBQSwMEFAAAAAgAh7lOUT1AKpTMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMv + NGEvYTFlOGEzNDg2NGMwOGJkZWM2MDA4ZTJjODc2MTQ1ODFkNTNmN2IBxwA4/3gBKylKTVUwtDRj + MDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/ + 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 + 6fqoZ0/vVoSqu5o7kXUa3AubGCQs4VJytXzi93di6XfD2/ZLZXjKFsIWByCyV/NhUp5UG+aGfWzk + 3JbJcPT0LVTLmZ4c2tIPDu+r98NjaUp4l2CxY7XzYWn2Sb/UY4rlRt5Rluy9mW9kTm3e3II9Wv7d + OsVzofU3nhvkOatRMm9hP/4hVEXDFqa2zooFqw0O2GR/XIsnYzZv8Vn3NN/XoUOE7dF/VmazJ0Ew + GH3fOBBq5wLj9u59KkK2aKVJqbjd8TL2MDyR0R8K+Thb+Fd5L6nbsk4IGoQwNJzUNXxWsV7Gm8Ad + wlS9lKieN6X0zMUz/+EEbxx48+qdy/3ZzHSNfy/GBbc06ijYmcRYm1OW/gRujeDIUEsDBBQAAAAI + AIe5TlGE3OkXsAAAAKsAAAA2AAAALmdpdC9vYmplY3RzLzY4LzM0YzE1OWQyYjA2NzJmMmE3ZjA3 + YjgwNmM5YTBhYjA1MTliNzIwAasAVP94AY3OQY7CMAyFYdY5hS8AitPaSaTRCLHgCOydxIUKSqs0 + M+enLNiz+qUnfdLL8zSNDZyjXauqQNohRp+97zh67NBhHrgPgTRxSEEKBuqVzCJVnxv0kZOVQQsT + qVViTDqkkmmLYKe+DEWiGPlrt7nCSeuzwEXr2uAn/b97vE4yPg55nn4B++iInA8Me+utNdu6/Wv6 + nWSH/JHmJOuY4fyQ9Q6yLAfzAr07RzxQSwMEFAAAAAgAh7lOUVqp1mIhAAAAHgAAADYAAAAuZ2l0 + L29iamVjdHMvNmEvZWY5NGNhZjZiYWYwMTc2NjUyM2ZkODcwZWExNTA1MmUxZDQ2OGarYPQ+ddI/ + yMAkseC0p865bVtNLxibXDJ+wsTgZcC6CwBQSwMEFAAAAAgAh7lOUXtFhwRsAgAAZwIAADYAAAAu + Z2l0L29iamVjdHMvNzIvMzY0Zjk5ZmU0YmY4ZDUyNjJkZjNiMTliMzMxMDJhZWFhNzkxZTUBZwKY + /XgBbVPBbtQwEOXsr7BUThWbgFQ4cCwFqVJVVZRyQWjlOJPEXcdj2bPbNV/Pc7ILHLg4npk34zcz + L53nTr97e/X+1YW+LkIby3N0nnrdao7iZvdrud/c3ekB/qy221issRNtt626bGL5Ybn/qS5fx9JY + b3JW6kJ/0nQUCtlxyABlrs4blyW5bi/wonw0dmdGF0bVPBSZOCgKh1Z1e+f7VvV0IM9xQ+OYYSEV + J78Ez6aHY3U368e7rlU4Ply1KpokiOc142BSJQnYxoWBW9W4kMV4NNjYYVxDldtDuT0FEiz9lPcA + FS0TZVob1yaRfklO0JfuijY6Lqx1tslF0UPiGU6hOXojVKt0NDCS/qmtl+5yrYsJ0RudWRuYrF14 + Jiu6R2rLCCd4Bs44a1AaUJ1NcANlqQONZCvtP6S15zGr6OIGl0aOstx78oSdyuTypncJD3AqSxS5 + T8EJ6GbBLiwfKJmRdKLIGKCaZPZwYmDCR5xnwN9bc4l71YEKnPFKltwcZ6/OyMW4fLOYqplKrF1l + h93g7W/JhIwxnfQxM3oCYFHJswkj6yz7YfgIN/pRnq3xW7wikEuG5irwC8S2O+OWtQZLoPpCHVRI + kjcrPUAfbTKxnLENNgaz1niMkwtH3bPdzxRkIQSZ2dxuTzoE6KFcV01SUmLSSBAinLerZvU9C3XM + OygrltBtMRC7i4y1LT9CLBC1AuMq8A2GXH+Jmm+xmlQgESNQ0ET93q9CU2ukBjbnQE3o8VAtVQ+Y + B5cEGq3WAUerPt9/X4g9xgKqOiZeBHUemoJmauDkryW+cqT/4BLcZ9RvnhVlElBLAwQUAAAACACH + uU5RKNlCKcsCAADGAgAANgAAAC5naXQvb2JqZWN0cy83OC80MjY0NGQzNTZlOTIyMzU3NmEyZTgy + ZGU1OGViZjA3OTkyZjQyMwHGAjn9eAGNU9tu4zYQ7bO+go8NjOh+XewWK8myIt8l29nEwT6QFHVJ + KFEWdVnn6+vEXbRoF0UGIEAMzzkYzszBrKrKDiiyo/3WtYQAW8VQN5GhKxYxVYItQ8Z6qmm2ZiCo + EZJhDTvYkoUGtqTuQKYYtkZsCDPZNrClyoYOHUuBmZOqKNVVZKWyJmMkwL4rWAtS0pA6hYh1T5fz + HXzWHdNxNE2b/Ovla89Jy8WataShZzEvu6JHImbVH0AxLNVUTNUxwES+hHDJXn7RkRaEZXfXI/D5 + L9rX/6XlTc7LHNy+hReE0Rpswy3YReHa3R+S4D0vAAGM3MOe63q+68ZePE+HaVH7ibewimd9M2ht + NLpuehdFbnCar9TCRK9HN3Huiax/ezzmfiWAFSffysS/z/zRHYZCdys8I2nuIHey7F2LpvWL0ywC + +0fyWBFoczk01CGa2tZhdp/w6iCASRg0wynR1Dpi635N3c3pMOQLf+vLTkgPzD+o/kMA+dJAFC2w + WQzLA6R7uzqnd4200wUg5YdYx+p4ng3r7ekYNeOxal8KZ6+jY0mfN/35xJ4T1Iavx8AsbDaZeMtp + CufjK/bp0QkFkLomm6e7KItW5+luIz3SOKcnxx02BW3wuXUKOEinRou6Y5bWcr7bm5M+7hcTeo4Z + WcUCMKLCH23lYZ1Vz6uZvy9b3/fmcTMr6UPFxqUFEc64vFnhKdlwNTV6NJNjR8vCH/qW5F8E8IVo + gyVcZxasp7+emOD1VQNG0r68kj4HWcsqIIuKLiqgY283Q9SEdxAHTz9h338vuq7hnyTp76WRGkgp + 6bj0E3TzazFRuAVPCaEEcgJq1hH+ITWpvVL4zRvfL2CdE8ryj3ERZUiqIL+sveTfuesw2Ikt765S + 74b4YBEX97yZWbp2SBTFa4NuBGFX5jVJb1mW3aLzp/96l/dNw9runy77E0IuY5BQSwMEFAAAAAgA + h7lOUSqxJj80AQAALwEAADYAAAAuZ2l0L29iamVjdHMvNzkvZjQ1MWJkNTY0MDNkNDI3M2E1MTIw + MjA1ZTA5MWZmMmY5MzQ4NDEBLwHQ/ngBKylKTVUwNjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP + +8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15u + CsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+voJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElB + SVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76bJff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXF + eiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWpSXpGeuZ6yfl5aZnpDAYpE+4zfHpwL4y15m/D + 3lz+woOTgpBUGuuZwFSuPpPEls5l1j9rQoJBS9zJc//FK9QAnMaAiVBLAwQUAAAACACHuU5R97+A + TcwAAADHAAAANgAAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEz + ZWVmYzNjOWM3MAHHADj/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8b + ZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kg72iW9y3 + d39s5CvU46ccTOUOe395L1RRYkFBTmZyYklmfp5eQSXDiuxXy26zvC77JXlnc0/6waNMuvqvoSqL + UgtLM4tSc1PzSor1SipKGGaeVhaZePWSw7V1scv8E/Jl7b6J3AAA1V5Q8FBLAwQUAAAACACHuU5R + kk1vAMsAAADGAAAANgAAAC5naXQvb2JqZWN0cy84My9iZTYzMThhOTIxMTFiZWMyZTFjYWVmZDFi + MmQ3ZmU0MzVjYTc1MgHGADn/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U1 + 3c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw8XV + k7RfHTfuFpULaAux7rvKyLejEaoosaAgJzM5sSQzP0+voJJhRfarZbdZXpf9kryzuSf94FEmXf3X + UJVFqYWlmUWpual5JcV6JRUlDA6+Nh+/z0g8Ja/Ee6v+52WtbRYKqQCIlk+TUEsDBBQAAAAIAIe5 + TlFgl1ZorgEAAKkBAAA2AAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJmYjAzMzVkZTM2MjQ0ZmJi + MjY4YzgyYmUxNzY3MWRhAakBVv54AcWTwW7bMAyGdzaQdyC6SwzM9oCd5tOCAjl12IbuVhSDItOx + WktURHpd9vSj7K5pi1x2GiDAAkX9/PlR3o20g4/vP7ypqmpVRLPHH3KM2AIbH0dcFR2yTS6Ko9DC + xffBMegy4F1w3oyPeWBiBBmMQIeeAksyggwDPYAQpCnoja9HGSjAdjR8n/NHZ02WBV2b31NC2KjI + NaafzmIOXrkw/aovVsVown5Sa9yuigrirKNmE3WTlSVoskA+nTeVyle8KGkwt7Yq3r50sDQIPaUz + 1ddz7TJf+w8t57Jb9eVJobigFv1M6h3oSAwjMKLSRrh5ZJoJPmN3mJy9ZzFJbteDSOS2aTqyXHtn + EzH1UlvyzYyqeYaqsRTEuICJm5NGtQAv6wXipeYkt5vEhf0TH53FHVqBwejb6CgKdovBz38rwpeI + Aa5pSjrcS+p0wr1+Qx7hySVpEs85r7xavUG9+sv5TVnDOT4nLq8KwHbz7Z+L9ObQlKBjmKloczfZ + XTby6QXH27U3bhRqzx+X8OBkABOOSqZz+cXrb3OYkPOWlwLeYxBWwn8A6ONBjlBLAwQUAAAACACH + uU5RZmnNg94AAADZAAAANgAAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMAHZACb/eAGVkDFLBDEQha0X9j88sLltNqDYXKUI14mIdscV2WRiIpvM + XjKL+O9NXCwUG7uBee99b2aaecL1zdXFJe45SQ7TKiG99l3fvfhQsGR+IyPwukBbXoQsxBOOD8Fk + LuwEjwslPPOaDdUMS2DXsuxq5LTzIkvZK8VVVL40Y/x2joajMtXBzmx6NYw4cEbkTAjJcY5aAicU + og37C4DD3dO/IU6f1YCKqVTR9bhja9eK3P7odtpFHWbh/d/rAe9BPHT6qJ+xofXUM84rlTaWDRAj + JSlj330C4SWC6lBLAwQUAAAACACHuU5RINaxYXQAAABvAAAANgAAAC5naXQvb2JqZWN0cy84Ny9j + NTFjOTQ4NjcyMzg1MmU4OWRiYmJjOWM3YzYzOTg2YWE5MTkzNAFvAJD/eAFLyslPUjA0MGRwC/L3 + VSjJTMxLz8/J1y8tL07P1M1Lz8yr0E3LSSzOtiqoLMnIzzPWM9NNzCnIzEs11jPn4nL1C1Pw8QwO + cfWLD/APCrG1MDAw4HKNCPAPdlUAs7mc/QMiFfQTCwrABACrYiFrUEsDBBQAAAAIAIe5TlE8H++S + OQAAADQAAAA2AAAALmdpdC9vYmplY3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3 + MzE1NmFmZWZhATQAy/94ASspSk1VMDZlMDQwMDMxUchNzMzTK6hkWNhZ08C/99oXJdG2czefV85n + kg49CQA4txCeUEsDBBQAAAAIAIe5TlE+63VCjwAAAIoAAAA2AAAALmdpdC9vYmplY3RzLzhlLzM0 + NDRiZDQ2MTg3ODdkNDAzYzBiNGRjNDRjNzA2YTAyMDJlZGVmAYoAdf94AaWNQQpCMQxEXfcUuYCS + 1NL/CyLu1IVLD9D2t1qwFtr8+xsQT+BmJsyQN7HVWhg02g33lCA6v2hacB+tuHUTGqNF5inMNgc5 + EYksKr/ys3W4ldjbaJnhXPiyBriP1OFQR+ZH4XGqv34XWz0CGUcC0ISwRWEpSWWf5edfkrq+Cxf/ + gi/yA4BORCxQSwMEFAAAAAgAh7lOUd1nxUHLAAAAxgAAADYAAAAuZ2l0L29iamVjdHMvOGYvNmEw + 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 + MTRlM2UzNWIzMzU4YjIxNjcwZDI1MDFiOTAyAccAOP94ASspSk1VMLQ0YzA0MDAzMVHQS88syUzP + yy9KZSgy85/5z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7 + VEmQq6OLr6tebgrD5h7XxbnKrnov/rue8zxo8K1k04cJUEWJBQU5mcmJJZn5eXoFlQwrsl8tu83y + uuyX5J3NPekHjzLp6r+GqixKLSzNLErNTc0rKdYrqShhcPC1+fh9RuIpeSXeW/U/L2tts1BIBQA+ + ElGiUEsDBBQAAAAIAIe5TlGixBHV9AAAAO8AAAA2AAAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdl + N2Y5ZTgyNDQyMzhiM2Q4ZjI2MmQ1NDc4OWIyOGZjAe8AEP94AY2QQWuDQBCFey70PywLgeaih9JD + iylIlEaQHOLWXBaWTZzqUt1d1lHjv29M00LTHDq3ecN8897sarMjD0+PN8He6HdVdk6iMvrl7paQ + QFqbAaLSZXsSJqkoyAeMC7rNXhMRpkzkyYa9hWm8zsUqXEdpvKGkl3UHC9pIpb0jhBL/X/vhkiV5 + yGLBVklGJwvnOvOiZ16ZBnirEPgwDM4Y5KB7nu2dsthyO2JltAcHuHbya2olVj8OZ9nYIjSRUz3M + /sKvUU7BL5P2ymEn66MXYZ05jF4JKPqpraQuanD3829W4P9+a+Bffv4TcRaAwVBLAwQUAAAACACH + uU5RfmRWQGUAAABgAAAANgAAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2 + NGY2MDZmMWQzZWY2MTRkOAFgAJ//eAFLyslPUrCwYEjOyUzOtrU10zPncstJLAYyDfUM9Iy4MkuK + UxLz0lOL8kuLbW2BIiZcXpl5WYlGtrZGeoYGXL6JRdmlBcGJaalgHVzhqUXZVaml6SC1hqZ6xgBv + PBxxUEsDBBQAAAAIAIe5TlH44ZrgiAAAAIMAAAA2AAAALmdpdC9vYmplY3RzL2ExLzg5N2M4MDBm + YmRkNmY0MjIxNTg2Y2VkOWU3Nzk5ZjAyMWI1NWM5AYMAfP94ATWMwQpCIRREW9+vmFYqRBEEQfCg + VfQHLS8+npKkXjGl3y+LdjNzmDNHmbE/HFe+SoKP9vlASEVqw2UUsqVg+mXNnG1yzIbo/Nm3VXpz + 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 + 7l31y00hYhpvrlfte/qvJig7C0rNia6yMq0dpnVT3bybL9PLEySDowXS8D4HuXG1fPVyO4SrZnal + rpVvbcVVJ0fdkbIdIZWDnW/GXwjt5eRQSwMEFAAAAAgAh7lOUTtIlmG9AAAAuAAAADYAAAAuZ2l0 + L29iamVjdHMvYWMvYTdhMTQyMTJlNjk5ZmE2ZjEyODUyODZkNjUxNmQ2N2Y0MGEyNjQBuABH/3gB + KylKTVUwNLdgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVS35ydmpR + WmZOKkP7UZkpbUUWQS/m7t4zpyZ5RtZKSROoKh9PZ1e/YFcGb6mr0vp8f8w+dy02mTXf4PdNxVJ3 + qJIgV0cXX1e93BSG385zXhkxuWao7Hi2arVBRZFA6ORNJgZAoJBYUMDQKyfnIcPXo3Dz0qETErNP + F4tm/fsFAIVwR29QSwMEFAAAAAgAh7lOUb+wsVh0AQAAbwEAADYAAAAuZ2l0L29iamVjdHMvYjMv + OGM0NWEzNmQyMzQ1MmVlOGZmNDVjZTQ5YzEzMGY2NzRiMmYwOTABbwGQ/ngBjZLBSgMxEIY9C77D + gJcWbAMeRDxZhJ4UFQUPxUOanXWjm8w2M7HWp3ey1bYWD8IedpPMfP98m3lLczg7Pz04hruVNBRh + 2lp+A9t1oB+Tz5wQnnAOE12oKcEVRbE+YuKjw6PDx8Yz6GMh+OiDbYFt6Frs66WxAhUGiizJCjI0 + tAQhSDlqxT6v9c6KV+iGW5gPmN69w7J47WP+GBfsVIME0mQ+aqbQl52Aci0jMCJIgzD7BpR2O40W + 2bs3FpvkedCIdHxhTEWOx8G7REy1jB0Fg3GU2dgyv1EZI17nMG4zv9l2GnW9u2Ef7rh3lPw8i48v + G0tdold0Ao1VXRV1gtU65s0PF247jPBAOem8V1Tp0HXpVWW3k5X0EPdn9hI7raBa85XzZjiGvyxt + 7ewBYDq53wr5J6S2CzME/Rm9FR1uVgpLkMtfNp8HwfpW6OLv7SEsvTRg40rNVL5cAr1Ji4xcXnkN + CAGjsBr+Anme995QSwMEFAAAAAgAh7lOUSvc9DEDAQAA/gAAADYAAAAuZ2l0L29iamVjdHMvYzQv + MGVmYmI0MGU4NzEwNjAyZTc5ZDc4MWM4YjQ0M2MxNzhmMjI3NWMB/gAB/3gBnU9LTsUgFHXcVTB7 + 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 + AIe5TlGf8C1nNAEAAC8BAAA2AAAALmdpdC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1 + YzU1NGExYTllNmY5YTM5ZWMzAS8B0P54ASspSk1VMDYyZTA0MDAzMVHQS88syUzPyy9KZSgy85/5 + z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7VEmQq6OLr6te + bgrD/ckeCa8lk0UXhIRff9XEGuF0S94fqig3MTNPr6CSYWFnTQP/3mtflETbzt18XjmfSTr0JFRJ + QUlZcXxZZlFJaWJOal5ZfEFRfkUlSM+SJUIzmHe+myX3+JeBdFh6z6p2lUlQPUWphaWZRam5qXkl + xXolFSUMWe+nnPq264N4WpD9jYJXoqx6sm79ULXlqUl6Rnrmesn5eWmZ6QwTZuXn+cy2eKhebcEY + yn1k+7W8KzOQVBrrmcBUrj6TxJbOZdY/a0KCQUvcyXP/xSvUAGa0f6BQSwMEFAAAAAgAh7lOUV9+ + 8+1tAQAAaAEAADYAAAAuZ2l0L29iamVjdHMvZmIvNDM5Y2VhMzIwMjQ1NjgyNGI4ZTZhYWFiMzA3 + ODcyMTA1NTkzYjIBaAGX/ngBlZLBSgMxEIY9F3yHgV5asM1NtCeL0JtoqeCh9JBmZ93YTWabmbXU + p3ey1RaLIMIeks3M/N9+m3VNa7i+ub3ow9NeKoowqy1vwDYN6Gb60SaEF1zDVF+UlOCeolgfMfFl + 77L3XHkGfSwEH32wNbANTY1dv1RWoMBAkSVZQYaKdiAEqY3acZ5Xe2fFa+gfueMcPFOUQMrmo1KF + rvEKNNkyAiOCVAjLr4g8UPEXmN69Q5i33m1YbFI6crwaVCINT4zJu3HwLhFTKWNHwWActWxs1mDU + yYgPM4w7ajDb47hR0ykcdoT9TlXy61Z8fD3KahK9oROorForqBEsDqwP37nw2GCEBbVJWe+pQKAy + zypaJydW0iLuas6InXZQqXy53gzH8Juqk6KzAJhN5/8OKe3WDEH/SGdFP26Z6TLI3Q+bq0Gwvhaa + /H48hJ2XCmzcq5nC57ugF2rbIuclHwJCwCishj8BFxr6S1BLAwQUAAAACACHuU5RTYPO3CoAAAAp + AAAAFgAAAC5naXQvcmVmcy9oZWFkcy9tYXN0ZXIFwUkRADAIBLB/1Ww5BpDDUfxLaLJXnZ9nLlzb + CCoZdnNjqEaobMDoOh9QSwMEFAAAAAgAh7lOUdYl1KAiAAAAIAAAAB0AAAAuZ2l0L3JlZnMvcmVt + b3Rlcy9vcmlnaW4vSEVBRCtKTbNSKEpNK9YvSs3NL0kt1s8vykzPzNPPTSwuSS3iAgBQSwECFAAU + AAAACACHuU5RrtXvKF0CAABuBAAACgAAAAAAAAAAAAAAtoEAAAAALmdpdGlnbm9yZVBLAQIUABQA + AAAIAIe5TlEstqWhXQAAAGoAAAAOAAAAAAAAAAAAAAC2gYUCAABhcHBsaWNhdGlvbi5weVBLAQIU + ABQAAAAIAIe5TlFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAAAAC2gQ4DAABMSUNFTlNFUEsBAhQAFAAA + AAgAh7lOUUhuvDyPAQAAiAMAAAkAAAAAAAAAAAAAALaBwgUAAFJFQURNRS5tZFBLAQIUABQAAAAI + AIe5TlGab84DVwAAAF0AAAAQAAAAAAAAAAAAAAC2gXgHAAByZXF1aXJlbWVudHMudHh0UEsBAhQA + FAAAAAgAh7lOUaOoHCbRAAAAPwEAAAsAAAAAAAAAAAAAALaB/QcAAC5naXQvY29uZmlnUEsBAhQA + FAAAAAgAh7lOUTeLBx8/AAAASQAAABAAAAAAAAAAAAAAALaB9wgAAC5naXQvZGVzY3JpcHRpb25Q + SwECFAAUAAAACACHuU5RK2lzpxkAAAAXAAAACQAAAAAAAAAAAAAAtoFkCQAALmdpdC9IRUFEUEsB + AhQAFAAAAAgAh7lOUax80NgkAQAAwQEAAAoAAAAAAAAAAAAAALaBpAkAAC5naXQvaW5kZXhQSwEC + FAAUAAAACACHuU5RG7aRBOoAAAC/AQAAEAAAAAAAAAAAAAAAtoHwCgAALmdpdC9wYWNrZWQtcmVm + c1BLAQIUABQAAAAIAIe5TlGFT/gJFwEAAN4BAAAgAAAAAAAAAAAAAAC2gQgMAAAuZ2l0L2hvb2tz + L2FwcGx5cGF0Y2gtbXNnLnNhbXBsZVBLAQIUABQAAAAIAIe5TlHp+MoQ9wEAAIADAAAcAAAAAAAA + AAAAAAC2gV0NAAAuZ2l0L2hvb2tzL2NvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgAh7lOURZi + ts8fBgAA/wwAACQAAAAAAAAAAAAAALaBjg8AAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFu + LnNhbXBsZVBLAQIUABQAAAAIAIe5TlGaDPfAigAAAL0AAAAdAAAAAAAAAAAAAAC2ge8VAAAuZ2l0 + L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIAIe5TlHPwEwCCQEAAKgBAAAgAAAA + AAAAAAAAAAC2gbQWAAAuZ2l0L2hvb2tzL3ByZS1hcHBseXBhdGNoLnNhbXBsZVBLAQIUABQAAAAI + AIe5TlESHWcqiQMAAGYGAAAcAAAAAAAAAAAAAAC2gfsXAAAuZ2l0L2hvb2tzL3ByZS1jb21taXQu + c2FtcGxlUEsBAhQAFAAAAAgAh7lOUUQ/817/AAAAoAEAACIAAAAAAAAAAAAAALaBvhsAAC5naXQv + aG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGVQSwECFAAUAAAACACHuU5RBNiPsZ0CAABEBQAA + GgAAAAAAAAAAAAAAtoH9HAAALmdpdC9ob29rcy9wcmUtcHVzaC5zYW1wbGVQSwECFAAUAAAACACH + uU5RhOxYUd8HAAAiEwAAHAAAAAAAAAAAAAAAtoHSHwAALmdpdC9ob29rcy9wcmUtcmViYXNlLnNh + bXBsZVBLAQIUABQAAAAIAIe5TlGSxPiWSQEAACACAAAdAAAAAAAAAAAAAAC2gesnAAAuZ2l0L2hv + b2tzL3ByZS1yZWNlaXZlLnNhbXBsZVBLAQIUABQAAAAIAIe5TlHtEzYw6AIAANQFAAAkAAAAAAAA + AAAAAAC2gW8pAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29tbWl0LW1zZy5zYW1wbGVQSwECFAAUAAAA + CACHuU5RGiFEJXUEAAAaDgAAGAAAAAAAAAAAAAAAtoGZLAAALmdpdC9ob29rcy91cGRhdGUuc2Ft + cGxlUEsBAhQAFAAAAAgAh7lOUXc9zSGtAAAA8AAAABEAAAAAAAAAAAAAALaBRDEAAC5naXQvaW5m + by9leGNsdWRlUEsBAhQAFAAAAAgAh7lOUSpLLHSZAAAA0wAAAA4AAAAAAAAAAAAAALaBIDIAAC5n + aXQvbG9ncy9IRUFEUEsBAhQAFAAAAAgAh7lOUSpLLHSZAAAA0wAAABsAAAAAAAAAAAAAALaB5TIA + AC5naXQvbG9ncy9yZWZzL2hlYWRzL21hc3RlclBLAQIUABQAAAAIAIe5TlEqSyx0mQAAANMAAAAi + AAAAAAAAAAAAAAC2gbczAAAuZ2l0L2xvZ3MvcmVmcy9yZW1vdGVzL29yaWdpbi9IRUFEUEsBAhQA + FAAAAAgAh7lOUaY6UR1SBAAATQQAADYAAAAAAAAAAAAAALaBkDQAAC5naXQvb2JqZWN0cy8xMC9k + N2FmOTY1NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNlBLAQIUABQAAAAIAIe5TlH7famK + zAIAAMcCAAA2AAAAAAAAAAAAAAC2gTY5AAAuZ2l0L29iamVjdHMvMTUvNTJiN2ZkMTU3YzNiMDhm + YzAwOTZmMThlNGFkNWVmNDI4YmMxMmJQSwECFAAUAAAACACHuU5Rib97EcwAAADHAAAANgAAAAAA + AAAAAAAAtoFWPAAALmdpdC9vYmplY3RzLzE2L2NhOTQ5Yjk2ZGE3YWVhNTVmNTdkNDlkNzU1Njgw + YmYxNDBkNzk1UEsBAhQAFAAAAAgAh7lOUV1WH0u1AAAAsAAAADYAAAAAAAAAAAAAALaBdj0AAC5n + aXQvb2JqZWN0cy8xOS8xYmIzZmJhMDc1ZjQ1NWY0OGU2ZDc2ZGRiNDE2MTZiYzM0MjE3NlBLAQIU + ABQAAAAIAIe5TlHmy6VVvwAAALoAAAA2AAAAAAAAAAAAAAC2gX8+AAAuZ2l0L29iamVjdHMvMjcv + OTZiMGFmZWQ2NTVlMGU1NjFiZWZiZGM1YmVmYTEzZTdkZmRhOWFQSwECFAAUAAAACACHuU5R31/M + NfkAAAD0AAAANgAAAAAAAAAAAAAAtoGSPwAALmdpdC9vYmplY3RzLzI4Lzg4ZWMzYzlhNDEzMTEx + OGNmZmYwYzk0NDdmYWMzODUyODIzNDlhUEsBAhQAFAAAAAgAh7lOUSfS34p9AAAAeAAAADYAAAAA + AAAAAAAAALaB30AAAC5naXQvb2JqZWN0cy8yZC9hOWMzNTU1NTM0NThkZDljYmNjMjk1ZjQ4M2Q5 + MjQxYTEyYTgxNlBLAQIUABQAAAAIAIe5TlE++Q7S2AIAANMCAAA2AAAAAAAAAAAAAAC2gbBBAAAu + Z2l0L29iamVjdHMvMzAvNjQ5MGRmMDBmMmUwZGU1NjA1N2NmZDgwYmQ2ZDBmNzFjMTkyNTJQSwEC + FAAUAAAACACHuU5Rt3vZN3QCAABvAgAANgAAAAAAAAAAAAAAtoHcRAAALmdpdC9vYmplY3RzLzNh + LzQ2ODcxYjViNzJiNGRiNWRkYTFlZDEzODY0Mjg1Y2ZmYzY2NGM3UEsBAhQAFAAAAAgAh7lOUWls + ZhK1AAAAsAAAADYAAAAAAAAAAAAAALaBpEcAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkw + NjcyOGY2NmE3MWY2MjBhNmQxZTc4YmZlYVBLAQIUABQAAAAIAIe5TlFO544KrgEAAKkBAAA2AAAA + AAAAAAAAAAC2ga1IAAAuZ2l0L29iamVjdHMvM2YvMjE0NjVlZjZlZWZjM2MxZjc4Mjc1Zjk0YzE2 + NTBiNTZlZmQzYmRQSwECFAAUAAAACACHuU5R3AlonWUAAABgAAAANgAAAAAAAAAAAAAAtoGvSgAA + LmdpdC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1UEsB + AhQAFAAAAAgAh7lOUX3zWBq1AAAAsAAAADYAAAAAAAAAAAAAALaBaEsAAC5naXQvb2JqZWN0cy80 + MC9mYWVjMTA4YWNkOWFmNjZmNWRhOGE1Njg5NjBhZDRhNjI4ZmExZlBLAQIUABQAAAAIAIe5TlGW + CbN+/gAAAPkAAAA2AAAAAAAAAAAAAAC2gXFMAAAuZ2l0L29iamVjdHMvNDQvZTc0ZmU3ZGQ5ZGZl + MmY2MjI4NzI2MWQ4ZDU2ZDUwMTc4NTRkMThQSwECFAAUAAAACACHuU5RPUAqlMwAAADHAAAANgAA + AAAAAAAAAAAAtoHDTQAALmdpdC9vYmplY3RzLzRhL2ExZThhMzQ4NjRjMDhiZGVjNjAwOGUyYzg3 + NjE0NTgxZDUzZjdiUEsBAhQAFAAAAAgAh7lOUUDzmqU1AQAAMAEAADYAAAAAAAAAAAAAALaB404A + AC5naXQvb2JqZWN0cy80Yi8xNDI2MGE4NmNhYTEyZjNjNDNiOTY3ZjQzMzA1MmI0MzVkMjc4NlBL + AQIUABQAAAAIAIe5TlEDpVJ4tAIAAK8CAAA2AAAAAAAAAAAAAAC2gWxQAAAuZ2l0L29iamVjdHMv + NGIvMWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDdQSwECFAAUAAAACACHuU5R + ObGiejcCAAAyAgAANgAAAAAAAAAAAAAAtoF0UwAALmdpdC9vYmplY3RzLzU2LzY0YjYyZjJiNGZj + NDU0MzczNGMwZDFhMjU0MGMxNWIwYWY1ZWQzUEsBAhQAFAAAAAgAh7lOUUImqm80AgAALwIAADYA + AAAAAAAAAAAAALaB/1UAAC5naXQvb2JqZWN0cy81Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTVi + ZWZmODAwNDlkMjA2MFBLAQIUABQAAAAIAIe5TlF0xD70wAAAALsAAAA2AAAAAAAAAAAAAAC2gYdY + AAAuZ2l0L29iamVjdHMvNWEvNTk4ZTI4ODNhNzBkZWMyOTBhNDgxY2FhMjM4NmY0YzliYjU5YzJQ + SwECFAAUAAAACACHuU5R2mwDGS4BAAApAQAANgAAAAAAAAAAAAAAtoGbWQAALmdpdC9vYmplY3Rz + LzVlLzMxMTk3Yzc3MzY5NzEzMTIxY2Y2NDg4NWViNjhiOGFkMTg1NGU1UEsBAhQAFAAAAAgAh7lO + URbU7+1DAgAAPgIAADYAAAAAAAAAAAAAALaBHVsAAC5naXQvb2JqZWN0cy82My9lMzY2Y2ZlYjMy + ZjljZTc4ZmM0MDNmNjMyZmNhYzY3OTA0YjI5YVBLAQIUABQAAAAIAIe5TlGE3OkXsAAAAKsAAAA2 + AAAAAAAAAAAAAAC2gbRdAAAuZ2l0L29iamVjdHMvNjgvMzRjMTU5ZDJiMDY3MmYyYTdmMDdiODA2 + YzlhMGFiMDUxOWI3MjBQSwECFAAUAAAACACHuU5RWqnWYiEAAAAeAAAANgAAAAAAAAAAAAAAtoG4 + XgAALmdpdC9vYmplY3RzLzZhL2VmOTRjYWY2YmFmMDE3NjY1MjNmZDg3MGVhMTUwNTJlMWQ0Njhm + UEsBAhQAFAAAAAgAh7lOUXtFhwRsAgAAZwIAADYAAAAAAAAAAAAAALaBLV8AAC5naXQvb2JqZWN0 + cy83Mi8zNjRmOTlmZTRiZjhkNTI2MmRmM2IxOWIzMzEwMmFlYWE3OTFlNVBLAQIUABQAAAAIAIe5 + TlEo2UIpywIAAMYCAAA2AAAAAAAAAAAAAAC2ge1hAAAuZ2l0L29iamVjdHMvNzgvNDI2NDRkMzU2 + ZTkyMjM1NzZhMmU4MmRlNThlYmYwNzk5MmY0MjNQSwECFAAUAAAACACHuU5RKrEmPzQBAAAvAQAA + NgAAAAAAAAAAAAAAtoEMZQAALmdpdC9vYmplY3RzLzc5L2Y0NTFiZDU2NDAzZDQyNzNhNTEyMDIw + NWUwOTFmZjJmOTM0ODQxUEsBAhQAFAAAAAgAh7lOUfe/gE3MAAAAxwAAADYAAAAAAAAAAAAAALaB + lGYAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEzZWVmYzNjOWM3 + MFBLAQIUABQAAAAIAIe5TlGSTW8AywAAAMYAAAA2AAAAAAAAAAAAAAC2gbRnAAAuZ2l0L29iamVj + dHMvODMvYmU2MzE4YTkyMTExYmVjMmUxY2FlZmQxYjJkN2ZlNDM1Y2E3NTJQSwECFAAUAAAACACH + uU5RYJdWaK4BAACpAQAANgAAAAAAAAAAAAAAtoHTaAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJm + YjAzMzVkZTM2MjQ0ZmJiMjY4YzgyYmUxNzY3MWRhUEsBAhQAFAAAAAgAh7lOUWZpzYPeAAAA2QAA + ADYAAAAAAAAAAAAAALaB1WoAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMFBLAQIUABQAAAAIAIe5TlEg1rFhdAAAAG8AAAA2AAAAAAAAAAAAAAC2 + gQdsAAAuZ2l0L29iamVjdHMvODcvYzUxYzk0ODY3MjM4NTJlODlkYmJiYzljN2M2Mzk4NmFhOTE5 + MzRQSwECFAAUAAAACACHuU5RPB/vkjkAAAA0AAAANgAAAAAAAAAAAAAAtoHPbAAALmdpdC9vYmpl + Y3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3MzE1NmFmZWZhUEsBAhQAFAAAAAgA + h7lOUT7rdUKPAAAAigAAADYAAAAAAAAAAAAAALaBXG0AAC5naXQvb2JqZWN0cy84ZS8zNDQ0YmQ0 + NjE4Nzg3ZDQwM2MwYjRkYzQ0YzcwNmEwMjAyZWRlZlBLAQIUABQAAAAIAIe5TlHdZ8VBywAAAMYA + AAA2AAAAAAAAAAAAAAC2gT9uAAAuZ2l0L29iamVjdHMvOGYvNmEwYTRmOWQ5OWRhOGViM2RiYjVk + MzdmNmNmMjVkZmVhY2Q4ZDBQSwECFAAUAAAACACHuU5RISfNXdUCAADQAgAANgAAAAAAAAAAAAAA + toFebwAALmdpdC9vYmplY3RzLzkwLzlhNmY2ZTRjOWIzOGUxMjc3YjM4MDE1NTBiYzRiN2Q2NmVk + NDk4UEsBAhQAFAAAAAgAh7lOUQlUFZ58AgAAdwIAADYAAAAAAAAAAAAAALaBh3IAAC5naXQvb2Jq + ZWN0cy85MS80MmIyOGUyMmI2MmMwMzFiMzJmYTFjYjE1YzMzZGE3YzkwNWMyMFBLAQIUABQAAAAI + AIe5TlHwqBwKzAAAAMcAAAA2AAAAAAAAAAAAAAC2gVd1AAAuZ2l0L29iamVjdHMvOTUvNDUzZGJl + ZDA5MzExNGUzZTM1YjMzNThiMjE2NzBkMjUwMWI5MDJQSwECFAAUAAAACACHuU5RosQR1fQAAADv + AAAANgAAAAAAAAAAAAAAtoF3dgAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdlN2Y5ZTgyNDQyMzhi + M2Q4ZjI2MmQ1NDc4OWIyOGZjUEsBAhQAFAAAAAgAh7lOUX5kVkBlAAAAYAAAADYAAAAAAAAAAAAA + ALaBv3cAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2NGY2MDZmMWQzZWY2 + MTRkOFBLAQIUABQAAAAIAIe5TlH44ZrgiAAAAIMAAAA2AAAAAAAAAAAAAAC2gXh4AAAuZ2l0L29i + amVjdHMvYTEvODk3YzgwMGZiZGQ2ZjQyMjE1ODZjZWQ5ZTc3OTlmMDIxYjU1YzlQSwECFAAUAAAA + CACHuU5Ro0IPgeMFAADeBQAANgAAAAAAAAAAAAAAtoFUeQAALmdpdC9vYmplY3RzL2E0L2E0MTI5 + ODAzYjllZTlhMWVlM2ZhMzAxYjU2Njc4Y2FhODcyNDkyUEsBAhQAFAAAAAgAh7lOUbIY8KNvAAAA + agAAADYAAAAAAAAAAAAAALaBi38AAC5naXQvb2JqZWN0cy9hOC82YmVhYTZkYjA0ZWI3NmZhMTlk + Y2IzOGM2N2MxYzUwMjJkMmZlYlBLAQIUABQAAAAIAIe5TlGj6R9xWwAAAFYAAAA2AAAAAAAAAAAA + AAC2gU6AAAAuZ2l0L29iamVjdHMvYTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3 + MThlMTNQSwECFAAUAAAACACHuU5RgfqW7c8CAADKAgAANgAAAAAAAAAAAAAAtoH9gAAALmdpdC9v + YmplY3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2UEsBAhQAFAAA + AAgAh7lOUTtIlmG9AAAAuAAAADYAAAAAAAAAAAAAALaBIIQAAC5naXQvb2JqZWN0cy9hYy9hN2Ex + NDIxMmU2OTlmYTZmMTI4NTI4NmQ2NTE2ZDY3ZjQwYTI2NFBLAQIUABQAAAAIAIe5TlG/sLFYdAEA + AG8BAAA2AAAAAAAAAAAAAAC2gTGFAAAuZ2l0L29iamVjdHMvYjMvOGM0NWEzNmQyMzQ1MmVlOGZm + NDVjZTQ5YzEzMGY2NzRiMmYwOTBQSwECFAAUAAAACACHuU5RK9z0MQMBAAD+AAAANgAAAAAAAAAA + AAAAtoH5hgAALmdpdC9vYmplY3RzL2M0LzBlZmJiNDBlODcxMDYwMmU3OWQ3ODFjOGI0NDNjMTc4 + ZjIyNzVjUEsBAhQAFAAAAAgAh7lOUe5utYw8AAAANwAAADYAAAAAAAAAAAAAALaBUIgAAC5naXQv + b2JqZWN0cy9jOS9hZDIxZDAzYzZkMjE2OTcwNDQyNzA0ODdiODZmYjI3MDAwMTE2MFBLAQIUABQA + AAAIAIe5TlEpo4PWsAEAAKsBAAA2AAAAAAAAAAAAAAC2geCIAAAuZ2l0L29iamVjdHMvZDEvYWI5 + MjJiZWFjNzMzOGIxNTFlNTA4NjU0M2I4ZWQ1MDEwZWI4ODFQSwECFAAUAAAACACHuU5RDqp48agB + AACjAQAANgAAAAAAAAAAAAAAtoHkigAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcy + NjcyZDZiYjc1MjBiMWJhNjhjMmMyUEsBAhQAFAAAAAgAh7lOUX23KJJCAgAAPQIAADYAAAAAAAAA + AAAAALaB4IwAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1OGI2 + ZDBhYmJmOVBLAQIUABQAAAAIAIe5TlFZTf/5igEAAIUBAAA2AAAAAAAAAAAAAAC2gXaPAAAuZ2l0 + L29iamVjdHMvZGYvOTM0ODYwZWIxOTYzMTVhMDU0NTdkN2VhODIwNTU4NDJkYTFmNGZQSwECFAAU + AAAACACHuU5RY2Y+ijECAAAsAgAANgAAAAAAAAAAAAAAtoFUkQAALmdpdC9vYmplY3RzL2UxL2Fi + ZjhiN2EzYmMyNTZiZjIwNDU0ZjIyYTExOTgwOGI0YzdhYmU5UEsBAhQAFAAAAAgAh7lOUa+0xwNw + AgAAawIAADYAAAAAAAAAAAAAALaB2ZMAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRiNmJiOGE1 + YzY3MTBmNmUzMzZjMzVhOGI4MTY3N1BLAQIUABQAAAAIAIe5TlEQFwZqNgIAADECAAA2AAAAAAAA + AAAAAAC2gZ2WAAAuZ2l0L29iamVjdHMvZjEvNTgzZThhYWYwODVjNzIwNTRhOTcxYWY5ZDJiZDQy + YjdkMDMwY2JQSwECFAAUAAAACACHuU5Rn/AtZzQBAAAvAQAANgAAAAAAAAAAAAAAtoEnmQAALmdp + dC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1YzU1NGExYTllNmY5YTM5ZWMzUEsBAhQA + FAAAAAgAh7lOUV9+8+1tAQAAaAEAADYAAAAAAAAAAAAAALaBr5oAAC5naXQvb2JqZWN0cy9mYi80 + MzljZWEzMjAyNDU2ODI0YjhlNmFhYWIzMDc4NzIxMDU1OTNiMlBLAQIUABQAAAAIAIe5TlFNg87c + KgAAACkAAAAWAAAAAAAAAAAAAAC2gXCcAAAuZ2l0L3JlZnMvaGVhZHMvbWFzdGVyUEsBAhQAFAAA + AAgAh7lOUdYl1KAiAAAAIAAAAB0AAAAAAAAAAAAAALaBzpwAAC5naXQvcmVmcy9yZW1vdGVzL29y + aWdpbi9IRUFEUEsFBgAAAABWAFYAHx4AACudAAAAAA== + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '47968' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-name-exists-app000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:13:29 GMT + location: + - https://up-name-exists-app000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-13-30Z + server: + - Kestrel + set-cookie: + - ARRAffinity=5012ff7e7a54a3f7bb618b24e05ea65d33636e03570f823daa8a04ac21e81dcb;Path=/;HttpOnly;Domain=up-name-exists-appmtxaouwvbqd7wz4osjluo6.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-name-exists-app000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"1538e28bbec4482a962b19200e1d7174","status":1,"status_text":"Building + and Deploying ''1538e28bbec4482a962b19200e1d7174''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Generating deployment script.","received_time":"2020-10-15T06:13:32.9141736Z","start_time":"2020-10-15T06:13:33.0618165Z","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":"up-name-exists-app000003"}' + headers: + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:33 GMT + location: + - http://up-name-exists-app000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=5012ff7e7a54a3f7bb618b24e05ea65d33636e03570f823daa8a04ac21e81dcb;Path=/;HttpOnly;Domain=up-name-exists-appmtxaouwvbqd7wz4osjluo6.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-name-exists-app000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"1538e28bbec4482a962b19200e1d7174","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:13:32.9141736Z","start_time":"2020-10-15T06:13:33.0618165Z","end_time":"2020-10-15T06:13:35.213991Z","last_success_end_time":"2020-10-15T06:13:35.213991Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-name-exists-app000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-name-exists-app000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-name-exists-app000003"}' + headers: + content-length: + - '706' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:35 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=5012ff7e7a54a3f7bb618b24e05ea65d33636e03570f823daa8a04ac21e81dcb;Path=/;HttpOnly;Domain=up-name-exists-appmtxaouwvbqd7wz4osjluo6.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-name-exists-app000003","name":"up-name-exists-app000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US 2","properties":{"name":"up-name-exists-app000003","state":"Running","hostNames":["up-name-exists-app000003.azurewebsites.net"],"webSpace":"clitest000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-EastUS2webspace/sites/up-name-exists-app000003","repositorySiteName":"up-name-exists-app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-app000003.azurewebsites.net","up-name-exists-app000003.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":"up-name-exists-app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-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/clitest000001/providers/Microsoft.Web/serverfarms/up-name-exists-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:35.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-name-exists-app000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-name-exists-app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5706' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:13:36 GMT + etag: + - '"1D6A2BA2CB1ACAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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/recordings/test_webapp_up_name_exists_not_in_subscription.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_not_in_subscription.yaml index 3330cbd1b8e..b2a2686f157 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_not_in_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_name_exists_not_in_subscription.yaml @@ -17,8 +17,8 @@ interactions: ParameterSetName: - -n --dryrun User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -35,7 +35,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Oct 2020 22:59:13 GMT + - Thu, 15 Oct 2020 06:11:37 GMT expires: - '-1' pragma: @@ -71,30 +71,117 @@ interactions: ParameterSetName: - -n --dryrun User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/sites/cli-funcapp-nwrbofuimyzk","name":"cli-funcapp-nwrbofuimyzk","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrbofuimyzk","state":"Running","hostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net"],"webSpace":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace","selfLink":"https://waws-prod-os1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace/sites/cli-funcapp-nwrbofuimyzk","repositorySiteName":"cli-funcapp-nwrbofuimyzk","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net","cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T22:16:01.26","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrbofuimyzk","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.175.158.219","possibleInboundIpAddresses":"52.175.158.219,40.74.100.133","ftpUsername":"cli-funcapp-nwrbofuimyzk\\$cli-funcapp-nwrbofuimyzk","ftpsHostName":"ftps://waws-prod-os1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135","possibleOutboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135,104.46.236.70,104.215.17.186,104.215.17.210,104.215.19.221,104.215.23.198,52.175.158.219,40.74.100.133","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx","defaultHostName":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/sites/delete-me-weboyiqvj7rzdf","name":"delete-me-weboyiqvj7rzdf","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"delete-me-weboyiqvj7rzdf","state":"Running","hostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net"],"webSpace":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace/sites/delete-me-weboyiqvj7rzdf","repositorySiteName":"delete-me-weboyiqvj7rzdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net","delete-me-weboyiqvj7rzdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"delete-me-weboyiqvj7rzdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-weboyiqvj7rzdf.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.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/serverfarms/delete-me-planjxjoseu3lq","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T04:22:40.5","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"delete-me-weboyiqvj7rzdf","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"delete-me-weboyiqvj7rzdf\\$delete-me-weboyiqvj7rzdf","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f","defaultHostName":"delete-me-weboyiqvj7rzdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/sisirap-test-app-multicontainer","name":"sisirap-test-app-multicontainer","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East - US","properties":{"name":"sisirap-test-app-multicontainer","state":"Running","hostNames":["sisirap-test-app-multicontainer.azurewebsites.net"],"webSpace":"sisirap-RG-EastUSwebspace","selfLink":"https://waws-prod-blu-191.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap-RG-EastUSwebspace/sites/sisirap-test-app-multicontainer","repositorySiteName":"sisirap-test-app-multicontainer","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-test-app-multicontainer.azurewebsites.net","sisirap-test-app-multicontainer.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-test-app-multicontainer.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-app-multicontainer.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/sisirap-RG/providers/Microsoft.Web/serverfarms/sisirap-test-multicontainet","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T01:03:41.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-test-app-multicontainer","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.104.3","possibleInboundIpAddresses":"20.49.104.3","ftpUsername":"sisirap-test-app-multicontainer\\$sisirap-test-app-multicontainer","ftpsHostName":"ftps://waws-prod-blu-191.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225","possibleOutboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225,52.149.246.34,52.179.115.42,52.179.118.77,52.191.94.124,52.224.89.255,52.224.92.113,52.226.52.76,52.226.52.105,52.226.52.106,52.226.53.47,52.226.53.100,52.226.54.47","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-191","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap-RG","defaultHostName":"sisirap-test-app-multicontainer.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/sites/webapp-quick-linuxg6637p","name":"webapp-quick-linuxg6637p","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Canada - Central","properties":{"name":"webapp-quick-linuxg6637p","state":"Running","hostNames":["webapp-quick-linuxg6637p.azurewebsites.net"],"webSpace":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace","selfLink":"https://waws-prod-yt1-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace/sites/webapp-quick-linuxg6637p","repositorySiteName":"webapp-quick-linuxg6637p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linuxg6637p.azurewebsites.net","webapp-quick-linuxg6637p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quick-linuxg6637p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linuxg6637p.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.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/serverfarms/plan-quick-linuxo2y6abh3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-09T01:44:41.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-linuxg6637p","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"13.71.170.130","possibleInboundIpAddresses":"13.71.170.130","ftpUsername":"webapp-quick-linuxg6637p\\$webapp-quick-linuxg6637p","ftpsHostName":"ftps://waws-prod-yt1-019.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27","possibleOutboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27,40.85.254.37,40.85.219.45,40.85.223.56,52.228.42.60,52.228.42.28","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-yt1-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz","defaultHostName":"webapp-quick-linuxg6637p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp","name":"cliTestApp","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cliTestApp","state":"Running","hostNames":["lol.sisiraptestdomains.com","adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","test.sisiraptestdomains.com","hi.sisiraptestdomains.com","clitestapp.azurewebsites.net"],"webSpace":"cliTestApp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cliTestApp-CentralUSwebspace/sites/cliTestApp","repositorySiteName":"cliTestApp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","hi.sisiraptestdomains.com","lol.sisiraptestdomains.com","test.sisiraptestdomains.com","clitestapp.azurewebsites.net","clitestapp.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"adsec.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"foo.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hi.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"lol.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.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/cliTestApp/providers/Microsoft.Web/serverfarms/sisirap-testAsp3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T21:08:35.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cliTestApp","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":true,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.173.249.137","possibleInboundIpAddresses":"52.173.249.137","ftpUsername":"cliTestApp\\$cliTestApp","ftpsHostName":"ftps://waws-prod-dm1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28","possibleOutboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28,52.173.202.202,52.173.200.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cliTestApp","defaultHostName":"clitestapp.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","type":"Microsoft.Web/sites","kind":"app","location":"North - Central US","tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"properties":{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","state":"Running","hostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net"],"webSpace":"cleanupservice-NorthCentralUSwebspace","selfLink":"https://waws-prod-ch1-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cleanupservice-NorthCentralUSwebspace/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","repositorySiteName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","cln9106d9e7-97c4-4a8f-beae-c49b4977560a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.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/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T22:56:10.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.240.149.243","possibleInboundIpAddresses":"52.240.149.243","ftpUsername":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a\\$cln9106d9e7-97c4-4a8f-beae-c49b4977560a","ftpsHostName":"ftps://waws-prod-ch1-037.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224","possibleOutboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224,52.240.148.114,52.240.148.110,52.240.148.107","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ch1-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"resourceGroup":"cleanupservice","defaultHostName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d5ff1e04-850a-486e-8614-5c9fbaaf4326"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthdstbfqkucxxwhute/providers/Microsoft.Web/sites/up-statichtmlapp2qc4tdlz","name":"up-statichtmlapp2qc4tdlz","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp2qc4tdlz","state":"Running","hostNames":["up-statichtmlapp2qc4tdlz.azurewebsites.net"],"webSpace":"clitesthdstbfqkucxxwhute-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthdstbfqkucxxwhute-CentralUSwebspace/sites/up-statichtmlapp2qc4tdlz","repositorySiteName":"up-statichtmlapp2qc4tdlz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp2qc4tdlz.azurewebsites.net","up-statichtmlapp2qc4tdlz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp2qc4tdlz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp2qc4tdlz.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthdstbfqkucxxwhute/providers/Microsoft.Web/serverfarms/up-statichtmlplanxroggye","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:21.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp2qc4tdlz","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp2qc4tdlz\\$up-statichtmlapp2qc4tdlz","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthdstbfqkucxxwhute","defaultHostName":"up-statichtmlapp2qc4tdlz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdimfvecuutss4jphq/providers/Microsoft.Web/sites/up-nodeappno6nw26h7ndwsa","name":"up-nodeappno6nw26h7ndwsa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappno6nw26h7ndwsa","state":"Running","hostNames":["up-nodeappno6nw26h7ndwsa.azurewebsites.net"],"webSpace":"clitestdimfvecuutss4jphq-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdimfvecuutss4jphq-CentralUSwebspace/sites/up-nodeappno6nw26h7ndwsa","repositorySiteName":"up-nodeappno6nw26h7ndwsa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappno6nw26h7ndwsa.azurewebsites.net","up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappno6nw26h7ndwsa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappno6nw26h7ndwsa.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/clitestdimfvecuutss4jphq/providers/Microsoft.Web/serverfarms/up-nodeplanruhie27coz2ik","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappno6nw26h7ndwsa","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeappno6nw26h7ndwsa\\$up-nodeappno6nw26h7ndwsa","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdimfvecuutss4jphq","defaultHostName":"up-nodeappno6nw26h7ndwsa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgpnanwoqol2rkrhgx/providers/Microsoft.Web/sites/up-nodeappspa7qkednrkx2a","name":"up-nodeappspa7qkednrkx2a","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappspa7qkednrkx2a","state":"Running","hostNames":["up-nodeappspa7qkednrkx2a.azurewebsites.net"],"webSpace":"clitestgpnanwoqol2rkrhgx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestgpnanwoqol2rkrhgx-CentralUSwebspace/sites/up-nodeappspa7qkednrkx2a","repositorySiteName":"up-nodeappspa7qkednrkx2a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappspa7qkednrkx2a.azurewebsites.net","up-nodeappspa7qkednrkx2a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappspa7qkednrkx2a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappspa7qkednrkx2a.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/clitestgpnanwoqol2rkrhgx/providers/Microsoft.Web/serverfarms/up-nodeplanbxjerum5azmp5","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappspa7qkednrkx2a","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeappspa7qkednrkx2a\\$up-nodeappspa7qkednrkx2a","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestgpnanwoqol2rkrhgx","defaultHostName":"up-nodeappspa7qkednrkx2a.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5etzi2mlgu6vtoru6/providers/Microsoft.Web/sites/up-pythonapp7i4rketjuszt","name":"up-pythonapp7i4rketjuszt","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp7i4rketjuszt","state":"Running","hostNames":["up-pythonapp7i4rketjuszt.azurewebsites.net"],"webSpace":"clitest5etzi2mlgu6vtoru6-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5etzi2mlgu6vtoru6-CentralUSwebspace/sites/up-pythonapp7i4rketjuszt","repositorySiteName":"up-pythonapp7i4rketjuszt","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp7i4rketjuszt.azurewebsites.net","up-pythonapp7i4rketjuszt.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapp7i4rketjuszt.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp7i4rketjuszt.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/clitest5etzi2mlgu6vtoru6/providers/Microsoft.Web/serverfarms/up-pythonplankpudhiqcoj7","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:18.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp7i4rketjuszt","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp7i4rketjuszt\\$up-pythonapp7i4rketjuszt","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5etzi2mlgu6vtoru6","defaultHostName":"up-pythonapp7i4rketjuszt.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf50","name":"asdfsdf50","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf50","state":"Running","hostNames":["asdfsdf50.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf50","repositorySiteName":"asdfsdf50","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf50.azurewebsites.net","asdfsdf50.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf50.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf50.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:25:13.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf50","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf50\\$asdfsdf50","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf50.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf21","name":"asdfsdf21","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf21","state":"Running","hostNames":["asdfsdf21.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf21","repositorySiteName":"asdfsdf21","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf21.azurewebsites.net","asdfsdf21.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf21.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf21.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:55.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf21","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf21\\$asdfsdf21","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf21.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf111","name":"asdfsdf111","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf111","state":"Running","hostNames":["asdfsdf111.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf111","repositorySiteName":"asdfsdf111","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf111.azurewebsites.net","asdfsdf111.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf111.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf111.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:14:36.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf111","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf111\\$asdfsdf111","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf111.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf28","name":"asdfsdf28","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf28","state":"Running","hostNames":["asdfsdf28.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf28","repositorySiteName":"asdfsdf28","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf28.azurewebsites.net","asdfsdf28.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.6"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf28.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf28.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T22:09:43.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf28","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf28\\$asdfsdf28","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf28.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf6","name":"asdfsdf6","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf6","state":"Running","hostNames":["asdfsdf6.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf6","repositorySiteName":"asdfsdf6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf6.azurewebsites.net","asdfsdf6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf6.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:05:37.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf6","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf6\\$asdfsdf6","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf59","name":"asdfsdf59","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf59","state":"Running","hostNames":["asdfsdf59.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf59","repositorySiteName":"asdfsdf59","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf59.azurewebsites.net","asdfsdf59.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf59.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf59.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:43:10.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf59","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf59\\$asdfsdf59","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf59.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf5","name":"asdfsdf5","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf5","state":"Running","hostNames":["asdfsdf5.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf5","repositorySiteName":"asdfsdf5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf5.azurewebsites.net","asdfsdf5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf5.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:59:21.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf5","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf5\\$asdfsdf5","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf57","name":"asdfsdf57","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf57","state":"Running","hostNames":["asdfsdf57.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf57","repositorySiteName":"asdfsdf57","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf57.azurewebsites.net","asdfsdf57.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf57.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf57.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:26.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf57","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf57\\$asdfsdf57","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf57.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf30","name":"asdfsdf30","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf30","state":"Running","hostNames":["asdfsdf30.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf30","repositorySiteName":"asdfsdf30","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf30.azurewebsites.net","asdfsdf30.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf30.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf30.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T23:25:37.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf30","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf30\\$asdfsdf30","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf30.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf54","name":"asdfsdf54","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf54","state":"Running","hostNames":["asdfsdf54.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf54","repositorySiteName":"asdfsdf54","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf54.azurewebsites.net","asdfsdf54.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf54.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf54.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:27:07.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf54","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf54\\$asdfsdf54","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf54.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf52","name":"asdfsdf52","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf52","state":"Running","hostNames":["asdfsdf52.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf52","repositorySiteName":"asdfsdf52","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf52.azurewebsites.net","asdfsdf52.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf52.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf52.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:34:47.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf52","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf52\\$asdfsdf52","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf52.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf112","name":"asdfsdf112","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf112","state":"Running","hostNames":["asdfsdf112.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf112","repositorySiteName":"asdfsdf112","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf112.azurewebsites.net","asdfsdf112.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf112.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf112.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:21:31.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf112","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf112\\$asdfsdf112","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf112.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf85","name":"asdfsdf85","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf85","state":"Running","hostNames":["asdfsdf85.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf85","repositorySiteName":"asdfsdf85","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf85.azurewebsites.net","asdfsdf85.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf85.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf85.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:39:46.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf85","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf85\\$asdfsdf85","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf85.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf","name":"asdfsdf","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf","state":"Running","hostNames":["asdfsdf.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf","repositorySiteName":"asdfsdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf.azurewebsites.net","asdfsdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.7"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:21:18.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf\\$asdfsdf","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf42","name":"asdfsdf42","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf42","state":"Running","hostNames":["asdfsdf42.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf42","repositorySiteName":"asdfsdf42","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf42.azurewebsites.net","asdfsdf42.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf42.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf42.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:38:19.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf42","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf42\\$asdfsdf42","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf42.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf27","name":"asdfsdf27","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf27","state":"Running","hostNames":["asdfsdf27.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf27","repositorySiteName":"asdfsdf27","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf27.azurewebsites.net","asdfsdf27.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf27.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf27.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:32:39.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf27","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf27\\$asdfsdf27","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf27.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf43","name":"asdfsdf43","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf43","state":"Running","hostNames":["asdfsdf43.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf43","repositorySiteName":"asdfsdf43","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf43.azurewebsites.net","asdfsdf43.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf43.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf43.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:45:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf43","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf43\\$asdfsdf43","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf43.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf80","name":"asdfsdf80","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf80","state":"Running","hostNames":["asdfsdf80.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf80","repositorySiteName":"asdfsdf80","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf80.azurewebsites.net","asdfsdf80.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf80.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf80.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:14:27.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf80","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf80\\$asdfsdf80","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf80.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf19","name":"asdfsdf19","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf19","state":"Running","hostNames":["asdfsdf19.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf19","repositorySiteName":"asdfsdf19","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf19.azurewebsites.net","asdfsdf19.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf19.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf19.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:42:05.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf19","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf19\\$asdfsdf19","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf19.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf113","name":"asdfsdf113","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf113","state":"Running","hostNames":["asdfsdf113.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf113","repositorySiteName":"asdfsdf113","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf113.azurewebsites.net","asdfsdf113.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf113.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf113.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:20:12.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf113","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf113\\$asdfsdf113","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf113.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf4","name":"asdfsdf4","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf4","state":"Running","hostNames":["asdfsdf4.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf4","repositorySiteName":"asdfsdf4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf4.azurewebsites.net","asdfsdf4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf4.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:56:33.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf4","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf4\\$asdfsdf4","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf7","name":"asdfsdf7","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf7","state":"Running","hostNames":["asdfsdf7.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf7","repositorySiteName":"asdfsdf7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf7.azurewebsites.net","asdfsdf7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf7.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:34:13.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf7","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf7\\$asdfsdf7","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf58","name":"asdfsdf58","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf58","state":"Running","hostNames":["asdfsdf58.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf58","repositorySiteName":"asdfsdf58","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf58.azurewebsites.net","asdfsdf58.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf58.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf58.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:38:46.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf58","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf58\\$asdfsdf58","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf58.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf92","name":"asdfsdf92","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf92","state":"Running","hostNames":["asdfsdf92.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf92","repositorySiteName":"asdfsdf92","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf92.azurewebsites.net","asdfsdf92.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf92.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf92.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:59:33.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf92","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf92\\$asdfsdf92","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf92.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf11","name":"asdfsdf11","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf11","state":"Running","hostNames":["asdfsdf11.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf11","repositorySiteName":"asdfsdf11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf11.azurewebsites.net","asdfsdf11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf11.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:55:20.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf11\\$asdfsdf11","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf3","name":"asdfsdf3","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf3","state":"Running","hostNames":["asdfsdf3.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf3","repositorySiteName":"asdfsdf3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf3.azurewebsites.net","asdfsdf3.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf3.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:53:08.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf3","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf3\\$asdfsdf3","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf13","name":"asdfsdf13","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf13","state":"Running","hostNames":["asdfsdf13.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf13","repositorySiteName":"asdfsdf13","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf13.azurewebsites.net","asdfsdf13.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf13.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf13.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:06.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf13","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf13\\$asdfsdf13","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf13.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf25","name":"asdfsdf25","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf25","state":"Running","hostNames":["asdfsdf25.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf25","repositorySiteName":"asdfsdf25","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf25.azurewebsites.net","asdfsdf25.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf25.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf25.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:26:57.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf25","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf25\\$asdfsdf25","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf25.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf2","name":"asdfsdf2","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf2","state":"Running","hostNames":["asdfsdf2.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf2","repositorySiteName":"asdfsdf2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf2.azurewebsites.net","asdfsdf2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf2.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:45:20.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf2","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf2\\$asdfsdf2","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf55","name":"asdfsdf55","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf55","state":"Running","hostNames":["asdfsdf55.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf55","repositorySiteName":"asdfsdf55","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf55.azurewebsites.net","asdfsdf55.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf55.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf55.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:32:32.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf55","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf55\\$asdfsdf55","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf55.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf40","name":"asdfsdf40","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf40","state":"Running","hostNames":["asdfsdf40.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf40","repositorySiteName":"asdfsdf40","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf40.azurewebsites.net","asdfsdf40.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf40.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf40.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:20:03.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf40","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf40\\$asdfsdf40","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf40.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf12","name":"asdfsdf12","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf12","state":"Running","hostNames":["asdfsdf12.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf12","repositorySiteName":"asdfsdf12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf12.azurewebsites.net","asdfsdf12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf12.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:08:25.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf12\\$asdfsdf12","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf16","name":"asdfsdf16","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf16","state":"Running","hostNames":["asdfsdf16.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf16","repositorySiteName":"asdfsdf16","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf16.azurewebsites.net","asdfsdf16.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf16.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf16.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T03:04:00.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf16","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf16\\$asdfsdf16","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf16.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf56","name":"asdfsdf56","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf56","state":"Running","hostNames":["asdfsdf56.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf56","repositorySiteName":"asdfsdf56","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf56.azurewebsites.net","asdfsdf56.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf56.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf56.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:40.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf56","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf56\\$asdfsdf56","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf56.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf22","name":"asdfsdf22","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf22","state":"Running","hostNames":["asdfsdf22.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf22","repositorySiteName":"asdfsdf22","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf22.azurewebsites.net","asdfsdf22.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf22.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf22.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:53:18.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf22","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf22\\$asdfsdf22","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf22.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf61","name":"asdfsdf61","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf61","state":"Running","hostNames":["asdfsdf61.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf61","repositorySiteName":"asdfsdf61","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf61.azurewebsites.net","asdfsdf61.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf61.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf61.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:07:53.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf61","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf61\\$asdfsdf61","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf61.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf90","name":"asdfsdf90","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf90","state":"Running","hostNames":["asdfsdf90.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf90","repositorySiteName":"asdfsdf90","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf90.azurewebsites.net","asdfsdf90.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf90.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf90.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:52:58.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf90","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf90\\$asdfsdf90","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf90.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf51","name":"asdfsdf51","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf51","state":"Running","hostNames":["asdfsdf51.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf51","repositorySiteName":"asdfsdf51","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf51.azurewebsites.net","asdfsdf51.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf51.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf51.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:19:44.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf51","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf51\\$asdfsdf51","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf51.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf114","name":"asdfsdf114","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf114","state":"Running","hostNames":["asdfsdf114.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf114","repositorySiteName":"asdfsdf114","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf114.azurewebsites.net","asdfsdf114.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf114.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf114.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:45.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf114","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf114\\$asdfsdf114","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf114.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf24","name":"asdfsdf24","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf24","state":"Running","hostNames":["asdfsdf24.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf24","repositorySiteName":"asdfsdf24","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf24.azurewebsites.net","asdfsdf24.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf24.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf24.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:18:42.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf24","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf24\\$asdfsdf24","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf24.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf15","name":"asdfsdf15","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf15","state":"Running","hostNames":["asdfsdf15.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf15","repositorySiteName":"asdfsdf15","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf15.azurewebsites.net","asdfsdf15.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf15.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf15.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:13:11.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf15","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf15\\$asdfsdf15","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf15.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf10","name":"asdfsdf10","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf10","state":"Running","hostNames":["asdfsdf10.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf10","repositorySiteName":"asdfsdf10","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf10.azurewebsites.net","asdfsdf10.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf10.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf10.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:04:58.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf10","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf10\\$asdfsdf10","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf10.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf60","name":"asdfsdf60","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf60","state":"Running","hostNames":["asdfsdf60.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf60","repositorySiteName":"asdfsdf60","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf60.azurewebsites.net","asdfsdf60.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf60.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf60.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:41:49.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf60","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf60\\$asdfsdf60","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf60.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf23","name":"asdfsdf23","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf23","state":"Running","hostNames":["asdfsdf23.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf23","repositorySiteName":"asdfsdf23","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf23.azurewebsites.net","asdfsdf23.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf23.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf23.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:15:03.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf23","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf23\\$asdfsdf23","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf23.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf14","name":"asdfsdf14","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf14","state":"Running","hostNames":["asdfsdf14.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf14","repositorySiteName":"asdfsdf14","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf14.azurewebsites.net","asdfsdf14.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf14.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf14.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:46.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf14","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf14\\$asdfsdf14","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf14.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf8","name":"asdfsdf8","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf8","state":"Running","hostNames":["asdfsdf8.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf8","repositorySiteName":"asdfsdf8","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf8.azurewebsites.net","asdfsdf8.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf8.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf8.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:37:40.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf8","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf8\\$asdfsdf8","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf8.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' headers: cache-control: - no-cache content-length: - - '35713' + - '491835' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Oct 2020 22:59:15 GMT + - Thu, 15 Oct 2020 06:11:40 GMT expires: - '-1' pragma: @@ -106,11 +193,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - bb883679-d4ca-4c29-9966-61f00a52953e - - 90e574ab-3538-43da-adbe-4634a2c650e0 - - 21ff131c-9f8c-4683-9026-151961a173e5 - - 15c88466-119a-40f6-8173-bc3e4cec8c0f - - 8a6b84d7-1e4e-49f2-8251-ef7da81f0a94 + - bf78fabb-263c-4b71-8317-5b4c4e1bb813 + - 870dd67c-320a-403f-9583-b87db073dbf4 + - 0392ea67-8715-4693-a67d-576d933b94a6 + - 87660b85-3dc6-4bce-8229-b003ff99dbd1 + - ab524c17-9a71-4c40-a466-bffde0f43e55 status: code: 200 message: OK @@ -132,8 +219,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -150,7 +237,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Oct 2020 22:59:18 GMT + - Thu, 15 Oct 2020 06:11:40 GMT expires: - '-1' pragma: @@ -186,30 +273,117 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/sites/cli-funcapp-nwrbofuimyzk","name":"cli-funcapp-nwrbofuimyzk","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrbofuimyzk","state":"Running","hostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net"],"webSpace":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace","selfLink":"https://waws-prod-os1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace/sites/cli-funcapp-nwrbofuimyzk","repositorySiteName":"cli-funcapp-nwrbofuimyzk","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net","cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T22:16:01.26","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrbofuimyzk","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.175.158.219","possibleInboundIpAddresses":"52.175.158.219,40.74.100.133","ftpUsername":"cli-funcapp-nwrbofuimyzk\\$cli-funcapp-nwrbofuimyzk","ftpsHostName":"ftps://waws-prod-os1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135","possibleOutboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135,104.46.236.70,104.215.17.186,104.215.17.210,104.215.19.221,104.215.23.198,52.175.158.219,40.74.100.133","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx","defaultHostName":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/sites/delete-me-weboyiqvj7rzdf","name":"delete-me-weboyiqvj7rzdf","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"delete-me-weboyiqvj7rzdf","state":"Running","hostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net"],"webSpace":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace/sites/delete-me-weboyiqvj7rzdf","repositorySiteName":"delete-me-weboyiqvj7rzdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net","delete-me-weboyiqvj7rzdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"delete-me-weboyiqvj7rzdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-weboyiqvj7rzdf.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.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/serverfarms/delete-me-planjxjoseu3lq","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T04:22:40.5","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"delete-me-weboyiqvj7rzdf","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"delete-me-weboyiqvj7rzdf\\$delete-me-weboyiqvj7rzdf","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f","defaultHostName":"delete-me-weboyiqvj7rzdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/sisirap-test-app-multicontainer","name":"sisirap-test-app-multicontainer","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East - US","properties":{"name":"sisirap-test-app-multicontainer","state":"Running","hostNames":["sisirap-test-app-multicontainer.azurewebsites.net"],"webSpace":"sisirap-RG-EastUSwebspace","selfLink":"https://waws-prod-blu-191.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap-RG-EastUSwebspace/sites/sisirap-test-app-multicontainer","repositorySiteName":"sisirap-test-app-multicontainer","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-test-app-multicontainer.azurewebsites.net","sisirap-test-app-multicontainer.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-test-app-multicontainer.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-app-multicontainer.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/sisirap-RG/providers/Microsoft.Web/serverfarms/sisirap-test-multicontainet","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T01:03:41.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-test-app-multicontainer","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.104.3","possibleInboundIpAddresses":"20.49.104.3","ftpUsername":"sisirap-test-app-multicontainer\\$sisirap-test-app-multicontainer","ftpsHostName":"ftps://waws-prod-blu-191.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225","possibleOutboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225,52.149.246.34,52.179.115.42,52.179.118.77,52.191.94.124,52.224.89.255,52.224.92.113,52.226.52.76,52.226.52.105,52.226.52.106,52.226.53.47,52.226.53.100,52.226.54.47","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-191","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap-RG","defaultHostName":"sisirap-test-app-multicontainer.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/sites/webapp-quick-linuxg6637p","name":"webapp-quick-linuxg6637p","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Canada - Central","properties":{"name":"webapp-quick-linuxg6637p","state":"Running","hostNames":["webapp-quick-linuxg6637p.azurewebsites.net"],"webSpace":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace","selfLink":"https://waws-prod-yt1-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace/sites/webapp-quick-linuxg6637p","repositorySiteName":"webapp-quick-linuxg6637p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linuxg6637p.azurewebsites.net","webapp-quick-linuxg6637p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quick-linuxg6637p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linuxg6637p.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.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/serverfarms/plan-quick-linuxo2y6abh3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-09T01:44:41.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-linuxg6637p","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"13.71.170.130","possibleInboundIpAddresses":"13.71.170.130","ftpUsername":"webapp-quick-linuxg6637p\\$webapp-quick-linuxg6637p","ftpsHostName":"ftps://waws-prod-yt1-019.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27","possibleOutboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27,40.85.254.37,40.85.219.45,40.85.223.56,52.228.42.60,52.228.42.28","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-yt1-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz","defaultHostName":"webapp-quick-linuxg6637p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp","name":"cliTestApp","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cliTestApp","state":"Running","hostNames":["lol.sisiraptestdomains.com","adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","test.sisiraptestdomains.com","hi.sisiraptestdomains.com","clitestapp.azurewebsites.net"],"webSpace":"cliTestApp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cliTestApp-CentralUSwebspace/sites/cliTestApp","repositorySiteName":"cliTestApp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","hi.sisiraptestdomains.com","lol.sisiraptestdomains.com","test.sisiraptestdomains.com","clitestapp.azurewebsites.net","clitestapp.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"adsec.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"foo.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hi.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"lol.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.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/cliTestApp/providers/Microsoft.Web/serverfarms/sisirap-testAsp3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T21:08:35.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cliTestApp","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":true,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.173.249.137","possibleInboundIpAddresses":"52.173.249.137","ftpUsername":"cliTestApp\\$cliTestApp","ftpsHostName":"ftps://waws-prod-dm1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28","possibleOutboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28,52.173.202.202,52.173.200.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cliTestApp","defaultHostName":"clitestapp.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","type":"Microsoft.Web/sites","kind":"app","location":"North - Central US","tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"properties":{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","state":"Running","hostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net"],"webSpace":"cleanupservice-NorthCentralUSwebspace","selfLink":"https://waws-prod-ch1-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cleanupservice-NorthCentralUSwebspace/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","repositorySiteName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","cln9106d9e7-97c4-4a8f-beae-c49b4977560a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.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/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T22:56:10.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.240.149.243","possibleInboundIpAddresses":"52.240.149.243","ftpUsername":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a\\$cln9106d9e7-97c4-4a8f-beae-c49b4977560a","ftpsHostName":"ftps://waws-prod-ch1-037.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224","possibleOutboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224,52.240.148.114,52.240.148.110,52.240.148.107","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ch1-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"resourceGroup":"cleanupservice","defaultHostName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d5ff1e04-850a-486e-8614-5c9fbaaf4326"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgpnanwoqol2rkrhgx/providers/Microsoft.Web/sites/up-nodeappspa7qkednrkx2a","name":"up-nodeappspa7qkednrkx2a","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappspa7qkednrkx2a","state":"Running","hostNames":["up-nodeappspa7qkednrkx2a.azurewebsites.net"],"webSpace":"clitestgpnanwoqol2rkrhgx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestgpnanwoqol2rkrhgx-CentralUSwebspace/sites/up-nodeappspa7qkednrkx2a","repositorySiteName":"up-nodeappspa7qkednrkx2a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappspa7qkednrkx2a.azurewebsites.net","up-nodeappspa7qkednrkx2a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappspa7qkednrkx2a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappspa7qkednrkx2a.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/clitestgpnanwoqol2rkrhgx/providers/Microsoft.Web/serverfarms/up-nodeplanbxjerum5azmp5","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappspa7qkednrkx2a","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeappspa7qkednrkx2a\\$up-nodeappspa7qkednrkx2a","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestgpnanwoqol2rkrhgx","defaultHostName":"up-nodeappspa7qkednrkx2a.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthdstbfqkucxxwhute/providers/Microsoft.Web/sites/up-statichtmlapp2qc4tdlz","name":"up-statichtmlapp2qc4tdlz","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp2qc4tdlz","state":"Running","hostNames":["up-statichtmlapp2qc4tdlz.azurewebsites.net"],"webSpace":"clitesthdstbfqkucxxwhute-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthdstbfqkucxxwhute-CentralUSwebspace/sites/up-statichtmlapp2qc4tdlz","repositorySiteName":"up-statichtmlapp2qc4tdlz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp2qc4tdlz.azurewebsites.net","up-statichtmlapp2qc4tdlz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp2qc4tdlz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp2qc4tdlz.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthdstbfqkucxxwhute/providers/Microsoft.Web/serverfarms/up-statichtmlplanxroggye","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:39.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp2qc4tdlz","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp2qc4tdlz\\$up-statichtmlapp2qc4tdlz","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthdstbfqkucxxwhute","defaultHostName":"up-statichtmlapp2qc4tdlz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdimfvecuutss4jphq/providers/Microsoft.Web/sites/up-nodeappno6nw26h7ndwsa","name":"up-nodeappno6nw26h7ndwsa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappno6nw26h7ndwsa","state":"Running","hostNames":["up-nodeappno6nw26h7ndwsa.azurewebsites.net"],"webSpace":"clitestdimfvecuutss4jphq-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdimfvecuutss4jphq-CentralUSwebspace/sites/up-nodeappno6nw26h7ndwsa","repositorySiteName":"up-nodeappno6nw26h7ndwsa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappno6nw26h7ndwsa.azurewebsites.net","up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappno6nw26h7ndwsa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappno6nw26h7ndwsa.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/clitestdimfvecuutss4jphq/providers/Microsoft.Web/serverfarms/up-nodeplanruhie27coz2ik","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappno6nw26h7ndwsa","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeappno6nw26h7ndwsa\\$up-nodeappno6nw26h7ndwsa","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdimfvecuutss4jphq","defaultHostName":"up-nodeappno6nw26h7ndwsa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5etzi2mlgu6vtoru6/providers/Microsoft.Web/sites/up-pythonapp7i4rketjuszt","name":"up-pythonapp7i4rketjuszt","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp7i4rketjuszt","state":"Running","hostNames":["up-pythonapp7i4rketjuszt.azurewebsites.net"],"webSpace":"clitest5etzi2mlgu6vtoru6-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5etzi2mlgu6vtoru6-CentralUSwebspace/sites/up-pythonapp7i4rketjuszt","repositorySiteName":"up-pythonapp7i4rketjuszt","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp7i4rketjuszt.azurewebsites.net","up-pythonapp7i4rketjuszt.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapp7i4rketjuszt.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp7i4rketjuszt.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/clitest5etzi2mlgu6vtoru6/providers/Microsoft.Web/serverfarms/up-pythonplankpudhiqcoj7","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:18.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp7i4rketjuszt","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"up-pythonapp7i4rketjuszt\\$up-pythonapp7i4rketjuszt","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5etzi2mlgu6vtoru6","defaultHostName":"up-pythonapp7i4rketjuszt.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf50","name":"asdfsdf50","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf50","state":"Running","hostNames":["asdfsdf50.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf50","repositorySiteName":"asdfsdf50","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf50.azurewebsites.net","asdfsdf50.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf50.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf50.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:25:13.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf50","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf50\\$asdfsdf50","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf50.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf21","name":"asdfsdf21","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf21","state":"Running","hostNames":["asdfsdf21.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf21","repositorySiteName":"asdfsdf21","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf21.azurewebsites.net","asdfsdf21.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf21.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf21.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:55.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf21","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf21\\$asdfsdf21","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf21.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf111","name":"asdfsdf111","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf111","state":"Running","hostNames":["asdfsdf111.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf111","repositorySiteName":"asdfsdf111","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf111.azurewebsites.net","asdfsdf111.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf111.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf111.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:14:36.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf111","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf111\\$asdfsdf111","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf111.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf28","name":"asdfsdf28","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf28","state":"Running","hostNames":["asdfsdf28.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf28","repositorySiteName":"asdfsdf28","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf28.azurewebsites.net","asdfsdf28.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.6"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf28.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf28.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T22:09:43.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf28","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf28\\$asdfsdf28","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf28.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf6","name":"asdfsdf6","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf6","state":"Running","hostNames":["asdfsdf6.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf6","repositorySiteName":"asdfsdf6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf6.azurewebsites.net","asdfsdf6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf6.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:05:37.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf6","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf6\\$asdfsdf6","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf59","name":"asdfsdf59","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf59","state":"Running","hostNames":["asdfsdf59.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf59","repositorySiteName":"asdfsdf59","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf59.azurewebsites.net","asdfsdf59.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf59.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf59.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:43:10.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf59","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf59\\$asdfsdf59","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf59.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf5","name":"asdfsdf5","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf5","state":"Running","hostNames":["asdfsdf5.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf5","repositorySiteName":"asdfsdf5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf5.azurewebsites.net","asdfsdf5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf5.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:59:21.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf5","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf5\\$asdfsdf5","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf57","name":"asdfsdf57","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf57","state":"Running","hostNames":["asdfsdf57.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf57","repositorySiteName":"asdfsdf57","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf57.azurewebsites.net","asdfsdf57.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf57.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf57.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:26.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf57","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf57\\$asdfsdf57","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf57.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf30","name":"asdfsdf30","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf30","state":"Running","hostNames":["asdfsdf30.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf30","repositorySiteName":"asdfsdf30","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf30.azurewebsites.net","asdfsdf30.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf30.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf30.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T23:25:37.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf30","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf30\\$asdfsdf30","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf30.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf54","name":"asdfsdf54","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf54","state":"Running","hostNames":["asdfsdf54.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf54","repositorySiteName":"asdfsdf54","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf54.azurewebsites.net","asdfsdf54.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf54.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf54.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:27:07.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf54","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf54\\$asdfsdf54","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf54.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf52","name":"asdfsdf52","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf52","state":"Running","hostNames":["asdfsdf52.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf52","repositorySiteName":"asdfsdf52","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf52.azurewebsites.net","asdfsdf52.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf52.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf52.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:34:47.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf52","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf52\\$asdfsdf52","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf52.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf112","name":"asdfsdf112","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf112","state":"Running","hostNames":["asdfsdf112.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf112","repositorySiteName":"asdfsdf112","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf112.azurewebsites.net","asdfsdf112.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf112.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf112.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:21:31.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf112","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf112\\$asdfsdf112","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf112.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf85","name":"asdfsdf85","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf85","state":"Running","hostNames":["asdfsdf85.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf85","repositorySiteName":"asdfsdf85","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf85.azurewebsites.net","asdfsdf85.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf85.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf85.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:39:46.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf85","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf85\\$asdfsdf85","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf85.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf","name":"asdfsdf","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf","state":"Running","hostNames":["asdfsdf.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf","repositorySiteName":"asdfsdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf.azurewebsites.net","asdfsdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.7"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:21:18.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf\\$asdfsdf","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf42","name":"asdfsdf42","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf42","state":"Running","hostNames":["asdfsdf42.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf42","repositorySiteName":"asdfsdf42","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf42.azurewebsites.net","asdfsdf42.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf42.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf42.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:38:19.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf42","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf42\\$asdfsdf42","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf42.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf27","name":"asdfsdf27","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf27","state":"Running","hostNames":["asdfsdf27.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf27","repositorySiteName":"asdfsdf27","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf27.azurewebsites.net","asdfsdf27.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf27.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf27.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:32:39.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf27","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf27\\$asdfsdf27","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf27.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf43","name":"asdfsdf43","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf43","state":"Running","hostNames":["asdfsdf43.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf43","repositorySiteName":"asdfsdf43","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf43.azurewebsites.net","asdfsdf43.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf43.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf43.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:45:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf43","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf43\\$asdfsdf43","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf43.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf80","name":"asdfsdf80","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf80","state":"Running","hostNames":["asdfsdf80.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf80","repositorySiteName":"asdfsdf80","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf80.azurewebsites.net","asdfsdf80.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf80.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf80.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:14:27.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf80","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf80\\$asdfsdf80","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf80.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf19","name":"asdfsdf19","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf19","state":"Running","hostNames":["asdfsdf19.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf19","repositorySiteName":"asdfsdf19","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf19.azurewebsites.net","asdfsdf19.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf19.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf19.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:42:05.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf19","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf19\\$asdfsdf19","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf19.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf113","name":"asdfsdf113","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf113","state":"Running","hostNames":["asdfsdf113.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf113","repositorySiteName":"asdfsdf113","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf113.azurewebsites.net","asdfsdf113.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf113.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf113.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:20:12.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf113","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf113\\$asdfsdf113","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf113.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf4","name":"asdfsdf4","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf4","state":"Running","hostNames":["asdfsdf4.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf4","repositorySiteName":"asdfsdf4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf4.azurewebsites.net","asdfsdf4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf4.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:56:33.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf4","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf4\\$asdfsdf4","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf7","name":"asdfsdf7","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf7","state":"Running","hostNames":["asdfsdf7.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf7","repositorySiteName":"asdfsdf7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf7.azurewebsites.net","asdfsdf7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf7.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:34:13.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf7","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf7\\$asdfsdf7","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf58","name":"asdfsdf58","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf58","state":"Running","hostNames":["asdfsdf58.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf58","repositorySiteName":"asdfsdf58","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf58.azurewebsites.net","asdfsdf58.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf58.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf58.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:38:46.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf58","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf58\\$asdfsdf58","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf58.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf92","name":"asdfsdf92","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf92","state":"Running","hostNames":["asdfsdf92.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf92","repositorySiteName":"asdfsdf92","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf92.azurewebsites.net","asdfsdf92.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf92.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf92.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:59:33.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf92","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf92\\$asdfsdf92","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf92.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf11","name":"asdfsdf11","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf11","state":"Running","hostNames":["asdfsdf11.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf11","repositorySiteName":"asdfsdf11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf11.azurewebsites.net","asdfsdf11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf11.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:55:20.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf11\\$asdfsdf11","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf3","name":"asdfsdf3","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf3","state":"Running","hostNames":["asdfsdf3.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf3","repositorySiteName":"asdfsdf3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf3.azurewebsites.net","asdfsdf3.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf3.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:53:08.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf3","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf3\\$asdfsdf3","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf13","name":"asdfsdf13","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf13","state":"Running","hostNames":["asdfsdf13.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf13","repositorySiteName":"asdfsdf13","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf13.azurewebsites.net","asdfsdf13.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf13.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf13.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:06.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf13","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf13\\$asdfsdf13","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf13.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf25","name":"asdfsdf25","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf25","state":"Running","hostNames":["asdfsdf25.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf25","repositorySiteName":"asdfsdf25","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf25.azurewebsites.net","asdfsdf25.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf25.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf25.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:26:57.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf25","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf25\\$asdfsdf25","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf25.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf2","name":"asdfsdf2","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf2","state":"Running","hostNames":["asdfsdf2.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf2","repositorySiteName":"asdfsdf2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf2.azurewebsites.net","asdfsdf2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf2.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:45:20.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf2","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf2\\$asdfsdf2","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf55","name":"asdfsdf55","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf55","state":"Running","hostNames":["asdfsdf55.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf55","repositorySiteName":"asdfsdf55","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf55.azurewebsites.net","asdfsdf55.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf55.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf55.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:32:32.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf55","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf55\\$asdfsdf55","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf55.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf40","name":"asdfsdf40","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf40","state":"Running","hostNames":["asdfsdf40.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf40","repositorySiteName":"asdfsdf40","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf40.azurewebsites.net","asdfsdf40.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf40.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf40.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:20:03.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf40","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf40\\$asdfsdf40","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf40.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf12","name":"asdfsdf12","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf12","state":"Running","hostNames":["asdfsdf12.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf12","repositorySiteName":"asdfsdf12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf12.azurewebsites.net","asdfsdf12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf12.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:08:25.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf12\\$asdfsdf12","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf16","name":"asdfsdf16","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf16","state":"Running","hostNames":["asdfsdf16.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf16","repositorySiteName":"asdfsdf16","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf16.azurewebsites.net","asdfsdf16.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf16.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf16.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T03:04:00.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf16","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf16\\$asdfsdf16","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf16.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf56","name":"asdfsdf56","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf56","state":"Running","hostNames":["asdfsdf56.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf56","repositorySiteName":"asdfsdf56","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf56.azurewebsites.net","asdfsdf56.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf56.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf56.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:40.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf56","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf56\\$asdfsdf56","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf56.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf22","name":"asdfsdf22","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf22","state":"Running","hostNames":["asdfsdf22.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf22","repositorySiteName":"asdfsdf22","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf22.azurewebsites.net","asdfsdf22.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf22.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf22.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:53:18.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf22","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf22\\$asdfsdf22","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf22.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf61","name":"asdfsdf61","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf61","state":"Running","hostNames":["asdfsdf61.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf61","repositorySiteName":"asdfsdf61","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf61.azurewebsites.net","asdfsdf61.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf61.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf61.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:07:53.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf61","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf61\\$asdfsdf61","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf61.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf90","name":"asdfsdf90","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf90","state":"Running","hostNames":["asdfsdf90.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf90","repositorySiteName":"asdfsdf90","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf90.azurewebsites.net","asdfsdf90.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf90.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf90.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:52:58.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf90","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf90\\$asdfsdf90","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf90.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf51","name":"asdfsdf51","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf51","state":"Running","hostNames":["asdfsdf51.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf51","repositorySiteName":"asdfsdf51","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf51.azurewebsites.net","asdfsdf51.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf51.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf51.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:19:44.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf51","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf51\\$asdfsdf51","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf51.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf114","name":"asdfsdf114","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf114","state":"Running","hostNames":["asdfsdf114.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf114","repositorySiteName":"asdfsdf114","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf114.azurewebsites.net","asdfsdf114.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf114.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf114.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:45.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf114","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf114\\$asdfsdf114","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf114.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf24","name":"asdfsdf24","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf24","state":"Running","hostNames":["asdfsdf24.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf24","repositorySiteName":"asdfsdf24","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf24.azurewebsites.net","asdfsdf24.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf24.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf24.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:18:42.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf24","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf24\\$asdfsdf24","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf24.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf15","name":"asdfsdf15","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf15","state":"Running","hostNames":["asdfsdf15.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf15","repositorySiteName":"asdfsdf15","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf15.azurewebsites.net","asdfsdf15.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf15.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf15.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:13:11.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf15","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf15\\$asdfsdf15","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf15.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf10","name":"asdfsdf10","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf10","state":"Running","hostNames":["asdfsdf10.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf10","repositorySiteName":"asdfsdf10","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf10.azurewebsites.net","asdfsdf10.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf10.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf10.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:04:58.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf10","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf10\\$asdfsdf10","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf10.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf60","name":"asdfsdf60","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf60","state":"Running","hostNames":["asdfsdf60.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf60","repositorySiteName":"asdfsdf60","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf60.azurewebsites.net","asdfsdf60.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf60.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf60.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:41:49.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf60","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf60\\$asdfsdf60","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf60.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf23","name":"asdfsdf23","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf23","state":"Running","hostNames":["asdfsdf23.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf23","repositorySiteName":"asdfsdf23","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf23.azurewebsites.net","asdfsdf23.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf23.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf23.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:15:03.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf23","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf23\\$asdfsdf23","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf23.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf14","name":"asdfsdf14","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf14","state":"Running","hostNames":["asdfsdf14.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf14","repositorySiteName":"asdfsdf14","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf14.azurewebsites.net","asdfsdf14.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf14.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf14.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:46.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf14","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf14\\$asdfsdf14","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf14.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf8","name":"asdfsdf8","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf8","state":"Running","hostNames":["asdfsdf8.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf8","repositorySiteName":"asdfsdf8","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf8.azurewebsites.net","asdfsdf8.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf8.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf8.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:37:40.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf8","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf8\\$asdfsdf8","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf8.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' headers: cache-control: - no-cache content-length: - - '35713' + - '491835' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Oct 2020 22:59:19 GMT + - Thu, 15 Oct 2020 06:11:54 GMT expires: - '-1' pragma: @@ -221,11 +395,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 15c961c6-422f-44ca-9b4a-76edbe6080d4 - - 6fd973ec-0ec8-4819-a455-7f9b910a8a08 - - 7022a106-f151-4fe7-b768-bc1e553a60c2 - - 0a7a7e2e-e791-4394-ab37-f98e6a68746b - - e4f27a16-98e2-4cb2-b337-a895e24c06c0 + - c99b8d42-d8d6-4722-b95f-3f69839c8dba + - 8be0e95b-3334-4818-8f8f-965bc5548b26 + - 7208041c-ced5-4766-bfd8-2d6dbfe5fcf5 + - 006093e1-9a2a-4a0d-b2f2-f47e77dc56d1 + - 84dd2a16-021a-4d76-8e6a-2e61cae00cbe status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_node_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_node_e2e.yaml new file mode 100644 index 00000000000..78ff1252ce1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_node_e2e.yaml @@ -0,0 +1,2356 @@ +interactions: +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=P1V2&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/calcha_rg_Linux_centralus?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","name":"calcha_asp_Linux_centralus_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23474,"name":"calcha_asp_Linux_centralus_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":7,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"calcha_rg_Linux_centralus","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_23474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1437' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","name":"calcha_asp_Linux_centralus_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23474,"name":"calcha_asp_Linux_centralus_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":7,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"calcha_rg_Linux_centralus","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_23474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1437' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=P1V2&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "P1V2", "tier": "PREMIUMV2", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '163' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":26264,"name":"up-nodeplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-107_26264","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 + content-length: + - '1384' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":26264,"name":"up-nodeplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-107_26264","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 + content-length: + - '1384' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: '{"name": "up-nodeapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '542' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:03.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5677' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:18 GMT + etag: + - '"1D6A2B9F68B92C0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11:18 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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:04.3","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5471' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:19 GMT + etag: + - '"1D6A2B9F68B92C0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:21 GMT + etag: + - '"1D6A2BA007B36A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"GdpSP2D5QBFlojEv6lTjbfc1d0wPduETZwkqaHkzzclAmCQi1eH4srQti0LX","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:GdpSP2D5QBFlojEv6lTjbfc1d0wPduETZwkqaHkzzclAmCQi1eH4srQti0LX@up-nodeapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5472' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:21 GMT + etag: + - '"1D6A2BA007B36A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11:23 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: !!binary | + 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 + CwALAJYCAADQLgAAAAA= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '12668' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:11:34 GMT + location: + - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-11-34Z + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":1,"status_text":"Building + and Deploying ''71327ce5f07f4fae9c69b7017c93714e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:40 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":1,"status_text":"Building + and Deploying ''71327ce5f07f4fae9c69b7017c93714e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:43 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":1,"status_text":"Building + and Deploying ''71327ce5f07f4fae9c69b7017c93714e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:45 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":1,"status_text":"Building + and Deploying ''71327ce5f07f4fae9c69b7017c93714e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:48 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":1,"status_text":"Building + and Deploying ''71327ce5f07f4fae9c69b7017c93714e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:51 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":1,"status_text":"Building + and Deploying ''71327ce5f07f4fae9c69b7017c93714e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:53 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"71327ce5f07f4fae9c69b7017c93714e","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:11:36.2783953Z","start_time":"2020-10-15T06:11:36.3502738Z","end_time":"2020-10-15T06:11:54.7031794Z","last_success_end_time":"2020-10-15T06:11:54.7031794Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003"}' + headers: + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:55 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5472' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:57 GMT + etag: + - '"1D6A2BA007B36A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5472' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:57 GMT + etag: + - '"1D6A2BA007B36A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"104.43.221.31","possibleInboundIpAddresses":"104.43.221.31","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-107.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","possibleOutboundIpAddresses":"104.43.221.31,168.61.176.197,168.61.180.130,168.61.179.122,168.61.183.125,23.99.137.66,168.61.182.69,168.61.182.107,168.61.180.149,23.99.159.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5472' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:58 GMT + etag: + - '"1D6A2BA007B36A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11:58 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: + - '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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web","name":"up-nodeapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-nodeapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3601' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: + - webapp config appsettings list + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-nodeapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":26264,"name":"up-nodeplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-107_26264","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 + content-length: + - '1384' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_python_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_python_e2e.yaml new file mode 100644 index 00000000000..23f8cce2f23 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_python_e2e.yaml @@ -0,0 +1,3505 @@ +interactions: +- request: + body: '{"name": "up-pythonapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/calcha_rg_Linux_centralus?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:12:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","name":"calcha_asp_Linux_centralus_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23474,"name":"calcha_asp_Linux_centralus_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":7,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"calcha_rg_Linux_centralus","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_23474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1437' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","name":"calcha_asp_Linux_centralus_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23474,"name":"calcha_asp_Linux_centralus_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":7,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"calcha_rg_Linux_centralus","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_23474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1437' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "up-pythonapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:12:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:12:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:12: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","name":"up-pythonplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":2620,"name":"up-pythonplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-179_2620","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: + - '1385' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","name":"up-pythonplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":2620,"name":"up-pythonplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-179_2620","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: + - '1385' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: '{"name": "up-pythonapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "python|3.7", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '542' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.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":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:25.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5776' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:42 GMT + etag: + - '"1D6A2BA27621DCB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1152' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:12: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.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":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:26.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5576' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:42 GMT + etag: + - '"1D6A2BA27621DCB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:44 GMT + etag: + - '"1D6A2BA323DC255"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishingcredentials/$up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-pythonapp000003","publishingPassword":"oJkHHe6kbkPHexLiqwd1kuWMEy5la28kKFfSZnK5Nmt2loJuMg1mS7pc821r","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-pythonapp000003:oJkHHe6kbkPHexLiqwd1kuWMEy5la28kKFfSZnK5Nmt2loJuMg1mS7pc821r@up-pythonapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.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":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:44.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5576' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:12:45 GMT + etag: + - '"1D6A2BA323DC255"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1152' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:12: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-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!binary | + 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 + ZWE1NWY1N2Q0OWQ3NTU2ODBiZjE0MGQ3OTUBxwA4/3gBKylKTVUwtDRjMDQwMDMxUdBLzyzJTM/L + L0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtU + SZCro4uvq15uCsOlvopL9ju6i7arFV3bXaqwcVfGoUNQRYkFBTmZyYklmfl5egWVDCuyXy27zfK6 + 7Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5Jd5b9T8va22zUEgFAHBa + UhJQSwMEFAAAAAgAgrlOUV1WH0u1AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvMTkvMWJiM2ZiYTA3 + NWY0NTVmNDhlNmQ3NmRkYjQxNjE2YmMzNDIxNzYBsABP/3gBjY5BasMwEEW71inmAi0zo5ElQQkh + u6xDu5c9o9RQ20FR2+vHhR6gqwcf3udN27LMHdjjU29mEHOVQKOGQdCrcPQlECNjMMxUK9fsJQm5 + W2m2dhCxKNWiatZqXAfmFHkgTfuFBqSYgiglV776x9bgZG1VeLd27/A6fv/yeF3K/PkybcsBKBDl + zAkFnjEhun3d+7r90/SE/s90bzct3eB8vsCPjTBta52v7gHsuEbxUEsDBBQAAAAIAIK5TlHmy6VV + vwAAALoAAAA2AAAALmdpdC9vYmplY3RzLzI3Lzk2YjBhZmVkNjU1ZTBlNTYxYmVmYmRjNWJlZmEx + M2U3ZGZkYTlhAboARf94AbXPTU7EMAwFYNY9hS8wVX47toQQWxaIBSdwHZeJNG2qNF3M7YlAHAEv + Pz29J0tZ19zAET61qgouMYmP/XyImBLJLOIoLgF9IhcsW8dop2HnqluDyJFQHaLnq0nao4YDWmF2 + HqclCM1zJHEDn+1WKrxnqeUoS4OPXTf4LGcVhef1j0vX4wdfz0PrMW6l6n5/jF+53c55lLK+gA1k + jbHOTnAxV2OGrv2Lpv/VP7xtuWW+w+/QN0hEZOJQSwMEFAAAAAgAgrlOUd9fzDX5AAAA9AAAADYA + AAAuZ2l0L29iamVjdHMvMjgvODhlYzNjOWE0MTMxMTE4Y2ZmZjBjOTQ0N2ZhYzM4NTI4MjM0OWEB + 9AAL/3gBjZFBS8QwEIU9C/6HEFjQS+tBEKQrFFvcQtnDttZLIGTbsQ22SUimqf337i6r6LoH5/hg + vvfezLbXW3J3e38R1Vq9yXa0AqVWj1eXhETCmAIQpWrdQdhLTUPeYV7S1+I543Fe8irblC9xnq4r + vorXSZ5uKPGiH2FJByFVsINQEv5rP34qsyouU16usoLuIxznyEseWKcHYE4isGmarNbIQHlW1FYa + dEzUKL1A4NhJF5j5nLGZsdPKCOy+cy6K2SEMiZUeFn8tzlEO9U/7emlxFP0uETdWf8xBC8h/iJ1Q + TQ/2+uaLGIW/TxyFp1/4BA3JhblQSwMEFAAAAAgAgrlOUSfS34p9AAAAeAAAADYAAAAuZ2l0L29i + amVjdHMvMmQvYTljMzU1NTUzNDU4ZGQ5Y2JjYzI5NWY0ODNkOTI0MWExMmE4MTYBeACH/3gBKylK + TVUwNDRgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O3 + 1FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCkObyuZLMde+3mSSkuJifv7tvvMZBgEA9AYs + IVBLAwQUAAAACACCuU5RPvkO0tgCAADTAgAANgAAAC5naXQvb2JqZWN0cy8zMC82NDkwZGYwMGYy + ZTBkZTU2MDU3Y2ZkODBiZDZkMGY3MWMxOTI1MgHTAiz9eAGNVV1P20AQ7HOl/ofTPVEe7NJWICG7 + yAoJiQQ0xA5VpajWxd44J2yfuTvbRJT/3vVXcNIgkafcam93dmZuvYzFkpycnp1+sC6ekpgUIBUX + qU1PjC/04senj1Yg0hWPcsk0xjFAiMWyzAWteRqpOlCFwpA8wMamv9yrie9ce/79ZObNnevh7b0/ + dm4vr4czSgoW52BTvG+UKuI+/qHEfFcNZ+BN7h1v6HvjiUsrGO2vrXl5vliLBBaKa1iUZSmF0AtI + i4UbSJ5ptWCB5gXT4Os1V0a2ebNxh/b/HpkulF9wqXMWY2k/k+JpY0Sg+8E1S8MY5NHnQw2mv73x + z9up4423ZBwC3l21zH2qLbVRGhKjhGVHWyCSjMe1PCSEZR7ZVMscKNFMIraRZAmUQj7Y9Dtq2tJt + mXuFeoVdkGiDrnwiwjwGRWSeOnF8w1IWQXjTBEdCYmwGjzkorbq+W0FbKjqToE0kJKIAkiIkm043 + ei3Sr2fIHvNHTOnB1aTDV4l7KPvb9zezKwv2C5OuZE9IQjKm1zZtkRmrIOJ9M5HqASxterwbbDmw + aV0y4s34uzmq9tlUigCUEtKmKGw34SKrRzXgCf72w503yxVOj1AqW+6glaBELgPwNhkSNk9VBgFf + cQj30x5zLsEJqt42bcq+UmmZe0ogs6XEh9JqXFFdabw9toGWTlejuQIy4phCidIia6fEBdBq3ruJ + d3FlhLxaF/2KtaKVRjzNct15BeXQIHHfrFis0LOdd5rHbZkHS1lmBbfXs4bfoh20+wpIw/67ECdM + B2uSy9imR8YxPl0epULCgCmk/TC0g8j2h3yeDe/mQ9fz57PJC63M10z7x1Q1qaZxvNurebkpRLip + Oo7exQnSXm04kRJde2XWKLzrk4bVZs7+EzCfZ+cnLwdzcQFBGt7lIDeulq+K7yi1J0hz7MTHU89t + /cWzXTS1zr2vzD9t7e9ZUEsDBBQAAAAIAIK5TlG3e9k3dAIAAG8CAAA2AAAALmdpdC9vYmplY3Rz + LzNhLzQ2ODcxYjViNzJiNGRiNWRkYTFlZDEzODY0Mjg1Y2ZmYzY2NGM3AW8CkP14AW1S226bQBDt + M1+xUh+tJCwsNympsmCMsQEbXJs6b8AuGJebYbnYX1+aqm8ZaaSZ0ZkzOjqT1GWZM6Bo6BtrKZ2L + FEkwJpKMeJEgQREjCQq8wEuU12CaCqkmIhVBrolaWjGAEFVQShVCNJJSIZUFQVUEGRJ1piASDxVV + QgSq//FQg3EspnHEK9J8aU6VykSRCYkRlKEcJyISoCJzUc8udQuMur2DVT0WtAWvydy8d/eKRVOC + nivKfgAoQahpSFEF8MSrPM8ln4LYDLdytu5j8FrVLW2K+3uWs0sfP8+AL9ayJuvyDDz9Dd20bA/s + rT042JaHfx4D83POAQ6MnZ7oGOsGxr7ub6L1I6RGoG+VyxXtBrG1R4zJ2rax4S+weM54Z8lr/UTH + vRq4ezXlAIvZ2CNvWPiFszZF94BJ7cJwmu7CR9pFbdqfooAkCwmGpTHarliuSNjauu+VWZjQKweo + sAiJqq1UQ1x0H6WzaR7OyZRYh9fj42TyvpaLMbVadb/bFo5Zjv7LB7LKQJnsc5MhnQPdlgq3VbF5 + Waxd3Thcbx0a4GKlWvS0n/wx2lyzXLj11iHCjfNbH4JBkzbScFvuii1Li1nFzlkWWJXI8XyLrrpz + 2KGiUuRaOTpFtPEe7iizqVwZ1gc70tPO9+T7ZapILAaJhyExthyoz1pYDMleV4oMt767YtVh43ex + jJOGvxSiHYS8VTVquP51t3PZPC6XwfYxGxnGbnlx3zjwpov9kvvnmektv3aMc2mbUdD0RQFaeutp + x8B3CaRtXYKYthUZaNuxlzLq5p/huGNDIkaBbR/ASGOQ1FWaZ38ArC724lBLAwQUAAAACACCuU5R + aWxmErUAAACwAAAANgAAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkwNjcyOGY2NmE3MWY2 + MjBhNmQxZTc4YmZlYQGwAE//eAGdjktqxDAQBbPWKXo/JLS+lmAIgdnmEi2pZQtGlrFlmOOPc4Xs + HgVFvdRbqwOUmT7GzgzBGqtz5IxBS2lYs7ZRa+ujkm7CrCzKGFCJjXZeBxgsxEmip5QDFeeKzeTJ + Oh8cUjbklC8ki6BzLH2HB28LHfBbV7inv/2s60+rae9HL+Mr9fYN0mozOenQww0VorjodXLwP3UR + z/ocn1fyyp4vqI1mhrTQOvMh3gH5TxNQSwMEFAAAAAgAgrlOUU7njgquAQAAqQEAADYAAAAuZ2l0 + L29iamVjdHMvM2YvMjE0NjVlZjZlZWZjM2MxZjc4Mjc1Zjk0YzE2NTBiNTZlZmQzYmQBqQFW/ngB + xZMxb9swEIU7C/B/OCSLBURShy7VVCOApxZtkW5BUNDUyWIi8mjeqan763uU0joJvHQqoIEgj++9 + +47ajbSD92/fvamqalVEs8fvcozYAhsfR1wVHbJNLoqj0MLFt8Ex6GfAu+C8GZ/qwMQIMhiBDj0F + lmQEGQZ6BCFIU9AbX44yUIDtaPgh14/OmiwL+m1+TQlhoyI3mH44i3nzowvTz/piVYwm7CeNxu2q + qCDOOho2UTdZWTZNFsin86JS+YoXJd3Mra2Ky5cJlgahp3TGfT17l/naf2g52241lyeF4oJG9DOp + K9CRGEZgRKWNcPvENBN8xu4wOfvAYpLcrQeRyG3TdGS59s4mYuqltuSbGVXzDFVjKYhxARM3J41q + AV7WM8RLuNai5HaTuLD/C0iHcY9WYDD6ODqKgt2S8NMfS/gcMcANTUmne02djrjPWnmGp5ikRTzX + vApr9Qb1GjDXN2UN5wCdwLwygO3m6z+b9ObQlKBzmLFoc7c5XQ7y4QXIu7U3bhRqzx+X8OhkABOO + SqZz+cnrf3OYkPOSFwPvMQgr4t/drkGyUEsDBBQAAAAIAIK5TlHcCWidZQAAAGAAAAA2AAAALmdp + dC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1AWAAn/94 + AUvKyU9SsLBgSM7JTM62tTXTM+dyy0ksBjIN9Qz0jLgyS4pTEvPSU4vyS4ttbYEiJlxemXlZiUa2 + tkZ6hgZcvolF2aUFwYlpqWAdXOGpRdlVqaXpILWGJnqGAG83HG5QSwMEFAAAAAgAgrlOUX3zWBq1 + AAAAsAAAADYAAAAuZ2l0L29iamVjdHMvNDAvZmFlYzEwOGFjZDlhZjY2ZjVkYThhNTY4OTYwYWQ0 + YTYyOGZhMWYBsABP/3gBnY5BasQwDEW7zim0LxRLkZwJDKXQbS+hKDZj2thTR9Pz171CN5/Hh/f5 + 1o6jOJCEJ+8pgZouikxIKa5r1piRLkKXuEfBEUvmoBR5umtP1UFi5C1Spo2zsfC8zGxhRyXhYChb + 0Cxpnyd9+K11eE/3m57wUSpc7Y+/Sn07ivV2tuwv1o5XQJmRVw4o8BwohGm046Snf+rDrz+pO3iD + ga6ljqnvR7HP07X79AubyVBMUEsDBBQAAAAIAIK5TlGWCbN+/gAAAPkAAAA2AAAALmdpdC9vYmpl + Y3RzLzQ0L2U3NGZlN2RkOWRmZTJmNjIyODcyNjFkOGQ1NmQ1MDE3ODU0ZDE4AfkABv94AW2Py2rD + MBBFu/ZXDHTdVA9LI0EogULaTT5iJI0SE78qy2399zWF7rq6XDjnwo3TMHQVtMSHWpjBsJbSY0TU + 1qPUUsmYbeuc4WBdcJSkMy2bZqbCYwWF3gZBmZM1hgUbKwPnkKLZg6RmTDmRpz/eOt1GaXxSQVhU + WRFmgcEJGz0JCsJIH1CJhtZ6mwq8TmWD8/TVc4Fj3Mtp2cZK37E9jFxfQLZeGasQFTwJFKKJv4fq + jr919X0NcBynwnO/na5dva3hsAP/aM2Fy5VhXvseCn+svFR4VJDLNEDgMqZPLkt9HmjZp5vm0o3d + QD2ce1ruQPP8A4ZAZOBQSwMEFAAAAAgAgrlOUT1AKpTMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMv + NGEvYTFlOGEzNDg2NGMwOGJkZWM2MDA4ZTJjODc2MTQ1ODFkNTNmN2IBxwA4/3gBKylKTVUwtDRj + MDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/ + 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 + 6fqoZ0/vVoSqu5o7kXUa3AubGCQs4VJytXzi93di6XfD2/ZLZXjKFsIWByCyV/NhUp5UG+aGfWzk + 3JbJcPT0LVTLmZ4c2tIPDu+r98NjaUp4l2CxY7XzYWn2Sb/UY4rlRt5Rluy9mW9kTm3e3II9Wv7d + OsVzofU3nhvkOatRMm9hP/4hVEXDFqa2zooFqw0O2GR/XIsnYzZv8Vn3NN/XoUOE7dF/VmazJ0Ew + GH3fOBBq5wLj9u59KkK2aKVJqbjd8TL2MDyR0R8K+Thb+Fd5L6nbsk4IGoQwNJzUNXxWsV7Gm8Ad + wlS9lKieN6X0zMUz/+EEbxx48+qdy/3ZzHSNfy/GBbc06ijYmcRYm1OW/gRujeDIUEsDBBQAAAAI + AIK5TlGE3OkXsAAAAKsAAAA2AAAALmdpdC9vYmplY3RzLzY4LzM0YzE1OWQyYjA2NzJmMmE3ZjA3 + YjgwNmM5YTBhYjA1MTliNzIwAasAVP94AY3OQY7CMAyFYdY5hS8AitPaSaTRCLHgCOydxIUKSqs0 + M+enLNiz+qUnfdLL8zSNDZyjXauqQNohRp+97zh67NBhHrgPgTRxSEEKBuqVzCJVnxv0kZOVQQsT + qVViTDqkkmmLYKe+DEWiGPlrt7nCSeuzwEXr2uAn/b97vE4yPg55nn4B++iInA8Me+utNdu6/Wv6 + nWSH/JHmJOuY4fyQ9Q6yLAfzAr07RzxQSwMEFAAAAAgAgrlOUVqp1mIhAAAAHgAAADYAAAAuZ2l0 + L29iamVjdHMvNmEvZWY5NGNhZjZiYWYwMTc2NjUyM2ZkODcwZWExNTA1MmUxZDQ2OGarYPQ+ddI/ + yMAkseC0p865bVtNLxibXDJ+wsTgZcC6CwBQSwMEFAAAAAgAgrlOUXtFhwRsAgAAZwIAADYAAAAu + Z2l0L29iamVjdHMvNzIvMzY0Zjk5ZmU0YmY4ZDUyNjJkZjNiMTliMzMxMDJhZWFhNzkxZTUBZwKY + /XgBbVPBbtQwEOXsr7BUThWbgFQ4cCwFqVJVVZRyQWjlOJPEXcdj2bPbNV/Pc7ILHLg4npk34zcz + L53nTr97e/X+1YW+LkIby3N0nnrdao7iZvdrud/c3ekB/qy221issRNtt626bGL5Ybn/qS5fx9JY + b3JW6kJ/0nQUCtlxyABlrs4blyW5bi/wonw0dmdGF0bVPBSZOCgKh1Z1e+f7VvV0IM9xQ+OYYSEV + J78Ez6aHY3U368e7rlU4Ply1KpokiOc142BSJQnYxoWBW9W4kMV4NNjYYVxDldtDuT0FEiz9lPcA + FS0TZVob1yaRfklO0JfuijY6Lqx1tslF0UPiGU6hOXojVKt0NDCS/qmtl+5yrYsJ0RudWRuYrF14 + Jiu6R2rLCCd4Bs44a1AaUJ1NcANlqQONZCvtP6S15zGr6OIGl0aOstx78oSdyuTypncJD3AqSxS5 + T8EJ6GbBLiwfKJmRdKLIGKCaZPZwYmDCR5xnwN9bc4l71YEKnPFKltwcZ6/OyMW4fLOYqplKrF1l + h93g7W/JhIwxnfQxM3oCYFHJswkj6yz7YfgIN/pRnq3xW7wikEuG5irwC8S2O+OWtQZLoPpCHVRI + kjcrPUAfbTKxnLENNgaz1niMkwtH3bPdzxRkIQSZ2dxuTzoE6KFcV01SUmLSSBAinLerZvU9C3XM + OygrltBtMRC7i4y1LT9CLBC1AuMq8A2GXH+Jmm+xmlQgESNQ0ET93q9CU2ukBjbnQE3o8VAtVQ+Y + B5cEGq3WAUerPt9/X4g9xgKqOiZeBHUemoJmauDkryW+cqT/4BLcZ9RvnhVlElBLAwQUAAAACACC + uU5RKNlCKcsCAADGAgAANgAAAC5naXQvb2JqZWN0cy83OC80MjY0NGQzNTZlOTIyMzU3NmEyZTgy + ZGU1OGViZjA3OTkyZjQyMwHGAjn9eAGNU9tu4zYQ7bO+go8NjOh+XewWK8myIt8l29nEwT6QFHVJ + KFEWdVnn6+vEXbRoF0UGIEAMzzkYzszBrKrKDiiyo/3WtYQAW8VQN5GhKxYxVYItQ8Z6qmm2ZiCo + EZJhDTvYkoUGtqTuQKYYtkZsCDPZNrClyoYOHUuBmZOqKNVVZKWyJmMkwL4rWAtS0pA6hYh1T5fz + HXzWHdNxNE2b/Ovla89Jy8WataShZzEvu6JHImbVH0AxLNVUTNUxwES+hHDJXn7RkRaEZXfXI/D5 + L9rX/6XlTc7LHNy+hReE0Rpswy3YReHa3R+S4D0vAAGM3MOe63q+68ZePE+HaVH7ibewimd9M2ht + NLpuehdFbnCar9TCRK9HN3Huiax/ezzmfiWAFSffysS/z/zRHYZCdys8I2nuIHey7F2LpvWL0ywC + +0fyWBFoczk01CGa2tZhdp/w6iCASRg0wynR1Dpi635N3c3pMOQLf+vLTkgPzD+o/kMA+dJAFC2w + WQzLA6R7uzqnd4200wUg5YdYx+p4ng3r7ekYNeOxal8KZ6+jY0mfN/35xJ4T1Iavx8AsbDaZeMtp + CufjK/bp0QkFkLomm6e7KItW5+luIz3SOKcnxx02BW3wuXUKOEinRou6Y5bWcr7bm5M+7hcTeo4Z + WcUCMKLCH23lYZ1Vz6uZvy9b3/fmcTMr6UPFxqUFEc64vFnhKdlwNTV6NJNjR8vCH/qW5F8E8IVo + gyVcZxasp7+emOD1VQNG0r68kj4HWcsqIIuKLiqgY283Q9SEdxAHTz9h338vuq7hnyTp76WRGkgp + 6bj0E3TzazFRuAVPCaEEcgJq1hH+ITWpvVL4zRvfL2CdE8ryj3ERZUiqIL+sveTfuesw2Ikt765S + 74b4YBEX97yZWbp2SBTFa4NuBGFX5jVJb1mW3aLzp/96l/dNw9runy77E0IuY5BQSwMEFAAAAAgA + grlOUSqxJj80AQAALwEAADYAAAAuZ2l0L29iamVjdHMvNzkvZjQ1MWJkNTY0MDNkNDI3M2E1MTIw + MjA1ZTA5MWZmMmY5MzQ4NDEBLwHQ/ngBKylKTVUwNjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP + +8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15u + CsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+voJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElB + SVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76bJff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXF + eiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWpSXpGeuZ6yfl5aZnpDAYpE+4zfHpwL4y15m/D + 3lz+woOTgpBUGuuZwFSuPpPEls5l1j9rQoJBS9zJc//FK9QAnMaAiVBLAwQUAAAACACCuU5R97+A + TcwAAADHAAAANgAAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEz + ZWVmYzNjOWM3MAHHADj/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8b + ZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kg72iW9y3 + d39s5CvU46ccTOUOe395L1RRYkFBTmZyYklmfp5eQSXDiuxXy26zvC77JXlnc0/6waNMuvqvoSqL + UgtLM4tSc1PzSor1SipKGGaeVhaZePWSw7V1scv8E/Jl7b6J3AAA1V5Q8FBLAwQUAAAACACCuU5R + kk1vAMsAAADGAAAANgAAAC5naXQvb2JqZWN0cy84My9iZTYzMThhOTIxMTFiZWMyZTFjYWVmZDFi + MmQ3ZmU0MzVjYTc1MgHGADn/eAErKUpNVTC0NGMwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U1 + 3c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw8XV + k7RfHTfuFpULaAux7rvKyLejEaoosaAgJzM5sSQzP0+voJJhRfarZbdZXpf9kryzuSf94FEmXf3X + UJVFqYWlmUWpual5JcV6JRUlDA6+Nh+/z0g8Ja/Ee6v+52WtbRYKqQCIlk+TUEsDBBQAAAAIAIK5 + TlFgl1ZorgEAAKkBAAA2AAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJmYjAzMzVkZTM2MjQ0ZmJi + MjY4YzgyYmUxNzY3MWRhAakBVv54AcWTwW7bMAyGdzaQdyC6SwzM9oCd5tOCAjl12IbuVhSDItOx + WktURHpd9vSj7K5pi1x2GiDAAkX9/PlR3o20g4/vP7ypqmpVRLPHH3KM2AIbH0dcFR2yTS6Ko9DC + xffBMegy4F1w3oyPeWBiBBmMQIeeAksyggwDPYAQpCnoja9HGSjAdjR8n/NHZ02WBV2b31NC2KjI + NaafzmIOXrkw/aovVsVown5Sa9yuigrirKNmE3WTlSVoskA+nTeVyle8KGkwt7Yq3r50sDQIPaUz + 1ddz7TJf+w8t57Jb9eVJobigFv1M6h3oSAwjMKLSRrh5ZJoJPmN3mJy9ZzFJbteDSOS2aTqyXHtn + EzH1UlvyzYyqeYaqsRTEuICJm5NGtQAv6wXipeYkt5vEhf0TH53FHVqBwejb6CgKdovBz38rwpeI + Aa5pSjrcS+p0wr1+Qx7hySVpEs85r7xavUG9+sv5TVnDOT4nLq8KwHbz7Z+L9ObQlKBjmKloczfZ + XTby6QXH27U3bhRqzx+X8OBkABOOSqZz+cXrb3OYkPOWlwLeYxBWwn8A6ONBjlBLAwQUAAAACACC + uU5RZmnNg94AAADZAAAANgAAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMAHZACb/eAGVkDFLBDEQha0X9j88sLltNqDYXKUI14mIdscV2WRiIpvM + XjKL+O9NXCwUG7uBee99b2aaecL1zdXFJe45SQ7TKiG99l3fvfhQsGR+IyPwukBbXoQsxBOOD8Fk + LuwEjwslPPOaDdUMS2DXsuxq5LTzIkvZK8VVVL40Y/x2joajMtXBzmx6NYw4cEbkTAjJcY5aAicU + og37C4DD3dO/IU6f1YCKqVTR9bhja9eK3P7odtpFHWbh/d/rAe9BPHT6qJ+xofXUM84rlTaWDRAj + JSlj330C4SWC6lBLAwQUAAAACACCuU5RINaxYXQAAABvAAAANgAAAC5naXQvb2JqZWN0cy84Ny9j + NTFjOTQ4NjcyMzg1MmU4OWRiYmJjOWM3YzYzOTg2YWE5MTkzNAFvAJD/eAFLyslPUjA0MGRwC/L3 + VSjJTMxLz8/J1y8tL07P1M1Lz8yr0E3LSSzOtiqoLMnIzzPWM9NNzCnIzEs11jPn4nL1C1Pw8QwO + cfWLD/APCrG1MDAw4HKNCPAPdlUAs7mc/QMiFfQTCwrABACrYiFrUEsDBBQAAAAIAIK5TlE8H++S + OQAAADQAAAA2AAAALmdpdC9vYmplY3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3 + MzE1NmFmZWZhATQAy/94ASspSk1VMDZlMDQwMDMxUchNzMzTK6hkWNhZ08C/99oXJdG2czefV85n + kg49CQA4txCeUEsDBBQAAAAIAIK5TlE+63VCjwAAAIoAAAA2AAAALmdpdC9vYmplY3RzLzhlLzM0 + NDRiZDQ2MTg3ODdkNDAzYzBiNGRjNDRjNzA2YTAyMDJlZGVmAYoAdf94AaWNQQpCMQxEXfcUuYCS + 1NL/CyLu1IVLD9D2t1qwFtr8+xsQT+BmJsyQN7HVWhg02g33lCA6v2hacB+tuHUTGqNF5inMNgc5 + EYksKr/ys3W4ldjbaJnhXPiyBriP1OFQR+ZH4XGqv34XWz0CGUcC0ISwRWEpSWWf5edfkrq+Cxf/ + gi/yA4BORCxQSwMEFAAAAAgAgrlOUd1nxUHLAAAAxgAAADYAAAAuZ2l0L29iamVjdHMvOGYvNmEw + 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 + MTRlM2UzNWIzMzU4YjIxNjcwZDI1MDFiOTAyAccAOP94ASspSk1VMLQ0YzA0MDAzMVHQS88syUzP + yy9KZSgy85/5z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7 + VEmQq6OLr6tebgrD5h7XxbnKrnov/rue8zxo8K1k04cJUEWJBQU5mcmJJZn5eXoFlQwrsl8tu83y + uuyX5J3NPekHjzLp6r+GqixKLSzNLErNTc0rKdYrqShhcPC1+fh9RuIpeSXeW/U/L2tts1BIBQA+ + ElGiUEsDBBQAAAAIAIK5TlGixBHV9AAAAO8AAAA2AAAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdl + N2Y5ZTgyNDQyMzhiM2Q4ZjI2MmQ1NDc4OWIyOGZjAe8AEP94AY2QQWuDQBCFey70PywLgeaih9JD + iylIlEaQHOLWXBaWTZzqUt1d1lHjv29M00LTHDq3ecN8897sarMjD0+PN8He6HdVdk6iMvrl7paQ + QFqbAaLSZXsSJqkoyAeMC7rNXhMRpkzkyYa9hWm8zsUqXEdpvKGkl3UHC9pIpb0jhBL/X/vhkiV5 + yGLBVklGJwvnOvOiZ16ZBnirEPgwDM4Y5KB7nu2dsthyO2JltAcHuHbya2olVj8OZ9nYIjSRUz3M + /sKvUU7BL5P2ymEn66MXYZ05jF4JKPqpraQuanD3829W4P9+a+Bffv4TcRaAwVBLAwQUAAAACACC + uU5RfmRWQGUAAABgAAAANgAAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2 + NGY2MDZmMWQzZWY2MTRkOAFgAJ//eAFLyslPUrCwYEjOyUzOtrU10zPncstJLAYyDfUM9Iy4MkuK + UxLz0lOL8kuLbW2BIiZcXpl5WYlGtrZGeoYGXL6JRdmlBcGJaalgHVzhqUXZVaml6SC1hqZ6xgBv + PBxxUEsDBBQAAAAIAIK5TlH44ZrgiAAAAIMAAAA2AAAALmdpdC9vYmplY3RzL2ExLzg5N2M4MDBm + YmRkNmY0MjIxNTg2Y2VkOWU3Nzk5ZjAyMWI1NWM5AYMAfP94ATWMwQpCIRREW9+vmFYqRBEEQfCg + VfQHLS8+npKkXjGl3y+LdjNzmDNHmbE/HFe+SoKP9vlASEVqw2UUsqVg+mXNnG1yzIbo/Nm3VXpz + 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 + 7l31y00hYhpvrlfte/qvJig7C0rNia6yMq0dpnVT3bybL9PLEySDowXS8D4HuXG1fPVyO4SrZnal + rpVvbcVVJ0fdkbIdIZWDnW/GXwjt5eRQSwMEFAAAAAgAgrlOUTtIlmG9AAAAuAAAADYAAAAuZ2l0 + L29iamVjdHMvYWMvYTdhMTQyMTJlNjk5ZmE2ZjEyODUyODZkNjUxNmQ2N2Y0MGEyNjQBuABH/3gB + KylKTVUwNLdgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVS35ydmpR + WmZOKkP7UZkpbUUWQS/m7t4zpyZ5RtZKSROoKh9PZ1e/YFcGb6mr0vp8f8w+dy02mTXf4PdNxVJ3 + qJIgV0cXX1e93BSG385zXhkxuWao7Hi2arVBRZFA6ORNJgZAoJBYUMDQKyfnIcPXo3Dz0qETErNP + F4tm/fsFAIVwR29QSwMEFAAAAAgAgrlOUb+wsVh0AQAAbwEAADYAAAAuZ2l0L29iamVjdHMvYjMv + OGM0NWEzNmQyMzQ1MmVlOGZmNDVjZTQ5YzEzMGY2NzRiMmYwOTABbwGQ/ngBjZLBSgMxEIY9C77D + gJcWbAMeRDxZhJ4UFQUPxUOanXWjm8w2M7HWp3ey1bYWD8IedpPMfP98m3lLczg7Pz04hruVNBRh + 2lp+A9t1oB+Tz5wQnnAOE12oKcEVRbE+YuKjw6PDx8Yz6GMh+OiDbYFt6Frs66WxAhUGiizJCjI0 + tAQhSDlqxT6v9c6KV+iGW5gPmN69w7J47WP+GBfsVIME0mQ+aqbQl52Aci0jMCJIgzD7BpR2O40W + 2bs3FpvkedCIdHxhTEWOx8G7REy1jB0Fg3GU2dgyv1EZI17nMG4zv9l2GnW9u2Ef7rh3lPw8i48v + G0tdold0Ao1VXRV1gtU65s0PF247jPBAOem8V1Tp0HXpVWW3k5X0EPdn9hI7raBa85XzZjiGvyxt + 7ewBYDq53wr5J6S2CzME/Rm9FR1uVgpLkMtfNp8HwfpW6OLv7SEsvTRg40rNVL5cAr1Ji4xcXnkN + CAGjsBr+Anme995QSwMEFAAAAAgAgrlOUSvc9DEDAQAA/gAAADYAAAAuZ2l0L29iamVjdHMvYzQv + MGVmYmI0MGU4NzEwNjAyZTc5ZDc4MWM4YjQ0M2MxNzhmMjI3NWMB/gAB/3gBnU9LTsUgFHXcVTB7 + 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 + AIK5TlGf8C1nNAEAAC8BAAA2AAAALmdpdC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1 + YzU1NGExYTllNmY5YTM5ZWMzAS8B0P54ASspSk1VMDYyZTA0MDAzMVHQS88syUzPyy9KZSgy85/5 + z/vHVTXdzxtnGwtovVo+8SlUlY+ns6tfsCuDt9RVaX2+P2afuxabzJpv8PumYqk7VEmQq6OLr6te + bgrD/ckeCa8lk0UXhIRff9XEGuF0S94fqig3MTNPr6CSYWFnTQP/3mtflETbzt18XjmfSTr0JFRJ + QUlZcXxZZlFJaWJOal5ZfEFRfkUlSM+SJUIzmHe+myX3+JeBdFh6z6p2lUlQPUWphaWZRam5qXkl + xXolFSUMWe+nnPq264N4WpD9jYJXoqx6sm79ULXlqUl6Rnrmesn5eWmZ6QwTZuXn+cy2eKhebcEY + yn1k+7W8KzOQVBrrmcBUrj6TxJbOZdY/a0KCQUvcyXP/xSvUAGa0f6BQSwMEFAAAAAgAgrlOUV9+ + 8+1tAQAAaAEAADYAAAAuZ2l0L29iamVjdHMvZmIvNDM5Y2VhMzIwMjQ1NjgyNGI4ZTZhYWFiMzA3 + ODcyMTA1NTkzYjIBaAGX/ngBlZLBSgMxEIY9F3yHgV5asM1NtCeL0JtoqeCh9JBmZ93YTWabmbXU + p3ey1RaLIMIeks3M/N9+m3VNa7i+ub3ow9NeKoowqy1vwDYN6Gb60SaEF1zDVF+UlOCeolgfMfFl + 77L3XHkGfSwEH32wNbANTY1dv1RWoMBAkSVZQYaKdiAEqY3acZ5Xe2fFa+gfueMcPFOUQMrmo1KF + rvEKNNkyAiOCVAjLr4g8UPEXmN69Q5i33m1YbFI6crwaVCINT4zJu3HwLhFTKWNHwWActWxs1mDU + yYgPM4w7ajDb47hR0ykcdoT9TlXy61Z8fD3KahK9oROorForqBEsDqwP37nw2GCEBbVJWe+pQKAy + zypaJydW0iLuas6InXZQqXy53gzH8Juqk6KzAJhN5/8OKe3WDEH/SGdFP26Z6TLI3Q+bq0Gwvhaa + /H48hJ2XCmzcq5nC57ugF2rbIuclHwJCwCishj8BFxr6S1BLAwQUAAAACACCuU5RTYPO3CoAAAAp + AAAAFgAAAC5naXQvcmVmcy9oZWFkcy9tYXN0ZXIFwUkRADAIBLB/1Ww5BpDDUfxLaLJXnZ9nLlzb + CCoZdnNjqEaobMDoOh9QSwMEFAAAAAgAgrlOUdYl1KAiAAAAIAAAAB0AAAAuZ2l0L3JlZnMvcmVt + b3Rlcy9vcmlnaW4vSEVBRCtKTbNSKEpNK9YvSs3NL0kt1s8vykzPzNPPTSwuSS3iAgBQSwECFAAU + AAAACACCuU5RrtXvKF0CAABuBAAACgAAAAAAAAAAAAAAtoEAAAAALmdpdGlnbm9yZVBLAQIUABQA + AAAIAIK5TlEstqWhXQAAAGoAAAAOAAAAAAAAAAAAAAC2gYUCAABhcHBsaWNhdGlvbi5weVBLAQIU + ABQAAAAIAIK5TlFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAAAAC2gQ4DAABMSUNFTlNFUEsBAhQAFAAA + AAgAgrlOUUhuvDyPAQAAiAMAAAkAAAAAAAAAAAAAALaBwgUAAFJFQURNRS5tZFBLAQIUABQAAAAI + AIK5TlGab84DVwAAAF0AAAAQAAAAAAAAAAAAAAC2gXgHAAByZXF1aXJlbWVudHMudHh0UEsBAhQA + FAAAAAgAgrlOUaOoHCbRAAAAPwEAAAsAAAAAAAAAAAAAALaB/QcAAC5naXQvY29uZmlnUEsBAhQA + FAAAAAgAgrlOUTeLBx8/AAAASQAAABAAAAAAAAAAAAAAALaB9wgAAC5naXQvZGVzY3JpcHRpb25Q + SwECFAAUAAAACACCuU5RK2lzpxkAAAAXAAAACQAAAAAAAAAAAAAAtoFkCQAALmdpdC9IRUFEUEsB + AhQAFAAAAAgAgrlOUax80NgkAQAAwQEAAAoAAAAAAAAAAAAAALaBpAkAAC5naXQvaW5kZXhQSwEC + FAAUAAAACACCuU5RG7aRBOoAAAC/AQAAEAAAAAAAAAAAAAAAtoHwCgAALmdpdC9wYWNrZWQtcmVm + c1BLAQIUABQAAAAIAIK5TlGFT/gJFwEAAN4BAAAgAAAAAAAAAAAAAAC2gQgMAAAuZ2l0L2hvb2tz + L2FwcGx5cGF0Y2gtbXNnLnNhbXBsZVBLAQIUABQAAAAIAIK5TlHp+MoQ9wEAAIADAAAcAAAAAAAA + AAAAAAC2gV0NAAAuZ2l0L2hvb2tzL2NvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgAgrlOURZi + ts8fBgAA/wwAACQAAAAAAAAAAAAAALaBjg8AAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFu + LnNhbXBsZVBLAQIUABQAAAAIAIK5TlGaDPfAigAAAL0AAAAdAAAAAAAAAAAAAAC2ge8VAAAuZ2l0 + L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIAIK5TlHPwEwCCQEAAKgBAAAgAAAA + AAAAAAAAAAC2gbQWAAAuZ2l0L2hvb2tzL3ByZS1hcHBseXBhdGNoLnNhbXBsZVBLAQIUABQAAAAI + AIK5TlESHWcqiQMAAGYGAAAcAAAAAAAAAAAAAAC2gfsXAAAuZ2l0L2hvb2tzL3ByZS1jb21taXQu + c2FtcGxlUEsBAhQAFAAAAAgAgrlOUUQ/817/AAAAoAEAACIAAAAAAAAAAAAAALaBvhsAAC5naXQv + aG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGVQSwECFAAUAAAACACCuU5RBNiPsZ0CAABEBQAA + GgAAAAAAAAAAAAAAtoH9HAAALmdpdC9ob29rcy9wcmUtcHVzaC5zYW1wbGVQSwECFAAUAAAACACC + uU5RhOxYUd8HAAAiEwAAHAAAAAAAAAAAAAAAtoHSHwAALmdpdC9ob29rcy9wcmUtcmViYXNlLnNh + bXBsZVBLAQIUABQAAAAIAIK5TlGSxPiWSQEAACACAAAdAAAAAAAAAAAAAAC2gesnAAAuZ2l0L2hv + b2tzL3ByZS1yZWNlaXZlLnNhbXBsZVBLAQIUABQAAAAIAIK5TlHtEzYw6AIAANQFAAAkAAAAAAAA + AAAAAAC2gW8pAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29tbWl0LW1zZy5zYW1wbGVQSwECFAAUAAAA + CACCuU5RGiFEJXUEAAAaDgAAGAAAAAAAAAAAAAAAtoGZLAAALmdpdC9ob29rcy91cGRhdGUuc2Ft + cGxlUEsBAhQAFAAAAAgAgrlOUXc9zSGtAAAA8AAAABEAAAAAAAAAAAAAALaBRDEAAC5naXQvaW5m + by9leGNsdWRlUEsBAhQAFAAAAAgAgrlOUSpLLHSZAAAA0wAAAA4AAAAAAAAAAAAAALaBIDIAAC5n + aXQvbG9ncy9IRUFEUEsBAhQAFAAAAAgAgrlOUSpLLHSZAAAA0wAAABsAAAAAAAAAAAAAALaB5TIA + AC5naXQvbG9ncy9yZWZzL2hlYWRzL21hc3RlclBLAQIUABQAAAAIAIK5TlEqSyx0mQAAANMAAAAi + AAAAAAAAAAAAAAC2gbczAAAuZ2l0L2xvZ3MvcmVmcy9yZW1vdGVzL29yaWdpbi9IRUFEUEsBAhQA + FAAAAAgAgrlOUaY6UR1SBAAATQQAADYAAAAAAAAAAAAAALaBkDQAAC5naXQvb2JqZWN0cy8xMC9k + N2FmOTY1NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNlBLAQIUABQAAAAIAIK5TlH7famK + zAIAAMcCAAA2AAAAAAAAAAAAAAC2gTY5AAAuZ2l0L29iamVjdHMvMTUvNTJiN2ZkMTU3YzNiMDhm + YzAwOTZmMThlNGFkNWVmNDI4YmMxMmJQSwECFAAUAAAACACCuU5Rib97EcwAAADHAAAANgAAAAAA + AAAAAAAAtoFWPAAALmdpdC9vYmplY3RzLzE2L2NhOTQ5Yjk2ZGE3YWVhNTVmNTdkNDlkNzU1Njgw + YmYxNDBkNzk1UEsBAhQAFAAAAAgAgrlOUV1WH0u1AAAAsAAAADYAAAAAAAAAAAAAALaBdj0AAC5n + aXQvb2JqZWN0cy8xOS8xYmIzZmJhMDc1ZjQ1NWY0OGU2ZDc2ZGRiNDE2MTZiYzM0MjE3NlBLAQIU + ABQAAAAIAIK5TlHmy6VVvwAAALoAAAA2AAAAAAAAAAAAAAC2gX8+AAAuZ2l0L29iamVjdHMvMjcv + OTZiMGFmZWQ2NTVlMGU1NjFiZWZiZGM1YmVmYTEzZTdkZmRhOWFQSwECFAAUAAAACACCuU5R31/M + NfkAAAD0AAAANgAAAAAAAAAAAAAAtoGSPwAALmdpdC9vYmplY3RzLzI4Lzg4ZWMzYzlhNDEzMTEx + OGNmZmYwYzk0NDdmYWMzODUyODIzNDlhUEsBAhQAFAAAAAgAgrlOUSfS34p9AAAAeAAAADYAAAAA + AAAAAAAAALaB30AAAC5naXQvb2JqZWN0cy8yZC9hOWMzNTU1NTM0NThkZDljYmNjMjk1ZjQ4M2Q5 + MjQxYTEyYTgxNlBLAQIUABQAAAAIAIK5TlE++Q7S2AIAANMCAAA2AAAAAAAAAAAAAAC2gbBBAAAu + Z2l0L29iamVjdHMvMzAvNjQ5MGRmMDBmMmUwZGU1NjA1N2NmZDgwYmQ2ZDBmNzFjMTkyNTJQSwEC + FAAUAAAACACCuU5Rt3vZN3QCAABvAgAANgAAAAAAAAAAAAAAtoHcRAAALmdpdC9vYmplY3RzLzNh + LzQ2ODcxYjViNzJiNGRiNWRkYTFlZDEzODY0Mjg1Y2ZmYzY2NGM3UEsBAhQAFAAAAAgAgrlOUWls + ZhK1AAAAsAAAADYAAAAAAAAAAAAAALaBpEcAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkw + NjcyOGY2NmE3MWY2MjBhNmQxZTc4YmZlYVBLAQIUABQAAAAIAIK5TlFO544KrgEAAKkBAAA2AAAA + AAAAAAAAAAC2ga1IAAAuZ2l0L29iamVjdHMvM2YvMjE0NjVlZjZlZWZjM2MxZjc4Mjc1Zjk0YzE2 + NTBiNTZlZmQzYmRQSwECFAAUAAAACACCuU5R3AlonWUAAABgAAAANgAAAAAAAAAAAAAAtoGvSgAA + LmdpdC9vYmplY3RzLzQwLzRkM2NmMWY3OTg2MWNhMWYyMjBkZGE3ZmY5ZDMyYWI2MzgyMDY1UEsB + AhQAFAAAAAgAgrlOUX3zWBq1AAAAsAAAADYAAAAAAAAAAAAAALaBaEsAAC5naXQvb2JqZWN0cy80 + MC9mYWVjMTA4YWNkOWFmNjZmNWRhOGE1Njg5NjBhZDRhNjI4ZmExZlBLAQIUABQAAAAIAIK5TlGW + CbN+/gAAAPkAAAA2AAAAAAAAAAAAAAC2gXFMAAAuZ2l0L29iamVjdHMvNDQvZTc0ZmU3ZGQ5ZGZl + MmY2MjI4NzI2MWQ4ZDU2ZDUwMTc4NTRkMThQSwECFAAUAAAACACCuU5RPUAqlMwAAADHAAAANgAA + AAAAAAAAAAAAtoHDTQAALmdpdC9vYmplY3RzLzRhL2ExZThhMzQ4NjRjMDhiZGVjNjAwOGUyYzg3 + NjE0NTgxZDUzZjdiUEsBAhQAFAAAAAgAgrlOUUDzmqU1AQAAMAEAADYAAAAAAAAAAAAAALaB404A + AC5naXQvb2JqZWN0cy80Yi8xNDI2MGE4NmNhYTEyZjNjNDNiOTY3ZjQzMzA1MmI0MzVkMjc4NlBL + AQIUABQAAAAIAIK5TlEDpVJ4tAIAAK8CAAA2AAAAAAAAAAAAAAC2gWxQAAAuZ2l0L29iamVjdHMv + NGIvMWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDdQSwECFAAUAAAACACCuU5R + ObGiejcCAAAyAgAANgAAAAAAAAAAAAAAtoF0UwAALmdpdC9vYmplY3RzLzU2LzY0YjYyZjJiNGZj + NDU0MzczNGMwZDFhMjU0MGMxNWIwYWY1ZWQzUEsBAhQAFAAAAAgAgrlOUUImqm80AgAALwIAADYA + AAAAAAAAAAAAALaB/1UAAC5naXQvb2JqZWN0cy81Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTVi + ZWZmODAwNDlkMjA2MFBLAQIUABQAAAAIAIK5TlF0xD70wAAAALsAAAA2AAAAAAAAAAAAAAC2gYdY + AAAuZ2l0L29iamVjdHMvNWEvNTk4ZTI4ODNhNzBkZWMyOTBhNDgxY2FhMjM4NmY0YzliYjU5YzJQ + SwECFAAUAAAACACCuU5R2mwDGS4BAAApAQAANgAAAAAAAAAAAAAAtoGbWQAALmdpdC9vYmplY3Rz + LzVlLzMxMTk3Yzc3MzY5NzEzMTIxY2Y2NDg4NWViNjhiOGFkMTg1NGU1UEsBAhQAFAAAAAgAgrlO + URbU7+1DAgAAPgIAADYAAAAAAAAAAAAAALaBHVsAAC5naXQvb2JqZWN0cy82My9lMzY2Y2ZlYjMy + ZjljZTc4ZmM0MDNmNjMyZmNhYzY3OTA0YjI5YVBLAQIUABQAAAAIAIK5TlGE3OkXsAAAAKsAAAA2 + AAAAAAAAAAAAAAC2gbRdAAAuZ2l0L29iamVjdHMvNjgvMzRjMTU5ZDJiMDY3MmYyYTdmMDdiODA2 + YzlhMGFiMDUxOWI3MjBQSwECFAAUAAAACACCuU5RWqnWYiEAAAAeAAAANgAAAAAAAAAAAAAAtoG4 + XgAALmdpdC9vYmplY3RzLzZhL2VmOTRjYWY2YmFmMDE3NjY1MjNmZDg3MGVhMTUwNTJlMWQ0Njhm + UEsBAhQAFAAAAAgAgrlOUXtFhwRsAgAAZwIAADYAAAAAAAAAAAAAALaBLV8AAC5naXQvb2JqZWN0 + cy83Mi8zNjRmOTlmZTRiZjhkNTI2MmRmM2IxOWIzMzEwMmFlYWE3OTFlNVBLAQIUABQAAAAIAIK5 + TlEo2UIpywIAAMYCAAA2AAAAAAAAAAAAAAC2ge1hAAAuZ2l0L29iamVjdHMvNzgvNDI2NDRkMzU2 + ZTkyMjM1NzZhMmU4MmRlNThlYmYwNzk5MmY0MjNQSwECFAAUAAAACACCuU5RKrEmPzQBAAAvAQAA + NgAAAAAAAAAAAAAAtoEMZQAALmdpdC9vYmplY3RzLzc5L2Y0NTFiZDU2NDAzZDQyNzNhNTEyMDIw + NWUwOTFmZjJmOTM0ODQxUEsBAhQAFAAAAAgAgrlOUfe/gE3MAAAAxwAAADYAAAAAAAAAAAAAALaB + lGYAAC5naXQvb2JqZWN0cy84Mi9jYTQ2YjU0MTdlNjJlYzc1MGM0ZDMzODM1YmEzZWVmYzNjOWM3 + MFBLAQIUABQAAAAIAIK5TlGSTW8AywAAAMYAAAA2AAAAAAAAAAAAAAC2gbRnAAAuZ2l0L29iamVj + dHMvODMvYmU2MzE4YTkyMTExYmVjMmUxY2FlZmQxYjJkN2ZlNDM1Y2E3NTJQSwECFAAUAAAACACC + uU5RYJdWaK4BAACpAQAANgAAAAAAAAAAAAAAtoHTaAAALmdpdC9vYmplY3RzLzg0Lzg3YTljOGJm + YjAzMzVkZTM2MjQ0ZmJiMjY4YzgyYmUxNzY3MWRhUEsBAhQAFAAAAAgAgrlOUWZpzYPeAAAA2QAA + ADYAAAAAAAAAAAAAALaB1WoAAC5naXQvb2JqZWN0cy84Ni8yNGIzZDI1Y2Q2ZjVkOTAyMWExYTBh + MDNlN2Y2ZGY0M2NjMDAxMFBLAQIUABQAAAAIAIK5TlEg1rFhdAAAAG8AAAA2AAAAAAAAAAAAAAC2 + gQdsAAAuZ2l0L29iamVjdHMvODcvYzUxYzk0ODY3MjM4NTJlODlkYmJiYzljN2M2Mzk4NmFhOTE5 + MzRQSwECFAAUAAAACACCuU5RPB/vkjkAAAA0AAAANgAAAAAAAAAAAAAAtoHPbAAALmdpdC9vYmpl + Y3RzLzhkLzFlMWU0ODFjMGU4YzIwZDlkMmMyYzgxODliY2I3MzE1NmFmZWZhUEsBAhQAFAAAAAgA + grlOUT7rdUKPAAAAigAAADYAAAAAAAAAAAAAALaBXG0AAC5naXQvb2JqZWN0cy84ZS8zNDQ0YmQ0 + NjE4Nzg3ZDQwM2MwYjRkYzQ0YzcwNmEwMjAyZWRlZlBLAQIUABQAAAAIAIK5TlHdZ8VBywAAAMYA + AAA2AAAAAAAAAAAAAAC2gT9uAAAuZ2l0L29iamVjdHMvOGYvNmEwYTRmOWQ5OWRhOGViM2RiYjVk + MzdmNmNmMjVkZmVhY2Q4ZDBQSwECFAAUAAAACACCuU5RISfNXdUCAADQAgAANgAAAAAAAAAAAAAA + toFebwAALmdpdC9vYmplY3RzLzkwLzlhNmY2ZTRjOWIzOGUxMjc3YjM4MDE1NTBiYzRiN2Q2NmVk + NDk4UEsBAhQAFAAAAAgAgrlOUQlUFZ58AgAAdwIAADYAAAAAAAAAAAAAALaBh3IAAC5naXQvb2Jq + ZWN0cy85MS80MmIyOGUyMmI2MmMwMzFiMzJmYTFjYjE1YzMzZGE3YzkwNWMyMFBLAQIUABQAAAAI + AIK5TlHwqBwKzAAAAMcAAAA2AAAAAAAAAAAAAAC2gVd1AAAuZ2l0L29iamVjdHMvOTUvNDUzZGJl + ZDA5MzExNGUzZTM1YjMzNThiMjE2NzBkMjUwMWI5MDJQSwECFAAUAAAACACCuU5RosQR1fQAAADv + AAAANgAAAAAAAAAAAAAAtoF3dgAALmdpdC9vYmplY3RzLzk4L2Y1NDc3MTdlN2Y5ZTgyNDQyMzhi + M2Q4ZjI2MmQ1NDc4OWIyOGZjUEsBAhQAFAAAAAgAgrlOUX5kVkBlAAAAYAAAADYAAAAAAAAAAAAA + ALaBv3cAAC5naXQvb2JqZWN0cy85OS9jYjIzMTQ5MWQ1ZDI0MGQ2YWU1ZGE2NGY2MDZmMWQzZWY2 + MTRkOFBLAQIUABQAAAAIAIK5TlH44ZrgiAAAAIMAAAA2AAAAAAAAAAAAAAC2gXh4AAAuZ2l0L29i + amVjdHMvYTEvODk3YzgwMGZiZGQ2ZjQyMjE1ODZjZWQ5ZTc3OTlmMDIxYjU1YzlQSwECFAAUAAAA + CACCuU5Ro0IPgeMFAADeBQAANgAAAAAAAAAAAAAAtoFUeQAALmdpdC9vYmplY3RzL2E0L2E0MTI5 + ODAzYjllZTlhMWVlM2ZhMzAxYjU2Njc4Y2FhODcyNDkyUEsBAhQAFAAAAAgAgrlOUbIY8KNvAAAA + agAAADYAAAAAAAAAAAAAALaBi38AAC5naXQvb2JqZWN0cy9hOC82YmVhYTZkYjA0ZWI3NmZhMTlk + Y2IzOGM2N2MxYzUwMjJkMmZlYlBLAQIUABQAAAAIAIK5TlGj6R9xWwAAAFYAAAA2AAAAAAAAAAAA + AAC2gU6AAAAuZ2l0L29iamVjdHMvYTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3 + MThlMTNQSwECFAAUAAAACACCuU5RgfqW7c8CAADKAgAANgAAAAAAAAAAAAAAtoH9gAAALmdpdC9v + YmplY3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2UEsBAhQAFAAA + AAgAgrlOUTtIlmG9AAAAuAAAADYAAAAAAAAAAAAAALaBIIQAAC5naXQvb2JqZWN0cy9hYy9hN2Ex + NDIxMmU2OTlmYTZmMTI4NTI4NmQ2NTE2ZDY3ZjQwYTI2NFBLAQIUABQAAAAIAIK5TlG/sLFYdAEA + AG8BAAA2AAAAAAAAAAAAAAC2gTGFAAAuZ2l0L29iamVjdHMvYjMvOGM0NWEzNmQyMzQ1MmVlOGZm + NDVjZTQ5YzEzMGY2NzRiMmYwOTBQSwECFAAUAAAACACCuU5RK9z0MQMBAAD+AAAANgAAAAAAAAAA + AAAAtoH5hgAALmdpdC9vYmplY3RzL2M0LzBlZmJiNDBlODcxMDYwMmU3OWQ3ODFjOGI0NDNjMTc4 + ZjIyNzVjUEsBAhQAFAAAAAgAgrlOUe5utYw8AAAANwAAADYAAAAAAAAAAAAAALaBUIgAAC5naXQv + b2JqZWN0cy9jOS9hZDIxZDAzYzZkMjE2OTcwNDQyNzA0ODdiODZmYjI3MDAwMTE2MFBLAQIUABQA + AAAIAIK5TlEpo4PWsAEAAKsBAAA2AAAAAAAAAAAAAAC2geCIAAAuZ2l0L29iamVjdHMvZDEvYWI5 + MjJiZWFjNzMzOGIxNTFlNTA4NjU0M2I4ZWQ1MDEwZWI4ODFQSwECFAAUAAAACACCuU5RDqp48agB + AACjAQAANgAAAAAAAAAAAAAAtoHkigAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcy + NjcyZDZiYjc1MjBiMWJhNjhjMmMyUEsBAhQAFAAAAAgAgrlOUX23KJJCAgAAPQIAADYAAAAAAAAA + AAAAALaB4IwAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1OGI2 + ZDBhYmJmOVBLAQIUABQAAAAIAIK5TlFZTf/5igEAAIUBAAA2AAAAAAAAAAAAAAC2gXaPAAAuZ2l0 + L29iamVjdHMvZGYvOTM0ODYwZWIxOTYzMTVhMDU0NTdkN2VhODIwNTU4NDJkYTFmNGZQSwECFAAU + AAAACACCuU5RY2Y+ijECAAAsAgAANgAAAAAAAAAAAAAAtoFUkQAALmdpdC9vYmplY3RzL2UxL2Fi + ZjhiN2EzYmMyNTZiZjIwNDU0ZjIyYTExOTgwOGI0YzdhYmU5UEsBAhQAFAAAAAgAgrlOUa+0xwNw + AgAAawIAADYAAAAAAAAAAAAAALaB2ZMAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRiNmJiOGE1 + YzY3MTBmNmUzMzZjMzVhOGI4MTY3N1BLAQIUABQAAAAIAIK5TlEQFwZqNgIAADECAAA2AAAAAAAA + AAAAAAC2gZ2WAAAuZ2l0L29iamVjdHMvZjEvNTgzZThhYWYwODVjNzIwNTRhOTcxYWY5ZDJiZDQy + YjdkMDMwY2JQSwECFAAUAAAACACCuU5Rn/AtZzQBAAAvAQAANgAAAAAAAAAAAAAAtoEnmQAALmdp + dC9vYmplY3RzL2Y2LzlmNjIwZjc2Yzc2NTRhYTcxYWQ1YzU1NGExYTllNmY5YTM5ZWMzUEsBAhQA + FAAAAAgAgrlOUV9+8+1tAQAAaAEAADYAAAAAAAAAAAAAALaBr5oAAC5naXQvb2JqZWN0cy9mYi80 + MzljZWEzMjAyNDU2ODI0YjhlNmFhYWIzMDc4NzIxMDU1OTNiMlBLAQIUABQAAAAIAIK5TlFNg87c + KgAAACkAAAAWAAAAAAAAAAAAAAC2gXCcAAAuZ2l0L3JlZnMvaGVhZHMvbWFzdGVyUEsBAhQAFAAA + AAgAgrlOUdYl1KAiAAAAIAAAAB0AAAAAAAAAAAAAALaBzpwAAC5naXQvcmVmcy9yZW1vdGVzL29y + aWdpbi9IRUFEUEsFBgAAAABWAFYAHx4AACudAAAAAA== + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '47968' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:13:38 GMT + location: + - https://up-pythonapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-13-38Z + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"temp-04e1d6cb","status":0,"status_text":"Receiving changes.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Deploying + from pushed zip file","progress":"Fetching changes.","received_time":"2020-10-15T06:13:37.5896434Z","start_time":"2020-10-15T06:13:37.5896434Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":true,"is_readonly":false,"url":null,"log_url":null,"site_name":"up-pythonapp000003"}' + headers: + content-length: + - '473' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:40 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:44 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:46 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:49 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:52 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:54 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:13:58 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:01 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:04 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:06 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:10 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:12 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:15 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:19 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:21 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:23 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:26 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:29 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":1,"status_text":"Building + and Deploying ''b16a23e10a464831aab7c336882ad90d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","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":"up-pythonapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:32 GMT + location: + - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"b16a23e10a464831aab7c336882ad90d","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:13:40.9658495Z","start_time":"2020-10-15T06:13:41.0353857Z","end_time":"2020-10-15T06:14:34.3617774Z","last_success_end_time":"2020-10-15T06:14:34.3617774Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-pythonapp000003"}' + headers: + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:14:34 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --sku -g --plan + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.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":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:44.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5576' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14:35 GMT + etag: + - '"1D6A2BA323DC255"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.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":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:44.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5576' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14:36 GMT + etag: + - '"1D6A2BA323DC255"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003","name":"up-pythonapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-pythonapp000003","repositorySiteName":"up-pythonapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp000003.azurewebsites.net","up-pythonapp000003.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":"up-pythonapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:12:44.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-pythonapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5576' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14:36 GMT + etag: + - '"1D6A2BA323DC255"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1152' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:14:36 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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/web","name":"up-pythonapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"python|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-pythonapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"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":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3601' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14: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-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' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14:37 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 appsettings list + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-pythonapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-pythonapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14:37 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 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-pythonplan000002","name":"up-pythonplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":2620,"name":"up-pythonplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-179_2620","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: + - '1385' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:14:38 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/recordings/test_webapp_up_runtime_delimiters.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_runtime_delimiters.yaml new file mode 100644 index 00000000000..e24b3cf3222 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_runtime_delimiters.yaml @@ -0,0 +1,764 @@ +interactions: +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:57 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: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:10: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:58 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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:10:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:10:58 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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_statichtml_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_statichtml_e2e.yaml new file mode 100644 index 00000000000..3c6eac63403 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_statichtml_e2e.yaml @@ -0,0 +1,8057 @@ +interactions: +- request: + body: '{"name": "up-statichtmlapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --dryrun --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=F1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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 up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/calcha_rg_Windows_centralus?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Windows_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n --dryrun --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calcha_rg_Windows_centralus/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11: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: '{"name": "up-statichtmlapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=F1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:11:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:11:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "isXenon": + false}, "sku": {"name": "F1", "tier": "FREE"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","name":"up-statichtmlplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":53785,"name":"up-statichtmlplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Limited","geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-061_53785","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","name":"up-statichtmlplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":53785,"name":"up-statichtmlplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Limited","geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-061_53785","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: '{"name": "up-statichtmlapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}, + {"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", "value": "True"}], "localMySqlEnabled": + false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '552' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-statichtmlapp000003","repositorySiteName":"up-statichtmlapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp000003.azurewebsites.net","up-statichtmlapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-statichtmlapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:20.8533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-statichtmlapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5575' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:37 GMT + etag: + - '"1D6A2BA00D641EB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-statichtmlapp000003","repositorySiteName":"up-statichtmlapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp000003.azurewebsites.net","up-statichtmlapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-statichtmlapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:21.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-statichtmlapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5375' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:38 GMT + etag: + - '"1D6A2BA00D641EB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:39 GMT + etag: + - '"1D6A2BA0BC4B82B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/publishingcredentials/$up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-statichtmlapp000003","publishingPassword":"SzgMHrtQglSZFJM3erWnRXlogzhLhg4gutmdLM7RJx4ELv1BmkA7mBMlumXu","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-statichtmlapp000003:SzgMHrtQglSZFJM3erWnRXlogzhLhg4gutmdLM7RJx4ELv1BmkA7mBMlumXu@up-statichtmlapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-statichtmlapp000003","repositorySiteName":"up-statichtmlapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp000003.azurewebsites.net","up-statichtmlapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-statichtmlapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:39.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-statichtmlapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5375' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:41 GMT + etag: + - '"1D6A2BA0BC4B82B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11: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-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!binary | + 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 + VN1LT7UWZDYXdb5KWM4ZjolsB7AiWjPWhsLJCXsAq3ZdAyoMPieGcVyZV6D7xxgr3Ku6XFXLayGz + V+MPdRS5596DTfER/qqqfSS95ja9LsQdFkp41U/i/QuSiVhBZl30zmfdNYreFBitUGZVWECgzXms + y5rtVkSfNa/PWgwD1AWXylwXE4xzO/XwydPSzHp0Cfgzp9MbqO7FRe8NBBdzbfBzbXFvRbsL4Nzx + hoLCi+MOZJUvCHxz6EB1fiW6Ab4ANV29kfz7w4e2MhZXvvcQX5YEWElUPm36I2lhATv6/kNALYBM + BBV2AMjAtf3HB4+NqEbkYJoDIu8Mc/rCHrxeyw8ePLcOyG6vBs9C+jQDNCF++oxoDUSjCUAjSa46 + 9B8mNFb1+og37aX+y8OW0Mj/LhHnrAOIYxoqgkY7WIu/qgxHUoBrglReejug8gLwgshl+Axv3dj/ + gS2EVpVohcRdPjFh6VywGeklAOAYFep2xhSf/YcErDZjD02g2ybchmPGa4/IQwi/IoaWFBIoBP8x + rvgteaiDrpvood3Oq6ilcJUDbdPFWCF50PYy1kDTpw5iikjCGF6l6wB/9fOhThAgxyj3J2Cx7GlF + EfIMYk+fzgRGoV70tEEK0HabKmwonZul7/yul36fv8Av//4KPyv9bn/xvvy7zN++9Nv64n2ZvzJ+ + mX7yRfny+6/a+29/V/6L+rH/i+3/ir+y/sq/y/U3/yU/Zfn+W/v4yj6/olfGL7fnq/aX9VcuH9I/ + 11/GL9OL6J/lV+bn37b/q/5exi+3p/z7K/v6in65fWV5lH+X6ZXfl/kr2+dX9lzm59/S+7f4X/FT + lm8Zv0z/K/taf2Gf/7Y/luv/Sl9f+buy/Mvvv+qPX+nvq/4bl/C3pd9l//WV/X/lL7/yP2X8cvvK + 7/df8P9V+/7t+F9+/5W9l99/JY+v/MlX48tX481Nf/jC35XlVZb3+Yv+X5ZXmf5X4/tX7f/vHh/K + 5b+i95X/+aq9X/0u97d/6y++8l//Np7+t/7wK3/w1e9yfFC2x/L7r8bTMn45vv6Knz/6v+ev5Vmm + 92/jh6/ss9zer+Ldr+L/f8v/V/7wK3v+yp999bvM71fvy/yW/WP5/Vfjy1f2+BU/X40f5ffl+sv8 + J+X4+qvx8At/X25f2b+V+fkqXvm3/uFP8qHpc5VCDTRUq2KTflQhvQeXPVK1iuidFnSglkVee1FE + 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 + 85HjI8dHjo8cHzk+cnzk+Mjxk+Nnv/zk+cnzk+cnz0+enzw/eX7yAuQFyAuQFyAvQF6AvAB5AfIC + 5AXIC5IXJC9IXpC8IHlB8oLkBaM8Qe8FvRf0XkQXShW9jD7GnnoBxmg/BP0X9F/Qf0H/Bf0X9F/Q + f0H/Bf0X9F/Qf0H/Bf0X9F/Qf0H/Bf0X9F/Qf0H/Bf0X9F/Qf0H/Bf0X9F/Qf0H/Bf0X9F/Qf0H/ + Bf0X9F/Qf0H/Bf0X9F7Qe0HvBb0X9F7Qe0HvBb0X9F7Qe0HvBb0X9F74yKP/gv4L+i/ov6D/gv4L + +i/ov6D/gv4L+i/ov6D/gv4L+i/ov6D/gv4L+i/ov6D/gv4L+i/ov6D/gv4L+i/ov6D/gv4L+i/o + v6D/gv6LHu+D5ASjHBndSKkoGCWjm9HD6GX0MbI+/Zf0X9J/Sf8l/Zf0X9J/Se8lvZf0XdJzSc8l + PZf0XNJzSa8lvZb0WtJrSa8lvZb0Wrp76rN9ei3ptaTXkl5Lei3ptaTXkl5Lrtcl/Zb0W9JvSb8l + /Zb0W9JvSb8l/Zb0W9JvSb9l1O9wIByOWSXCXiF08FVXWzut1057We23/hNQSwMEFAAAAAgAYrlO + UeoUe/WCWgAAgFsAACcAAABmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLndvZmZk + dXNwJU6wdbyxbWvjjW1nY2Nj27atjW3b3ti8sTZObmznvv299/33TdWpnj7TM6d7qqbHQ1FSEgwc + 7N/QDQRD+c826v2f//8PSUk1BTAwcK1/U8L/YEefviUlLiH5j3P955P8Aym4OBiUoioz2z8u9Z8v + 8Q+GFp02USZ2Ro7/uC0wMIgBMDAY543agyATd1dSMDConH8xUP8LWogXCyOXf3FQBf982P8AAoFB + Wth6mf/jKsDAFHDAwFJL/PQHHSzNjEzBwJT/nQXG/g+c0ArMa5b/yH/cw//LjxJeHArN0s7VEwxM + BfWftiIYGKTr4hipoa2Dyb84VcN/udD8A4vD++9ZOyPPf7rqkf/V8L91WIOt2RvZmf3j/umC5/3b + W9TMUJDt6ODyr1ZN6X/5MIKBwS90FR9xeJgZ/8tP958OGMx/GMJVU/pn//cWpwWK5v6z8+5Bbv9n + XdI9N0wMTQ0N/0Iaw8GgGhr/m5tiQiYzGBJDgkFLg8mC/bdufmaeMzAwOTA4PeQaFBREBi/6g8mI + xXgD/BCyFDUQLooISHQ19neg4AYkdB8EghB2I0dcFjaSpKSCR4wFY01DQPyn5blxmSpkqSpCOBaQ + XmKlOjz6FRVnt9vLzt5YO8+A7DSpJBdC6rSIuKglga/fRAuFyQYHHsFUCqgM0W8JJiVHliDMEW+H + ry3t3LXSFwcU6sg+vvbqwaC1dnG//k2Zu+71uL7K9ugPjcyKHEdBDtIgb5SEwIIuc1QH1L8TrELu + M82W04ZYICfLDbErIthX8+3/7Ii5Ugnw6bEwpCFD35xQalJ4VZeWWC6Qra6ZrA6mr2qqqtJGdkr9 + xjNjknPEj9M5rZ63x0MEICNaUCZaksld0c5dDWOcu28okhN7/H2K8x1uuWRwUp3utzJPDXulbFVR + mbZjhv5Pp/AxnjFoJqewci8NDA34c/sazFW63AWe7uTnSd3HWZ+UqtKnLvd+jZqj1eyVvpqnWklN + 4+9E3322BdtX4zqMfA8CP+jbDy1elft+E9xF9zDI3QXz08xNLt2V8JMlTBQ7A7Q9VnJwZpvut7yO + +Z2IeVByfRj1ny6/UkwSXm/0HXKI6vplYtavyVhsOfGnuWCDw2Bm4vbWfKyDpBgA4IpaFRgGLUo4 + PaaFsMoB3WFPGCM+DAAF9gaTQlplUa1TsB47sli5cAYAQrt2RYK0UQ3bOhGuX/V0Bi4hTEYCOoto + tQiAbi1R0g9qNpABqMz97a4iYQgaITeYRgSN46oSnbZYEFJTGOtRwhN/uqhPfHh8iHpIHRdvzbQD + hgIyGxF3anyAeggJF88T8VHBkzCDv93o0CjlBDmWwZaNPzApSCF8jIWtYeIGk/N+tsAgPCnsRKmf + cjGR06cDOYKhBZwiezRvngDXp0Bh1sNxWvR6j1u66AuMopkzk8vIdIWaxj8Kn4fDGf6Hxx/yeRTd + PAnX5LUtzQgo3s+lWl5KcsyHTEG2GZAJCOGOg36X6dM2/wF0+LPgi/kJ9PJl+RXT+EdfyvXzTO00 + aJd4FyxhAQX3v37w3zv61wMgPDdGeuF8CZZbWQQ9sONW8OwotNvMdJOptHcYtVUIaZyfQoe1x63b + GsSpUEnhghiE10TX5Ah0rKXXN0qE8dGNIUpLSxjDVB4mz7+X2r9bymX71x9NnRf3pJWVUq4c8p3M + WrZinJ6DPr8MzK+2Ol2uO0/sT3J8ZjsRp1pYEDtjbYy5JU1586nkV1OHyOc+WL9qRF6WU4cIEUSO + tZGLoWMFGfDH11KHoA4w4gMpchxDdcbZH9fyv4Y54ojsjHZNYVPMmj5IhcZzvnmNCcSVBL3I8Irh + R42RpohvHTzS2sPKlMR5EkTKIyYxQbAWkWGGKtFkyopHuSZJWwcKy7MnX4QphT+kWNLgkdKNoxkv + 0rlLx2sxmL+yLpjo0TTtm0jNIK8MNIa6ZSQIwqCdxxLfsq4TIvgPun78Fbq9DT3DfSHzLHyB/QOp + 9ssJap9YyIlAFDxic14yOKmEAjVWnqq3UnxgIZu8/hBTSLv25TO6a6x+IKTrG8m4tZAQt+DPBVUb + M7vQpjIR7ebWJnFj1EJ2pHVZupLffL+FO/GtU0aUKOEzrmmcLOu4DbPP+YywY4GQMEFaMzBDnGJx + r5L79KGmU5DY2p8me424G+S4gG+xwa+hc69YxZsvWDRClqPyNRoH6bErDL2CJklmUz/M0DQgOxct + w1FIBcTekwYCsgLCz8b8Dx89xXpz9WhpnYyFEXExO9hvojzD5agtV4Nm0ZBKMSrZ9digusYaUTh/ + svoyAvhq586tszGv0yaQtN0AwuF71sCr7IVqz7eyx/A8q47D6PIvO7l7xPPN9TjxF4knZI8ypx+g + 6Xam7h4TEQ/hNnZXpniLg9uLDxuLlgnnBh//zSVNW/8aH9CKrSZbN/Dpxg9xiI1rnpPYiG1aL5AT + 1QE11Vu4mbIF7RajkAh/51x6WHViRzqSkLTaoi574bIR3fjRdU6L655FLssVsGPCGvCHoTpgmYQr + XfQOwUH+/DRjNAHAiTKM086py5B2vEJ1a7Wng9QfwZBsK6gW7ngn15yjKmVRoyeIdJtL0f0i8gRL + 8SO2ek2iNd4r2GbwitMds+4CbePkNOxP1wluOB+MG8qPJTICHRnCWe4LjAwFsHAbIaJm7jaxjGJN + Jx/DCzH6qPl/v6KgdGIQ1BZrP/ovl6d1m/3ogAtLupzsvDoH6ypFRZpueDJ/U61bi7l3UdqHsPvw + z0kWfiQbRW3PSbPymsrG0fLhWg6bMkSUdAFThIOmmyXIuXJB0suP7x+uo2InjA7wY1XhEKFEzIdD + j79sHK632gJAbT0ut8vfzRtAs4q73o2ujptu37gYM/3CTB8vv3hG4CBd/sIGRFaa4ZPGNuvxMEmz + J5OxJJSq6pFONgbYsGVekwtZOXLl6EHgsHmXrwMAtjsNC64CnVdhmq8nemTvcl6KWlZ26oMXJH32 + Du7ZFyiIm2P4nE3EvL2nR0hs2KMI9/I6NiK4nyKEMwb7TmK4x5k7qXDUStDHRJHXWEaSo8BSmSqW + rQPBL2rc69eAMGUEnCAKyWLlz+4F22NBJJFmPJLZCCf6DMWrwFDU4L3azwPcOVDMwnhZ3PEvYTau + Mqxp22GGioDgBGiXL5yXqIXTPmjzb+MIfZz7jlwQH1uVQrlvGCCFr+zYqEZW90iRjC22qDJ9Smvy + 4Bg+/CT3TVsbf3cjlv53i4tS6+K3Le+v7LZtFXFekAVO5epxP2yjyTln8siIlwfUG9WDxT7tUF8I + 1BoFTcusm2jrHcWFwOsvYaEQwVHJNdhPDeNYljwSI/w9shojeXZXdC33HuTCD3DeEcmnJ8vnJp6Y + a2uDVs+d2I++wjPv+Tm/Fk172Hg/Lr+2VZxu65T60dks4tlrq17pyrja/q620T87hFalnyOuwOsP + uQ/V2PwooxkCLYmHLokuY2MCfFFl1rWJJ3NYklRY1yTP8AfJ8bothHZGclM0JxGM59VRPSBJu7+k + YTNq9ylnk9Vh0O/vJAMIIEDRpsF406DfauX1argNdff2cCdqX/cl9PhffkYkvdMcvmGSfQtWwQqP + cGiWLZZd97sJA0/Si+1tLttN/tQsr+1Zv8xp1XaHbJ6zLcbNuoM+Tpu8+UbbqZa+c/vO15torAiH + vqOuPivdNDfYe9T0cv/BmmOHvySG1n///I72sVrF1CMWY2fAJbfS5E6WTfzmgIF1q3EXauxY8e4R + 2ST2WdW1SxbDB6AhhOFaFWdy7wSMEa0kAJDsYx4dSHQY7ZvOS5b/NJi9fptTCka9i7ZyYCeK9pfX + PmQO8Lb78viVC7ojwc7tW7uw+Jrrzf/6LA9Q2Zkjd90pWKL+6QDxM7CUjp1odEIBoVlsU4oNrTpK + z7ppkjvRlJFwQliQYlPR1aBt4IKj57vnDE6GGR6TwZ5+yGrP36ZZjE2pAu5sg2PSBzuc2GfapVFX + VjjcZ5dM6Gljc7xm2Wzwht1FOMR0HKqk2KQC8H3+KLAa9vgdaYh9qBeU1O0RYbMs4DO32Dg+4C6a + oRsHhoN/kDb9yKbJhEO7Tqb/q+1iZi0gff9V5OVN33dkNevIlvN79rLAi7TGgQmycYvccoxoC+eu + FftvRIqWGDzcX5u4lb7UJPeCP92Vo20o6hw1fwsc9rt1caXib0pPNKhQIp08514hQTbrclzEZCJk + Ik3PTFsUYsPVQraeEVHdsM4dBvD49TTMv09gYECPfb3NUQtTYpNQd1QQgDqfYwtta1JvBJCXWFVk + bhMD7vx4jtcocGfngqu934WwhVi9qesehhvxf6Eabbya+GIofYuV0b3c5nWb5yuo/zocs+1fYBS0 + YY//xDuWesQuvtVesPPVeUj0+Ivkh/uesiBtv6AiwCjad575+IHoD3Nk15NYHsW0ntgIxzQw9Fim + 4I1mwJDefc6SiBFA9W93A9okdx0xDhYsfpTEZzW2VM0wPb0vyMXC1wFw1xg90Omt+IkDwu8nWKlh + cUnr897fOGOqyT3Q/BnUZtAIFxPqJW3DL1ubvL3rYz82KFGybdkDD68m1e5/nHzioN9xo9G01xkR + Hk7sbf88n+htusbAPEBnHWTLBP26jeDB7wFX0ybEQS9Z4CRN4PvEb87VogviVHuMIjatAqZ8hD5W + Fq0KoV2IcdcCVS9oAl9+wlP0sqSa37IZ+HOV1vPC59gF5V8qwMkkYER+wzZUeOJdioaSLhuAqJ2T + bFrjuRU9LN/hvd7L/9yzQMl/XlG1aXfwvlyzyW67pzhSPXbIn65wCDD5URIYmt0vUpRJs9Rpt9rX + ZrVks2o/9UcnkXHR601HCWlqTABB3SSTJix6ElgvRD2ecCpXiJcu4VZsO8t3VvUsyB8H4f7DFdwH + mptx3RdiiAb+pdoM+GLkj7tyMSLNw940jubZU7QKKTLC2Cz84YVkrMYuzIJ5YUyhLx4rvrQAC5XS + C2lrHSiuauXACy1iMf/3aVi190KJFBvNmzeUr6yNcc8X3UsalZjcGam9xGeRSNRHL7KFA1tF3ioC + k/NJJGRPZOX4IM1VoU//9DQIcxN513VpL/vF6EXlrlGu6/3vFLFYSS3ZGjrrQ4vYzqWF2M5FSPAN + 6ffXjmZWCal2ssUNzEDMbS3vd/S0tLqrvrP1bHvvNLRWd/Qt4UbPTLCHS9yHbOJJRgorg4I5DM9b + +iBKurrZAVzNj+SDEoEVRT3z18P7QF3NgNiWlKcvLX+NGqFqEOzVF+48CoKhvJlVDS+vO/vKLgkk + BKVQjIDKF8p9xm8jKAqQScmzPrc2+NG2pOx+pjEsNSyND5W82IXEwBxhUW3UDGK7mHmQ/pgBZfQr + M97M6/Wi+W7VjgLfUCDeBl/1/QRyThhcacMkbGIo52uDmBZB7rJGR+lA+Q0FcFQrwB9B8iZkgz8A + 4gSO98tdrL/epKvVS5TAEUPePbq4JmGJ9YYkYF4y1Z1ilyccEp4Z+MStIXleycKKufS39pccJA7B + w6XQ5LFnkGCx3xuAIlCKC7AQrKcZ60jGJIxO+IHeAXv10d2IYvzqMVFI8t1ny6EqYZmolqIbEKc0 + pLxYZz9czckJb6IThFabcCIeVVi6nzxIy0TakI/ZhUoQ5HbNZx+j4LeA/Sdm5JNIqDsnuAotD/XQ + fdI1b8LzEijZnXvR5DPxfRwzDSO36RXVsAh+VSAfapX8W4EztNJcoG2G+JXGdNsuWEl/Y+bvbiGY + A7BLEnAdHOHzImnQYUOYPlYufpcufkbpj4GnAI7AaSpURQQC8IoeIAndjp5BaMLCEakO31uGYJzk + c5erOX42I75Ml/dSHSJa4AlYrNebWxDrllumAz/WEe+EgxGvm9MuZlzwssedlw2kDel+TE6MH4uQ + tXtTtdb3gVOI421oP41ulOxa1OtDKUqXrw38/C54IbY7TpLXqvrwzxbtSRlsDpMkynsx809jsnqt + EnpfyTnAikEXZcCWYxfXtePhJQdH+cg29G4bp26/Xetfa4ugzoqGuiJbwVz6p1twdDgsOUVqeNLG + KO7nrdwiaN6xhjAch37gis1jUYTckZ1/pkOf6iEjPXupRI+fEvP7xgxVAYINb6HZKvkRq8iZbGTa + 6eC+mIhWVktnTDS3AByYfMhIkSBsw1YjsRFe2REo3d3nENlXjukHwujm6nVgO68eimiN5xgEUcmH + x03XEXKG8YQZNpFx4By/fS3z7c+EhBPwMOufbda5imrKCvugu3eCpN3lctKro0aLmyBd+NUe1ro5 + 2TtdafpT06F20NmaLBCKNlGlUNvvqq7j8KtzfDGDpMSEuBMC01KM78XIq9oyNpE6VgzRiY+LWVUq + 3X5i8dGLxuD+HX+LxwNyNVW3zWtqkVDSkJ0P85xk1M1R6xdFYgKnshdNrqfYGtCJ+QlCeT9QiXrh + 52m5awBYF9QVArvjDszpnzNAnJM4xDMb81rnwLSVwGMrZO2C1vtWOBaCeLFIIv/mWy9jbp2g4Arr + Zr97lPQIttAhhnlnNgc34B4x/ItqhjObcqJpi8axSN5Aun5fa9bYEUMmWQPPyX7luP9b0M6ZyBl3 + 6ZFcqgWNVTCZunf4nqpEFkyVzOou0fvjDgfm+vPnT4Hb7ndLx5kdjS2hwmzaC4kRUtDfrN7+Pg2i + 0mbn9xmhnZazMS6cvLrPx52PKY3ijZioif79VkymlgPFl84tvgaY598lBQuOJWAI7HmJP89UdOyY + oNIUAS+CpApufQnyNDUT1hyVVftLsIYkfC0KrjEiylttCqHZBNcPXucal5nn/IaoScnYSN8o7eh2 + vLJKNpoXtEIzN8WNrniJpvegtoOgqrKgnLpZc2WfJJ2aWTnASw4Zd2w7TvVCwn5E+WsVHjOyOUqC + xG/Mos5WmANuzTHIYOpP2ep6rU54/6YIQAxZfv71+aDa8nENMwjEjGtDoMcfVkKLjIQJu0ERnelF + 1r+a1V4S/zGwZm2KRPC2BLMCoD/28N0H9kjJz/X6vRJMJdlwdcQNRcwJsKweckKFOgQUedPD1Oa1 + 7Xs7BGPfsPrLnniwfLKozgHMUpQ8qEqgUhMphEVlReEGCpCoICFQ11++hybDfdB09OYM8JUgU5FR + V5ajI9DdEEvDjDuRXnGZTzg9STOVxx83XcxPnASRrUlsjMWbN18kMaB+8CxnhVDypJIeS/v4Y1t9 + ywvchMvXab6BoFP0DU4gI4/4EGeSi1pURjRiW4anqizOwmXTjCUpRZ8I1kM5j/c5w6bPfBT14dpn + yEDmQWd6oTHzIFWHNKgI0axPoN6h7Hbm6Wk9cTaRehR9OCH0sK0puwMdJts+8X8svPVlBqBPtoNf + 4akqDx4Eh0UmWF6QkVr1L1S4H1zNykIg8TYHaAt93FK8/u74tWTH3vTupHsT8fk59f6O4LfK0CNx + /yjio3FEOJ/fFRmVU4c5q+SbJ/50ZFEpxKNQOTImYyrkUwIFSVf3jjbJPHgzD8esp0saWS37upgQ + 0pl7rvs3x5wdUkpw6hv4n2niP8qBcgX3BgWIOLF2q/udOKThZYTZiuljJK+k4IxcHkBM/alpaOBg + 6AP/NrL6D+vRBIbhCaLDSN6Ufu2UVqcR/wKW5kwsWOZSu6SakVYUYbFo7HSxLSzJQCf+9rNkrxLP + Kctvb7GPw3oP0WUsAukqFtoXpkm0j3g9tL9u8NmSO2LXJiaNmiN+Dfs4tisgYIZhqdEXxrDkqdem + qrVlrJM1Q1uZU2ID8gG0mvslTqUqYrxKBUY/BIybFhBIneVYaRi7fQpmnn5Ln072ShN+sk7u0Riu + 2xDO1Zt5FlEm9zB1Wsb7bIUbluBInpUgeGdLDLHUvZhweBKZKywMQ0OFHyb0+Z3k7vapfl7/Vi2r + yRlEGZQb0f9JhHtuTrPpqDTbiaGKX24oamcnvejOM8y+FxlqcGFHGicOR4lWCJ4RHcQQSLMVSkwa + iuB4oTlRe4VtsWaqwSzfxpdWtaqArCNfewvzeJ8CrG0tkhb0CWTYHSLBr45r78IcnM1orDpYfc7H + uKhpn81QVnVA2rTden91mei3/IR4BQmJ9EeyOVUtzRsObHMUhATmfNMJTKCGpgemaLHKc4DzrnMW + nUO1oD3NBX9f394FKqLou5m1W8c9YoSMEFRQCV1v9lAvrS0YaQr5XBdNEdVOsel++U0sEmgKze7I + DuMHGN8tzmZm45TazKFhMOoFxHXvGHNFuchc1NiYU89mb5kDOz39a/rb7S8yFRl5njU2TsBnkVL9 + TSI1ycfTveiM9ehC2dAVnDUbp8wj+RQu79XPuUpDCGl0CbDqZwYSHjqTGU2Yn1pwmfrW+lKzjyvc + 1hWwT79s86lJXrKYSGCXHnkAm3SkUsCFDbIhMk16uA5OWBax6IVQilTsLafikZNowIuzU77i9rjc + Hx3FWU0Mp1eGUe7pIBRmLceDuJu5S7UszInxpEYLfsHBwRK6DMwoXVnuYigHQ3givjeAqt6S6jwO + RHnfaMBTysAeego4VVa4pf/NtOO0r+xUH6ykvxwe7oWABMvPqw7lEK3dMfzKnTH6E7yvhRNuPnEu + lCfl2wXWqlZlsSEqJGR6iWCvcy+/kELSOHUpIcEPGcNjQZhR4DPNJCd/3veQy9ylYVAA+A8ZjTuL + 5bm6BC/F+Pff6FXKlJqi7nWEm7DScO5XYUWnup9zCXBsoO+fxYgJkzSwoKEOzp8du+H8b6C3vM2x + q4nfbURl6UgRbKkg1dujiixcHlCzVjhrgd7v/dTi98/aaVNzwSEo0Xj/tqbJ5RnGyFRXbMEyzUT9 + 9QvHSiXnnCsd3cYmmrzJo/HvJbmjsfuttuE8+tfcTgfBF8Fi5WdksW00COfCIgEi9YpuoPmKwyp4 + MiFUhQC9MFmFmdoZ87E8umq03d9TAo+ACQ8hkd8/BedQ0kLypgZ7/N6slfH5xxIcxwoMZm/vaDG6 + A/36G3t7Wa9Dv/ensBGN/XVCkGx6ZlfpC23BsZIeTki/klE7d+ZehJjfRTYoz9x4JbOwq70/FOyY + BSW2zNLsPY/ubHRYLoxKfBjWukxHO3QezG7Y9t2GbRKT4T3S8vhfFiHF4DjM//2iorih+/IfDXmz + ptwRDlxOjZR37JU6IlE08jmrm9ntN5+9GKpMpWvwPq1aS9Ve5f96rL9eu30k+vjc9G94zZozeMyH + xDP5uzhFnNXucj+/c37c23VA0L7zFtf0Objd8vO3ivr+PFT2sgoAWi1Vm4qbaHOgtuRObtrlx5BT + P5qpvkGlspoxzTdShJxhbwLP+m90V9ItKXGSi5VKoXbqszo91srUOVqdt6NBRygO+bv8LB3WE9pS + PY3Y8QBob6B+dAT01zolt8nKBvWKJeahV/52z2PWjMdsns8UkAfNIKPn+I+L+W7nUZadrvvR8kAw + UcrQUjHZBK3OpYhL3Phm+dis1x/R6J4Bgo/fsVhv3Cr4VoBi0VoLTsJInyl1u7JkVy9NMuMsx7E6 + UyT7EWav6eC9yR5h95El5sruRADVmMlnZ/pTFUG+562EfTLvxxG79tDnI/5gUw+Dlw7jsY1zW/qb + iTT105jBeOWcWBfNeB2NgVpAHfLYcwpHV87V/fwYMAPTmY42mlbmdFE2k1B9lSSWmiJwO5YMCfO7 + tgITSPa6WkLLwDd4cHBHPg282kO4JXGj7+KuUMfFYld76bilKzKM5EOvCmzhqhXaEwjIL2j604/n + uUQQ2urVBfmZLn/9KOblkBmWzH+rPKlISfesGcdZSmhHtR1e57wdvmz6mJoZsdy7fJNMkuhT+KEY + ZfyV4AjqhhWR2AqcjN2xQJifnf1siuyDKim3uruOSszx7xIp6SnKvNtVJLdzoL8igwhZ0lUbyIlG + T7izqzGVXlBjXaIMg4ebQFXCxgMksqMbYE6/u5ibiED+aN9liARqidTeKcUDjfdtXK4Stf+Gx8Ch + ZHlJR1p+Kh3OfJvC2P9uHKyZKOBXuvTOB97fF4zZWkGuQ+3JD65K6KWqgal9uUItUPXFnt9DjZd0 + yip7yOHmH3TKsNRf4n1t9ppmYaAsqsdcqDQZShX33THYmcTMV8keopS0RC053ERHUKjo5DrN7C5P + g/yXbtKJciUWcxgEhzbYwR6Gb3TjX2InmeInZr3yJZ6ntKWTg4MqU6uGAQlRS8oqgtwj98XHgsbA + sCUED0X5EtIw4PybuSMedIIRUhmDkPS9hfSrOVsNTmSrivFVWJM8vDuc4I76gKpDZlqDASszQ1Yk + yXBKkbtJdYP2HUSBlB3Ew8BIRSIOwL9DxC4OHehdhTglNMZclgxiB8xCs0SBYUR4WeNMdzju2TRd + wQS1sVU/ScNXj5pJBKrsGp+NzDGT4ysgcd1xuDXZDurmmzqLJVFrzyTibFHL5MIbkgk6vmfwlT0e + yTImGOf+HWRkZPrbonGosDHCLljZI2ndn8Z8xTHQNTsX0lZf3BRStOPK4TcoKPZFn81Ps/ucYQrb + eizEYDL40vdxbZogZX5+9NHDthjE4pGLf8B5f4+XcSdfY0m+Zf4od1i0egeabXPkWx5bHuufa1Na + Nq0wAVWy9kkoxmQtWPVRgZ6eJ0YyaMXFDvevNWvao6oeNWDPCNiyQmXoInPR1Z4wrYYUsoGtL5Jg + apvehSznf6paX7PV6x9JVVu/uDTqQeBImHaiJJqcfNno9vjaOupF3qp4xHNqFoK0KZZQYWFXkuT7 + 0Fg7vWrnve0xJbcq+ie77/KbbZm+Ze/ynhG6yy5YDN9ofqr71gXWd+J/k/jLf8sOTYeOWQ2ukhYT + jYZdgOIIs0sf3eGuTlFiAT08RH9rkXHXbj2RSS8Q5L8VUnGBJhKluvU5nDKLOnMlgigbLO1x+EP4 + p5tznbFHZkPceGDAZKzngJ9uiOENV1dvcsxLiU751CR6tquSrSXcMhRGc5k8E91P9WC//tJCG6ct + mrVt95Gzx0hJZefV9rdYZJ+pkntV/Xudc/lXEO2q8AH9m6r5ILFBcNp3tycls182FPG3v/GYJrjP + ZieCoaniEqGXC+oZgsKqhH9nF6vJFZd8WwjrKsfPh3c1TNpNitQCiIjzlQXjG4eXBPk6Yu2KdO1z + 3fg5fcNaxOo/g2KDF9Z+NyTa/uZfevWnFbMtOhLHClAj1/vOYp3/vKi9jEaLlPeyqRL6NrTkbxBZ + sViOyx0iGHYqcCBJnjWVI6J7FLMk7vTurpwDIwZxFa316KvzGOOi+Bz2xf9zrOzdBKgk45uHdrq5 + ElX0xoa4QoIbd14wPFKfCz5PwBr2RqTsC3l1HisprQeti3Q1p5Zgk7HTS7m/DPiR3Itxq7W0Dp0O + 4gDFTdWJhMU6jfzqvnR2//PAdb87LvyCH+d+wzYVOPcJa/UNh6p60g4/aS26ybw7PU6p7Q3HwOfL + wd0d2WvDXAPgwW525IHZjERODq1jitevOzWnViI2WUu+nk0mNj2aDYI+WqMwuJoDwgOudcA7kxPN + YfFUptn764c8u8EcizA1zp1V5fTa1z8xRId29ZVDieCX7+9F/SlSNejXHLHHPZH6Ig16aiFot0gW + zx2YDcWrr1cLZ5jmHxoRHiWOoxU11dwfxzHaOREuT7Zf3xQM/CW8Vmzva2YQmAOeFqpPBsaiO23j + lTM4FarRK/OjnVLJef2ku82MDnYGGCW0I8lrv2C9yR/GEzTkJDkCk5MmuauYueBdF4AJ4qeB9hTi + 9DTpA4NbBlgyq+/NGc0vrR86RMR+jjgyanam8rBUz1y9wqVQYju8xJJfRaJeVKh3AXlgo8BHlKPk + g1WEejlVfrluFbPzkeHqbReHLpuXCd/xXOeIvwZLLl1ul9n+7W9pm9ceKT/bf7VqAJUQRjj5YrT/ + 6E3rjdrO25Xdzp3LFF+Qx4VH4g6p3MCjs4GhtM9CurpUsDwfGKD5J+89tmZfYcEvwG7zDVvgSATI + m2AThnJ1Qv85eM0jf49LG3/mN4jYv2xbp9yxoGzyquqLrCRwqViXX22pxJ44xKBcKQATTxCE0ztk + njFn+rO+fNgsyQc1fQyy2cNXuv19YRxh2uzNBUg0m2lj5IwxbvJqW5s2HjDStLa35NJ+kEfZk3wn + 62UPGfDY3XdxkUwQ67JPsEyb/sVy/04SliyIsNeoAN2r01RNStJwFxF4bS92GZATi1jz76Xjo1Gg + czArPkGoQwYs/NSj/QHjMCwcpouOwoViGKNgwe05t2tRY8Znrud125vua75SUom8k1SxqX9uxVFX + 4cThRL0i2EnT9bB/f92zd9SwsIu7/oPjx9mHzZw2sDYphwh8V0Azn+tk//tsjJfnl8ysGX9NX8r7 + oFLCkGWjFpzROdB9tSN4iXz0NdpE1uRtMNuBRHpaMVzMTb9ZniOprhoyKBywOGKTklJ2s5AWfl/2 + GFqu73kf3UFwHI2QAeOPAaKo4iNLgtnZpBPlwOeugGLGV6qBvkR6fJQmzFqQpGCJwsVvEKV9mHS8 + 8FuQdHFd3MJT8M3tHLU9iZyg03ed66EO2U7L7Gc4yEy3d8VnaLPUnT/UZt+uocTJ81BeTW5lmELI + Ew6IWfibMGqDf5RlKJ4aYqHvjAwqzmz3BX5o+81oOCV7qIjRAzDieXQdukGV307KV2dzt0xvtBA5 + 43GyqGcEQPszfumXuw0DzPQzCXpgUFOpdM0hExwWincZtrlLZfWwNWt+6+usvIKKn9HaYwl3LrS/ + HTmJ8oN10YNzRZldTyKD6KcLGO15sdAawXuR+OfLbjDjYF9O6cbfUBFq9r4n7DT4O/3y+zwcOXfw + dEURlK+rvw75ppGGJLk7vivVI2w6y7M6qst/68Lcc1m3ycTPddV4s+JyXy7aNIGZZ3qdKIpO0+6h + FfyRE98823/40axz1lr8safZ9Gc5fV2QralX6JJtvLm+8Zk7+6Qmb3lJwOfxwtwiwcRFrHnrKGfZ + 7uCogDBtc855vw8Z5dGsoI8iNjsKQkIw8u6DnaMVE93JgXdPthgTewXqokerusHAyqErRYnBM6bV + vJWX2avgtqfenqc8V+N+oVS1nEsA9azr7uo02Q2F8VKvgwrit9zRXJm6e9ssQQ8DXvd+c2Do5QhQ + R4BwxT37fd+mvr/k5wL991/lTJ8b0fmPK3ndVp9ZGyECHkjCpce2RVh2Gc5PD4KbOLmKtWOTDgwa + gKbk1fOJXG9Eal4aEPvNLEfFEn4YGXCZ59RRBo5FWEZ3RolYnZy80mWd6ErG3j1CBUfwVqQjPmOC + x/WY8qTiB3N1VkCzr00xKrdXi9VVTW6WBNJ7yu7Ltgn3/aDEKpnyqd5msB8ClUhWkDn7RYELfZ0I + d1wZUbBI8xrUbCDRlqB4XaIAB7KbR9vK4xBJl3Uz0F4KCcwbWogtVRmlillG4Cpj0/xT+vMU4pl9 + xL7rCDtFP/O4LzCSRNvupkqKvHmC7VCJUGJbOiBzxrzTHVPHPu8b/2AWRLqSlcivRSfm5ngl9Anx + 5f4buIMKSsp4AiJ/qp9els5biqYKekmMX7F2+bSRh8J6zV0JFL2hMADgaE/K4s/rE9l8RULA0YGg + 0XcQaaubLE4FFD0tVdBgkaRSqOwwhGYqbGppdFnvS9ruTRJDACVdwskzON23I1AG0VtzMgjotwrK + gEcW1atN+zv3q/v6bQzrq8+jVONMn5QlfEENo1RRbCha2e+075yjcX5w30caxYH+MBOLjw/q8TQp + b8J5rGIfCP6oADA5+sZRi7l1sMCuCs9L2vKpEBtzdYydzZVIa6PNew5eWdXx23vRMNLCESlbNtzF + dSrqs9GdpqmwzOxmUcrA/3DxTxo+pNWJeHY3a1ZWUjRnl6kI6ZowzU9SiJvoY6zG5pVafqGlxWSe + gKOuZuOSz9CJyhaJoSDehG3LJp9zyD3L6n2WvAL3zfIMZf9EH+hKTPIs6dSbkF0pZYCNbSr/B+9k + toFFMSbz9T1C5y+rpuqWqBuE+/75EaWc5IDsuL46wZ9MKw9Cs+ZNg2FbrBn3xtD4v+O9ZT8LG8VJ + L0o14MEdhLlUhDmj+Qe+wKlkJCvXWIB21gJIiboB8X4/A6L2Fz82o0s4uDpBBI7Qd9CVXrHD7uzC + BPwwdvO1e/1of1B51EbuYByF4jYgVbiI3nLfSsGjWRazs1o2lOekOnSt8UNr5onHd9dnvK12n9uN + U1reCHL9Q26Y6TzEIIX2G6/hViuMShm/MUeLQdXZp2S+Mw3/3pRGtOb8URGYPA/VEY3qCPWSlCLn + bImOeT43N/jtSisNKHMyGm+9C98f7FB7yvpnhAc+HwYT3BygF++/wYvHWAZYSJErSGCvJGjkEoXR + nnmKmg6P94IOgKXKFhfzN0s5tRvYEV7QX4B9gwRRDTh/VUKsrLuwq0HWwWWOkOzXzd+vSDHuq1sk + PgrOXb5LBys6ftNYEb1IHNR/8OGhBhlwdpL4ztslP347QvilJC8vwwUxllxmNYlah/F4hkhOowaH + Ce03enAtRMrefY/TmR0G6RtRpis5Vvvmiu3GvP7Li08ntUdok6RYOlyujkUz17vk1ISiZH19ni4w + 3p+J0PlPNPZw6fdJ0aiGaMhGYmrZhpQQqQKW1yndz/nD9Q/oJKbZQtgL5/Z8xWZsm/htPg2x31EF + DloVpG94M09yeJu5qrvNBOdYzm2uwUeXTZehvN7BWnqNb552MZuylqBMFM8OzJv5n89jlpscqPUI + pXKnhmEo0HxeppCOTBIm2exNWnni/IzgLba2rZtWjkzdBsRr+47Lq7xxSOtuCcxX3U8fWJlM1SPa + utfOtniJ9b+O2TuyDnoniG28Zyn9xZ3C9LmY1X7xnya0RvaU7hywyyGXU96MpmWASDO7b6g9Uqqf + DtuRwvMqVQtJOvC4QLAg2FZfuRiDj7jol+z4/XquSwUXBSmcz73XE1DDqeXYEIpHaljn0EFRC4u+ + UFMLClQGsrm10QwmhxFUvFVc2nzZKTinWA/bg73D4G/EkpRl84ILgds0ukdTgylM0PuT+zWc00+T + A0B8y/tXjK2A2/rehb4QX6H5/iujxDKE/+HF0x7BnP2c+8uyH0dQx9wqIVV31nnf8+db2sWp4nJ3 + s+l5XL9AqA4EFbh7Z/wp6RJU8zwmkn29XHoBphvp/HQKvWxZKDCXgvXQMtSNFV/a+WIezqH70w+U + iv1I8Kiqs+8m0BZz5VHOV2Y/l46pvoZwHYw/fHD4G+PDsEBy++R6vC2/V4LQXqi79Ot9t9qGurto + Zt2Wp0D78So/nvjtMs60OtxCZB9niPunKorUHiaweVI8n4VHIQlLRM6HaCdQ7sd2dChELWEVKpju + L33oZCpNdu+VzUg3njM9/6O3o3P7H4AJoP/thLeVc1ro7RnSyNFDRYrWD5t9QyWXYeDL1uTHfrL9 + 2NH1hgCBHdpr1x/9GECI7BQxgY1L6My92hKPaeYixKOZ9k9Dv7x65nd9dQrM0XvjDD6VacKKlPkB + HFeGog3bfFhL+qeiVQpZ0e8E8LQthRBWUp56fv4yK82S7dvuwmrPU27hmyu1HUDZig14hMba52lQ + zhB8ojCjfE5mxZ7HofcQMrp2+ZVFeurb0r5HlKGHJ+Nr/9pTC63pepF+yOoE2qbk3I9fzy9aQSba + yXbKgJCTRJRdAk2SY+MSRqjKeUlEZIjCIEwglBzuI8cyrCkjizFayH7FSWII1GD6SkWK2vfjpF/X + OqGeWyZTIOh5a3rD9/ejSL8EX0/kff8O+THJRPoNVXoHYL7CWhVQpHbmPq3pk/BKLY/VcQyKq5VV + KEYF0VUQ5ey+u02Fhoj8LTFm4HAUB/OPxKDXEp1DiFICDFde6nHwCBpV9dQApTPakDvRYw2Scn7/ + e6+ZROrYwRr2Sep3mLjebvtXb9vtIw3bbUlnaBvXiRWa1jIaIRWUulAYGp0QMYllGeJyOS/Ibmg4 + C6PZJxbir5gPnEKDPaBfgSOUBF/Yo5yTz+KeGvOr0LUVOdXl6A7r7E4yyPiWcQfQ5zSaPY031YoW + svmdtCiae1R/YNJZpmPrLXWjWOO3T43peBXOTE6n3ulvkZmHJeV5d8Vh1eVHfRamTeDbT8iKCywt + HpdOiGX3QmMhRUIJ/w1JJXU/EkKHPF3tKzkMvCPngbOVG5RbFJHOoekUdaqIoHIu8UAPHCTiT+BT + pBMAwXiP+TLJchzpck9kHRO/MclSyVh5LUVWlHtZBrHr8JvQHr4MDJUA1IhWkusWhmIpXyetElGS + JWSX/IVpMcwCkio4FOlvGmRL0HZjvqDv1ysKSK07qWZLQ2idQfH3NiThCblegmEVF1TU8gHG5R+m + GLb5E5xtwdlj5E7xvaYZpCDz2RW73xZ8ObmMl0+h0xhisTQ5pStnbp0MMN2FpbOk3pjpIoaMEGPr + PT1/KFc8Ed1NUoZs2NphynQ90xz1TDaMsT4uU2xnA7etCC1bXVpz1q3cb1CwjIayh4CoCgwWqMMV + trfRfxTy/qZ5L23hN2dzybrvANYHppI0IlQ052J+Nv/ePnSYZceLot1gDG3VEjVYFLOl1rB/aLTP + 7+/7Y08qzq5rQ8iZ1xyeffEzYZW6tcvPvDzlh3aPsse8MGWKOiXtWJVDGy/jh45UTxgFdcwIejgz + UZgfQprQ8O5Pv9HSnmCuSxEyhZa/H1Cwlk8vmoLFx9dCVlpNjpNEn6+Qztk9ImnrhX+Nv57uhdzm + GrNnO5sZLW8PUdYuz484+bqBqiDRRwrm4NYz4YV+DFm40bMveDIq5VpYOqjUAXEnXh9ZGYOdpKnC + RyVtKHwudSnwk0kSWrTBgZ78p0LLZiFpOxARfg0+1PhCNDI67rG7ikTkpXT8wwlAYOunoRKdck5+ + afxxoBRP3ZIkvkLEiuoehIJU+aMwWwkUoQQJWhSlMnwr5ZhLo/9hsprNz1byVUhCZJ665XAScO53 + E6BkyS24ARCVXOi71HoBvAHEM30ZTo+Fuq2khmdc1YZ6pqODWEVDHpOW2GhrXPRq60zUqtN1sBxQ + l6De5h8OnuTSiWltgwb4npC6lgov7U/xwKgMbnNVANa1DJQkdNjlmKQv7ZMXrDHB9kz9CbtSz7xi + 89fm8UvYtLu3DBmX83xZoTjDLZXgDyqD6f2S53m//G9mD3AMXl74SHruS5er+8X7Ah74CDh9vzFb + S0mpqkph4IVmSyUvxQ/3iNfcehurXJcwawn13r5Hkwxd3qpvjDmysrtBQWRQGvbt6u7mSLNzPcJy + ocnc+ZdG+cuAcJ2Bu5kurzivFKf5nLGb35MsQ7uwzAI17ziFPeRSMKc7LDkZ0OEiWMVayf/m4kS0 + H1dibwjU2s2e3iZimjWI3C3dx+6nIQj0/X24ChJO8U7fmp/fa4Irc1m8x7B1adZ/4LOxsW0FLjnX + GJC7hBSe5SZvCS5TL4fWMOqu7vqMyFottvDoBm+3No9XdjKe6Dea7hS1NpksIraK2LdudoYcWpz4 + AZMjiHq6OYkt1a7Tzj8m0lqEfkC6JGxsG9jUvsXKA03QtXERoSNZic51MJpa7HUDnktDjLdb+iR2 + w2NPlksgZzxquv7a/ACYZ/4+ihQMR/gCmSscgqMuiwefhi0XdBgd3WKK35whJvj7UT+hwNb8Ee4p + 5kCNc0OEsrCvyCZWHC/i76ylMUSgNl6q6Wlk5Pz7XMcXQvIHWeuZPMmUvsmo0GPxY4dYO7WsxX0F + 4Nou33xTpnVes9Jhc6sOFrBbifJS+9FudHUKEJBW+TUkTFRWPPzdOoUt/UmNPmqw+JTqYol5psNh + tKSgv3HJay8CiFSc3n2VzRoC4GHmyiYt+PIf5dr7jG0h+ZWy+eowtARc+R78RSn+QbRY77LzTUY6 + l/fEuRgu5AauxMtKknf7qOPm+tA97nkK63OANrbfFKNOkRiPnBcCuazAwW4NNHJhqpDKfbSIyFeS + p8PjBpys/JAWs9DDy5aDxmWmj4r/BGTGWdD3Md7LnC48pTcWQUX++iNRBJ4To+J0haxC865bav4o + JLUcoJ7QK4LukORuDCdCCTJ71O9cZo4A9FcVO1QK+YYAEneU9+3S2DOxpIpiQ7hupTK5f8Rt/PiO + 1MMFxR4B6Q1Fj0JXSLkdIzuw5ijeepXy8w3WGo/Dcd6JEK+vPcUsQdycOXdxVnB28yPqtOVvKtVZ + 2hCKRYRm60uHT5j6/TmvBQPQPrq+w7apv1U9SQ8tf841k2YFo+aWavFjQSK42u/vHd5M7qVb0ZtY + 9ikwI3lmq3u3y7HRT30K6zuOgTFNTFxyfbUDLYfFQY/GkOiyTE7PoaLEh51g+8JAb+VXIIdXlrfF + U7jfG/Gf0i3ID5HUSiXGFyXmN5RAtISdarCLUPS7gmXO6W90mIWeHMyQrnysWWiOKayp8gVdPI8i + W82+z8DtBbrP1r2jKy19u7ig93sbSYkzaWjmW3Y/3g4GPAd5hSqHu7puTnR97QOFe46iKSCLm272 + rtdidaS5BtCyL0Oo43BHghFSpPyX1XV17u62NXrTLRESHoAJntN354gj2ZBiblmH8dnF/Y+5U8ZS + fm72JdClfSZLEBe36GDDA4gJKrjiEktHwzrygRNJeQuLXlzRxxLtIzxfvvJmsHqWpjF9DT3cc98Q + SjaUiPidC//hyRDxZNfY4R1hOCOpew1kM3p0j7J0zESmgqQFTCc/ffRNBk98rnMAyvikNhbiCSxT + L0ubmjv1drzI+XzJq9dzsSfTKnOdPYO9sadcTpWipMXUVt0rlCjDzh5tvfwirLws3RXixV7DnOm2 + KYY867Jh+6EYtzCYaO9dqczduh8mBwNpN8PM/vzGVldPc9hvgi91bAE4mREtTBUe/U4vxXK58+qw + 6oLTSju2KTWcECQu1qoXZlN6qWdCqmCbiRWstg/1TZpkYGZPLwbgf/kN3hUg1t0IiVx2UM/I5mOH + jxw7l39PqL0ZmkhMuCUS00jR94k/xca50JlhAWOEe3sVEUjDhz2El4R8qaM8/5669HRLpd6BpRPn + VVQ7uJMe37DepLKMBN0uGtJFB4nZ/1wave+hxo39RvIHnXaPxGj9XeXPbDEhJD3jQFX6KArxugt+ + oDOHOxIQRGbgqsOLxTwmh8VA0zgIlEQiRuIJ7BY42DiWiuQHK+/4Jna5gO9GkEJO2cXYd9Uk+Xyv + ynZCe48zIQnPoly59V0rMSvoxmOcoVtfwPjZUtcpTzRGWSYZBhHpq/yNj478z0hs1hLP1iLbQdYD + 55Cz0AnJkp9tNIwG4piAMWqHbkZrMZp1PTFsEXugiHfqfWYs4TOq3IYNIbqykBpoUJcqZYKyQa5I + +ZGxfsH2l7AtMxw1Hyhj4qKhYkoc3blKSOkXhmmxBOun/6d3+r6BTJe/cQPOcznAeeu0x6zQLbrH + vLNW6TfzzHIXxRaiBOh7lqrehVQAcQQhEeOaCntFXDVckmrd/co/aBz2J/Eh5M6O06MZ7kp1YJ7R + c9CMHb6bZsp3wWfUg/xLNkaBcH/DOOpTJbNwF0ctjQ0L4HuBQTlvzYPsgZ+6xpT+KP1SJ8U/50Sw + tCjvNp93/R+CEYj9dLuTNHf9joDVv/7EeA+lc9q9LVL7K95S7RxbM+85z1D7/sJXjUwYXfTCOOA/ + wcpl3KeXn8t+qd5kqGyXVc727p4pybmpbi9eH5w4WfBN1vBNkNLQhPB/miLmtzO27W6rzIkbmxq9 + CxLtpJ55qpyutc4qyArw6rzQcxZoOb4toDmp49lrkz40p8sCVdRsjQHCnJfgPCAxsRInyPj43F0q + AaKZCLhcS4F5/TR3NudH9NVvVs6tFZHP0cZfzBVy798BqZrDCyqZF4qk0HHToBFLSjLDGNZH3VJn + hL5ykrL3eNpsIz21TBWopqy7jw48cqU8oX+dgk8IEmF5cCEM/dxLTkVrX/NOUSzA+z6mGAhAh92q + nJNOtFay/9zXbag46o8O5jubiZC6T5lymsXZ1GEaECn9ZKLPFWYupNNUllZe3q9eVw+TJwlnMwhr + omRQE1DeAR6BQdDK+k+IyhSpK0XIJjYgBgAFgJpiwpvXDVHcENRFqP7ij9W7mvXHKIcYF0s2Ubq9 + Wfwjywl+D0zP5Kr8FCLn1YIz3nDtnwhAzAr4v9IF9SQ5aOH3zRUSE3AlXU3aV7j2SUUn0uzvzlxK + Qjw8tSSzx7uFvoqMre2YHM3RcE1UB+ytcPhjzUBFZvZX+V9KLkfQyWhqAMF+eeXsYXHaN4SMjYdX + We47kCRW69x3OmsxY/hsBVS3NTYtEzRuylvXBr8can6hjidkHltNUJl/L8Ri/0zS0aZ9yhEPi8gf + AWpNAZcxQP9Aeg7UL43gz7MlvyIhmxd1WpIgu/AXNyhXCQCQvgN+Q47qDunRFeZ2C39ZB/nWsU22 + eQiFNF40WzOoHaVPiRT6Q6TAlqQVIo9WZ0YeKqHdWxK/4PITSqfJr6SOOeK0n50l1TZTA64Gogkx + xopKvh1koGEYbO2Yr3S4O4WZR7i9yqGMr5G+pgG06ZwfgfXW4u4cngswcGlOHCnWZFend2sp8IuX + h5084D6W/CIFkRKd+AN/tPeLZpPL3DMztZ8qwgtwiXbKiixBnD4kl4NdVfbLLe4qM8Jg9/umlyVD + LGt4+NLScVdgnolldmN15ENVzVFNtpQmQqs5rNruubxy0a8Nnjubud+sF33sXSSTcNpVt6SMpcEV + 78dBrohlqvVNOKrRjCU5ypOdWqsgiLG3Z3X4GXU9qdpFNbzpJiRQVbAbMY2gL1w0dfoxpGPJR188 + ool+1t8IrPJux9FUGkN3JuCe46cgmdod1Lz7aWRnVZKcRmkzAF3fnvh6ttZ5avN6BqORs6F3r4Pg + mnn1HmQ4ItPMxUXeK4sgMzHd8C5kMHMmHiS7pNkKSInQhXnZ4HbJGgAJ0xD51o+M858TwojrrQNS + 8e/YNyEpkYbuciYehQSZMim2Rs4JXVS22SUSLpvwC0BsZxRxHLP2EDWSijwr46xM7LJ24eawUFP2 + xLJsyN9jolDJ4tLh0B0IajlMMKT6wdtybfRfU8vtLqd6dtX4knu8ibzFqewQ7oTdc1pI4YH8HXwx + G8jdzunFX8s3VOmHTVjDnDdGwIj2697P986t0gCpmUHCv3Oza69jr2ML5Tg1BcSXvg0w+6UWYQsh + f4Jzwy3LE90vnFxln2Vhxlbkxq42gdIdBu5R8b05tc0WjrflTNsrQgHnOR1Toh2gnQOWDgOnZ+42 + X/MLVV3CHtd0wNGamGfxYmpOZ1nA19Xlak2Gef18J/yZAd6rpGgEfJ4SphV65TzqN01JR5VddfhK + 3pmQAvGYWL+DiZn1IPeUieuvoM2A/LdJP/aBde835t6nbwTpkvyhidVKp/HFeknj6jU0ECZC84vo + 7Nkuskg4h8GTJ9bWguXCgdXKzj2MG1srJV+z6r8cOMeWSaacuB6VWIHxUyXfZzch+pxJTDirZODP + 9UiBtPTu2C1sPUHs6ia0aCIfpNPFPG8/nmKP9ce8n9c+umuhUfhYaAoJBA43F8CJ6BnMOJY5q7o1 + AEYM006W0+j0D+dNSsIe4zUNUk0dzEuKK9bPvkTo06iS0DJ2Y3AUSt545yR8shUekJPxWH55BfwF + SW8I+QMoMN6IaujxYG/fXKGgIiL9iw0HxxullKj4hBDqOGh3aGHdKlIpEFLHxt2Xo2XGby8peBiE + pHJfC2uM2eX0P5UtAPm4yPqLErp/ER0tJ+vLIyA2pXCyMQv/fjcs2BoeznAsEBoR3hMkQ0aF3PAj + x8SEn1ns7Zh0FgCIDYhzXJNysvWV6WgDT6GOwKDBhDD+riI0r1jdTInEVcTAq2HQvkggqP+WdcNv + 5iP3q1xD/vdFpgFj5CNNKg4nz5bSizUO786WNL8U37Op18VkAJlvm2Nu3PQnIXnKxyffjG6UDei9 + 8WkrAuRrfWWXEiLAew3izSsdWftR3h9DWQbY/XMgEsUim9U9K77N0jtnaXxroo/7yTMXGLraXI+j + dPMWOlJN4HK75dgWCZ7zSz42KiA6IPpuZu/Hug65H0Yk9RK484Niv6/tI3DMv3J73KZfrA+XWdNa + kB9t6kN1BMqTAIA+cKQANFZNqU9Lj8N/s6DVR+uVpdVBp8gnDvfErtSjxFVEEeNE7udm/GvO6wMM + UU1YbD7NqnDA/mTnzVma2qLDiS+dQtU07iF3G7Fy+59SzjIoDmZLw0gIDsEtSAgQHAIhuAWHDB4Y + 3BncJQwWgiZYcHcLDoNDcAmuM8CgwQIMPgMEZ+/31a3de2vvr91+qvrU21V9/pyu/vm02MXFBXVa + b43uH7Le1jLWwt7F19+iZAF4nhObcH1lXpDPI+v17pv71C2fK67W7LJTyb5uvFOYDkIpciraQV85 + WL/nN/2ut1R4anCw0eM7f6Nd79uRZk+YuJNFFjjL/gyGs6q/Xg01BncO7cidbocuzweU5BrbtlTm + LaB52XS3sz22radwvbt3jK3c4/P61o039RxfjhjwLQyXT4ZUp19K1xmvXsnc58Zc+iG2ouj8AR1O + oTREyg7nBlsy48N2T22aW+9k1xZk1+x/PXY0ZgpPzxHta4X0fteWGGK2zwfmN4u1qqxEs1tE6gV3 + XWbT3WyVju2Wib/B1qbfv05DmQSmTVFlH5o+bFROvV7xOYY2xT4sXacJZ0NHJeFu1wFlRjSqk93Z + Nkd9Tf4c1VQ2K3erdy9jQu1tbPlRGWqn5Kqb7hBmzkvFl1Vk7OWtSjgOqoqxdugxrZHAvZczUS2b + WE3fis4YVmMdM7vScIQUoNrFmhOT0XRbEbimboz5cuU2ro+II5vwT2Ipu7X+b4eXqyaenwhBJ3I8 + EwaHMkSigVP4am8XTvWMvu1KPt2FB+pxxT7aTZQt9KyrxmQ5zWzGGBpmCQ2v6yd8qU8WJ6950L3f + j7Cp1ONZlllSpotAqJzCD6oYJuUlqCYyjH5yzH+b6FmfmncytewH2iDh6ur1YVXMwRhqJkUyMaEL + ll/LM8ekeX8r/1HGA4GBFkOn0/BE2WOyqECABlapDdE9sO9OuUw9xCN/GrWUp0/8XfzM7pnXWQfI + y0vj0s9bUDK1745zofh4fGexO18OPb9PUcnTTlT1eKLTsI6OJ9nxc6LJex5YELHdpL19AS/ijeiE + lodQ6VmnCrfeatJjuKmDLXFyh1kglDvpqErrrfS40M6jut5ucO8UDG8tdyy2wgCerZ61w2oDHltx + H/p+ItVruEeYn6TudfZ17nUmE5oFAYwV/SFXco/Jb8puLaOyklC5tTdtTDXE8DJT+h7XrtPHI9tx + tFeGjn6H3nnCwLzG1N7F8xShaJzMeYkT8D4b/IJPuoWDnD2JH39kE48CoPOGPXM4zY7hdNEf0p6R + +PuM5/jVgl3c7y8HrgjhWys5mtlcmlFp4ui3kM2zRMirAG9L6ihYkUzjQ+z4iwbL+/6MgoK7jmlb + fy/wFU746w+zstKSMTLZGxu4WDRerOnbKV96xnfQ7L0zk4wI1ZHD9hvyffj1UUqrujJfxabcKCTu + 2C+s5oD7I0MfnDFiBZam6oXBWUsayCOA6aXiVKPBB1tfJc+73qSXCV5ifXxfKkJTmid3guo1PNdM + mn4qLjxO7a4m1Oay39yxmw5TRffWS78nv41n6dF5MtoZTqAP1pVyPnwVbEZb9pnuxjqmZhq6K1ZC + PIAmVPP+iV2wOGatsvCKPgiMAA0YDg0ZWgoi/AWshb6pOpQOiK5ZcW09v04w9nEH70LkLeGT55b5 + 5UPN8SCma2YnDJmF0hy331rvOi3R7pd1mLSOpEg+YSVxUVvjhrhBaLuOWQNr379IynmeQUUWGonc + ZSDKtLJm8FXGdE1vHfpNtuBG8+kju+5hl9vAHs7H4+51MjfqlwgqNDFrHy1C9zwia1nGUy1F65X3 + DaVqxc6zmtpjR4TFbh+kMZFO/QfzhLW3YFAdTwXDl+ZwKKODJvy43LLlWmnBQvui+4aN2NR98Ne2 + lPecSHGKG1s/7VzNTBhhsTnxEUBJJ4+8pqAGRUrHAH+20mThWne2VUC2or+SZdho0V84Ds9brWvR + E8pDH9Xu9hRQB+Iuuyu9w83v0shPGlWbBWEQ7J+f9vS803+459ABGV/ArxG5cwVO22N/Lk3Alz0S + 6xBXHrOHHR78q/qsIdmiPDWAO+Vc9Qvaxv5SHftqkN/ZHfp998BynYnarbgOYkj31betcpQjsab7 + yG8bxJBNlrAVsaGufxAnQ6RwtCXCWDlc+tSBBt7kJJgSr0lPmH0y3eX7/ERXAHLq8NUAnUR8Ho2j + 3YlQfszbxs9Lg1j36iR+yaG/ueDu7EOzcvXR9xu6bOAlaKSK+yJevxFrZKrQlDxuqc+7ueCFkcmi + T7Li3i55cgDeVo2W0kaVnTn795e4odo/XgkBy+XLxrG18qlH3QFjb0G3Vq8s72+8GzCxxF6lnT9m + 1CizE4TRSbf60cCaSm6ax94WBfEibb5XGblQ4rZiVnx95Az+VI/+odLP0LPfK1/0JDqrVTv4hRL8 + Pja2pTz2OgkAYFn6GAf+VMVigpjzn+6nfy9xF3hNEbv7Zm2I9peqIS3sAhE0C9CLgaXY+VEuMEnJ + eMd2jB5hE2buhB+TxXI1dA9h7p1fmGxgrgsoumuIONylzpTU6cs9dmi5H40xFh94+NZE844e5myH + VXatldAaX2SaNd7clW2dU1z6ZTYbY9NodLtAOVQm1JS0yxDKgyHuya0rKkszg0958ay5nnnLTDVS + Pb+Yw2FCdDmmwgeLA0VLELqVPm/pLzk/FoOabbCEpdMy+quggRc6ZRj75DCe0/wjMlmqD1jLd+if + jxgp8DVIAE6qhDC3ZZIjWMVq2d0xDCvPwDcVtm+Xbf/21thW9tLQirvFw0ExW5dx5/M0wEHEUeOg + Uuh19INux497d/1OM7jL/qI5VYpwDWuDWuXeyr7+imeqNT925ucNsY4Z88ZmDXpgyhrDNeYsoyfL + 1psf0mKPOiqvC9EK9Xm6ND0CEX2Qoq8EZQyiF7zQW7Z8zcwMU1u8BnIR9nb9ApXCfqxl8+dVheYy + QhaBUeAmhP2DHlOXWxg6RBPaySWWWkRqbezQzyx5Z/HJgaLo62n1Nod+GZTF/dL/59L8RPaCG0ea + 3t1FTUCRsJ1DTlUcxsTlJmlawwVRR8nIJkvLX96F+YJRYtEsWuPLm7ilEBcjpvpiR38npegvA7zO + BGHOQT9103raFaJzlq8LZizjh6ubndvM8TrSSEl8kS5+vzXZ0mjENGvfqy4epRrE3QTv98TAzI7d + MujV9b9/IcvNAustH1LqLISaCM8TwxSWrJNY7YlbdzOqAs4IMLuIb/bg4wpQfUBvUga2sMcmYc+a + 8rvvjWNvH8w/KLUZRv2eRCO8Es1XF3ASWF0eCVc2SO+kZc8cTCOZhcLtfamzO1eTjO7XzCusDL+n + aosbgCV1PWZ9lOMfREkOrHjxC+YhCKXtr7Nk7W87ON1gd5Ph9LFPMV91GG1Gi93wpc9WABexSrIb + 5QxmwgFn6fNYXuPTPK/aTYpcuP1l7k4J8K2uaNI1LFsfKH4/9KkwzqhTRvIyJn+koepVD8FvUxQ9 + GD3IylF/rFZDrRu1F60B5zwkl8/36fQnnVF0BPF1q/F1Q6WLBlwY8V2j0p73qheFAwugcWCT95jm + fVst63Canmn3Mt3+Ho5RdfB1NFNLy3kYVD8qvzZYfP9G/zdhw0cGn3r7Yb7IBQYgg45g/Q728I9k + gariJ3/QoeWGXRKKcbWS/HooI9YU7aCxmCmyj2lz234znv0wPyLpssl0do0Id3xSM/xkPZ7JKwut + M06t17jRXiyYMQ5Q+TA3bRx87aBI8M/Cw1O31GfMpyZ5IN9vKJhkK6uSXkMZdP0kz8Pr6gK76xud + VO8ygS3mgkAOdIfPDzkyJX325KhjW+S0BiAzp0UMneQcC+u7H74sKDiS2wZexzrSFv6BSAOIwVS6 + aH7S9b9ghmP9Bt4LDRyPW9j7JhMp6+evU3m20h4s4h+FHc4/ByVPDGzg8Vpv/WPvoCZMHXg1R/28 + pbM183lZe5Ie9Apc5AVUC36ACziOt1lTSReWgT8/L7sBlzTCMdRiKHnbpbgLWt8Zlnabu4cxpL1q + d0xV3nP3K7yt+10sxFDb5SBl8XMQcxDLWA4eDHs5uqss/tLt51XntLBT+5tuisBkTPx5Fe1WYcqY + MPS6ta/8ZbfZpyybh5KVT5/q9XbfzFwmHL08JGndNuN9OuNTEe556g9ikJKwGtroR4w9a6M3qywa + nNb4vrQK+ni+eybE9lO6Z3V0PP+VOBidtD3sp8Xkb4tFMfBcQv6e1uEzRWLEl8IE/BpT0v0+gOIM + Wl3Do+jyLls1ZZHs95TYsBaYArZl3m0EvNO4PmBLcBWkEMjMNSoV2mv3ovp4SbbFkqiNjM9N+Mf0 + MVGG5Ao4rbe8y9k+mTVtIi9TkMNUI9Phh4TZ1of4ZnWDt4LWnioeRRmNIgppzxzOqKvW72s+nDaG + cU6REwoKTgX44Hdt7YlDlzWG9umI3smc5Vxzp91x580YW/laB7515M31XnQcV2QUfah/Nb6dIzD9 + Vt7Epj7h44pSl+qTBjUG3oXOwIgzncrgCJZQGQIvElLmTHEBNMaRcjREG2dxXHLM8psyhpXXZqHb + JB8vhBtgWmWWDo3AqKKyddGssLIlDK2LTvGal1OU8f6iEVCbHyp4mTyHwTsl3yw9cN9JrM2LIq3d + wNkrKnoVt6hHLTGnMC66A899ewLYS0ly8plD3arTqhBsLu30GfaKTQD5mrwcyyZe2ygxvcXueD0u + QoNeHTTg8JoEO1c0vTlrAnNgBeQOdNyjCQtUrBzcO722LmSgKF6Yn7Vq/qqUxN30e4ctbY53cTOd + ltd0pMXX1yo2VKpHoZHUzETwNvcDRVR9AMOWl7/qU5htxW7FZ2+za16qduOQR/r2B07EJUQ/RXJ8 + MBDqpL4LI4915aI3rTlZ1xsvIjveT8D1WdQskgqK+OyJQ1tYqtvsQK8PDjJrLnaNBOlMB/JU38mf + 6dJZf8Zf5dElouqRtRhGGNg2YUCw0hl+CnJryupaOUOWCGE/3oC2WgM/03WmOP9SeM7yLi7MtzBn + sEJkRaqySpQ2PpV6O+GwVVV/M6S8TqPkgk/0UbNCVW4EKOvPnSFjxe1FpIClWks+pjvs0NkleoiW + IqI1epYyd4HD9j2YaVsZJy//QbPXKUiN9elQ7jX2609dMx1thHc8ezbD8gRgerKP6iFZHUBvcE7i + Kq9o53bgF0CfVQ4xW7ZYLSLZUKh7ay5DpIXsihUf1gTrvMJ0bkj/ceLqfCH37vIpjtj09vxGpFPj + SbpIxuT6wFFxEGpspbRQAYLZ7ZCiW7bee1RsoJxusNHhc+USqmeqom5igtMXtyMHdAS9HPTEt+rR + uY16l0jP8qU/RzKRkSW+wvEq0Eqpje3yD9/3dfBux3rg7nb37ugQdpPZ8YzPW3KJEFLhVrJOGvR7 + MupGFVo9JSWMjJwnNyBOp/M8Y22gDkQ3OrqGA96XiaFwXDzKapDvfY7qDdIKkgIWt0aRT02H19PO + m4vO0ep/TnLkjJQxg3195gZoxTThL+UMDWHdsuhJEiQBHsWEqLUB7gLO/SOKFKHJHaE3CXiHLV3W + wkYwF2QpzOkxcaJqSD7hbmV86o9M8ZLzRfrw1JlIdF5WHbENU63V4I/zl9jfQMpZ0wPWNNYyQbxf + Hcad+p1Gsr5hbttoW308VhjfDmFnx504ylALyc2Ycu77QY04UToAJssKk3Qt6FxQtDQ9lzFCd1pa + 4GWlGT6g/o0FK3JBB8h7YkeZuNB/MtNiPG5JYVoS6rGXBt9Cle5095QwBGkgpbo5Mja4e/aNIQvc + UaF1HhitOc/xNAQk6qb3UvapZ524Gnrq+Ci5e1NZv7RVO0N+Mf2YW84ELrpkBaQqZGY1/zFJj4sq + dPrWX51xnp07NGXkLJEY8LINvMAVJhRVyCTMRmUspHPOk+7/cEdDJPtMYZ1iwRT+nLb1sMorSW2b + oG9skrZ6fZcaC3BWburhbvL5WNF5TY5V4CHMR3X2lEOfZzJQgwrAbA4TdYJwHUqGszJX7h4Uoap1 + kemvRPrQwcqCWrPf1m9nyq8NDjWD9JoTFiF76vaHPyZW8IXjYKcDy1ndTAeTD9K+rxELaP90CZpb + Iyekx0kZp1xRKbK5NpiaYRvvDM68qO+lTx+fz4tXMcvwYmOSKZOjWT0h2PvnHYrrdTw2zEcTi85+ + NHJZ9Gj0r/FPzT4uBep0qmLKPsuF6UgkmJPELMGpoyuf4JM8if60dI1G2WfJ8ZZyEz8qVkpGfphs + gHkPE2jsmpRP/CKyOm79cLLN/+c+t1kX3HUXBEpKBy0xpbe9VI0g0jNwk/KWezPHxgmXwJBkiaHA + PCQ77QL99fxkePnzCt1JEMjIGx6mi7M7xNmy+JCY21MvZuX4DztYNnsrxF2YQtuw3Tt8PRD7HyPZ + LZKP1aJTqy/m1xr/KADy4hHraScUbx7UI9jmchdOfR0avB4yGqC55DZToXvv3WKkTr5GRvgmnERc + SCn9grvZgs3JJgJwGunWNp/cYZlWWMAHf1xJbcf8PG3m+Olaju9aAvkMWAFxaZN+daZt03afOeL+ + Uxmtrdr2C+N1GhQG/EKnW7GtLuwV7a+SqpBmfKxI+Uh9ILJF8oGwfWScwdly4lrMNk29ni3xHtNB + dNzg7/mYT3/uAxDwUZvy32yEqKUvpienI9KX0uf5JS18rCatji2k+vp6LQcSByBRO0SOBAe8zczN + fId4hyqHZSLbIokil+6Z7s1uLls/fpb07vQLhR+QtKD7Uv3hYCDKxTHlWRNZIwwICKAJMLoSuko7 + kyZ7RopDks5Up6qpVvfeLetZ2rdwzdhpdAuODdINfGZDZn15Z3n9qFwSKxJBMrVny0yXGhLKARlP + ksJy5VMH3nwhJCVmeVBxULZVVk+QYPZTQ+YkZ+hGQInKXWfdZ42sY6xLhyUSUxK8EyYScpg7lC4z + snONM1bQr1mu1fBc8G7JY8nHyH3ZRdkBOksF42VVxU4FxiUBytcheElfQ1SzR9+kKFWwVeBW+EPl + oQhobjn29xOtxwKLQq38ekXPkN80PEI8fNWUzrxHnPREOQQ5JmKuXjZe4l7de/Z7Jfs8sx0FU2Un + pWZl3SqPkSE5stG9rHIv+p/0e0fwxejGbMbY0qwK6gk0C07yr9kyWySaQ/q2E8vj9iXmqGx9bIVs + fcdLxu/HX2WY1T+rc4PYNYhYjNjs28At/IZUhzh/OqTCJA+w5n2dWJwwnCjhd3VCkEArkM2Cle+g + ab/UVFDKPR82ceTTSKu493He6qTqXNlromoi4qJponxuUjvMvxJ/QSZ3shyTD94Kv20hbeFxWV+Z + WBlbaWkLRj1D8SNPUcNIO5TIFse2/QbNLnyzbTR6RG2KCwctz7NC9G9bKDoVWhkayd+qVYy//aF/ + GURl0HjR/nZ5Vid2qmPIPvv56JufYEeQENaHwMOn44tk/qw7JH/2UpXla6oH0t0jYO/Fqy8aG4KL + i8ArHEpFxt61sjr+B1+DEKbw12u2oGBxYUFxwQ60vo8RT88U+OVoPlESuEvu1ozR/nYvAv58c0yO + XRetNCjLclb+kWDB8N2ZCOlS6CaufJPv4Atk5KbK+L7FoM526ybONfAMv/DGl6i27nyZtxuLv1L6 + uss1dVW9YXMxth20FEs7PyNDRm/cJ0tD0Wj+K9eThNIyKgnvztGcruy752pBYBb3YSV/uUHomAWB + /Ol2zXDTcBPAT3EM4LPxxMC6blDnT33k8yOBmJ3CgX3+oAwp7Ea+ra+07qoxuZRKePbPkecS97Mv + re5jGvnJD1poqOWClCBE8Y90EOxQURsbAjWfytrqaQiW0VKLPwObHvvc99cOKa/DAV8M3T1C6IXr + uUGkaislD8CdvSza6osd/v0jZGrW+LKWgT8Ur+I+C5BrQJneNt0MlhwZW7CoEzNyUFgtzMOtguC/ + Mzw0fJR0Ob/zbDWfIOIicZ24x4COx8f/NR9n2IdkHRC14sZhKFXZu1UT1P2IqAoCk8Xb9w8GD5aq + uHN5R4em7z8XVbrTcWYTZC0lugFlIiHIYVNSs9AtnKa9H2xKkHM3uaeH0EOY0cr8mWUBTyeZnpcS + z02nBZ2D0DBpBswj+J33jUqtwLbm7IICZIKC+A0CdA2C2J4CVJ6CxCgBRlQDGj7kGX4DTjSEOrrh + ic1n+XBOUSwhxBtgYgkw0waYugPMJYp4nU3yxr4egwtCytWAVwmhrWx46gihdGwgOoAwHDSg00FI + 6BpwsyA0WQ1YRhAKowbCZQj9smCiVowtto81gfjrVPcYEIitDr9jdsTlcJLhvbXGpaXrpYXZpVUw + 0S8Zok1zog1Noi23uF/KcZt2cRvAuK2P6r/k1Tet1S1IyzxoyzyfgjwoQZ5Eux4Mu57oVB4kVJ64 + aR40aZ5Y+h4U+p6ECx70C56Ywh5kwp74LR50LZ7Yvh5Uvp7EfzwY/6DQiJHPiFE48UjqeNQTDSS5 + BopgCvl8CoXBhyTlQ+HVImlrUU9dkZSuKKITJMMJCp0RScKIws1D0uShsMyQFGYownUk/ToKUxpJ + Jo3C70bSdaOwg5FUwSjiR9uSGO6xdpvVBgaDqSr9efGDJEDSxcSNzX0DOrzHSfOtCN2s53b6ly0l + BX/t2sn6orGdOGQyYAcJJRRuo2hB/HbZmF9pX3YTX8oyPJowWs3KIRtqkiagm2lKoZ5v8nP8uEAZ + 5DfjIG0sqMflq5DJsHDeWvpTSLJiXwsQ7wDWnSvK3GHv8OlTX/xS4ch3GN5ZR3WZ2GnNB1f7l1Jr + +R9w+N/wtaQtjx3tXHr4t3WumLr8FbkOKXzwxMNz+tQtyup0FjkOoYfQH5W2tf+Oy3/A4t+YOQ4/ + lvtTcGv3qKW+tsKzUj4FW72kL3icDt6TPme8Ib6PfJB7/D/G1ci/W08H7kl5Mbb/TyS//H92ji8/ + pvOhPVJ3eFQGrLklGblXuhxT1kwdSO//K1L/QHJf4r8R+1c+lEqd/DkQ+/fD62DJffH/TFNgC6Ja + b2rSbodEp3Rv74q4pQLu+teHjq6r2U+FhvZfUEsDBBQAAAAIAGK5TlF26MNhdkYAAGxGAAAoAAAA + Zm9udHMvZ2x5cGhpY29ucy1oYWxmbGluZ3MtcmVndWxhci53b2ZmMgAmQNm/d09GMgABAAAAAEZs + AA8AAAAAsVwAAEYJAAECTQAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGiAGYACMcggEEQgKgqkk + geVlATYCJAOGdAuEMAAEIAWHIgeVUT93ZWJmBhtljDXsmI+A80Cgwj/+vggK2vaIIBusdPb/n5Sg + hozBk8fY3CwzKw8ycQ3LRhauWU8b7AQmPrHpsWLSbaQ1gVqO5kgksapZihmcvXvsSAlqZIYL1YkM + /LIl97nZp395IqcEA/f21yuNQLmMXb2rZZ/7e/rS+3aQoE5jiykOu275k8k/fj/okKRo8gD/nl/n + JmkfxsrIHdGdBcGkiz+6PvzlXksg+3a0LRtj240x7fSAEokyS6Dhebf1LCdu5KvgAAco8DNFd2ng + QgUXgqAmqf8L6c5UtGxo2DBNGtLY2tKGZOVZ2HLx77Kss250ad5d3Xl1cpW0vK77me4TVlhzag6h + op7lZ01uGarTmUiBV5Wpw9QIIHIy9D5pVGBWN7jNUiixqMnPGuD/K6BvNvMnY8XIQrCP5gbrNOe3 + 1s653X+Hg4vjv5quVAldYVtRZDwzd3E4LI6F7nJUSRahOOESHI4wPkW4P/kqRajnl6aVI8/6NyeN + 7N39hlMJDAtvY/vKt+1fizcmIyrRKym9s6DQKzRhAbBBNrZjjOd5sdmjhmYoYhlG6ebk/+m0JDt7 + IFlBwzF2UC10R/j/jOHAsRXNIvuwldsBQ8JmLSBXgveuAprUmc51S9awSwjjI63tDuSs1ipLhjzb + /AQgKNHf69T31/9a/mDZqwzltVuXJepZBVSKrHslr8mKJIitEKBze2/v7RmcF/KIgxjVu+92dCJw + 4Jw0YMjq36mKz6R9bwxg47PdFPonbhRl3D4K5EceNXMAevNfTvMKklBL06Z2bVXeC8m+e3q93PLu + 8/+fGfh/+IyHIjNgbA2SHAOWVyPUkL1eGEArjSwHY7nJa2+pjUFPG3AVbnW1p9R685Z6Sin13M6l + HveY2zHHfeHh/0893n+ttoB4vlLGxGDBSolgp3GDFaWCVXMvvyv4a9J2xzF4bBrd3+dqEmwFlkVs + 7FxuRIzIw8a2r1aGseb/0Gpnm3taZOWJCHo3jwsUNf/fIQR4bcI1b8JbBxy9v3Xv+ya3rzHagkgQ + QmtB4uwIcXLqzlKQxA2jt7AWjyhcZ2j0EBTIN4ns0op5jz2GSLVa81VQaOnQJDgQUmfTBcQYgHrC + Z82tyU46i+AAMXWsJNyFr6Shnj5S/V3l+hSXDqasIp/0Zje8lwv1S69efyeYquu9M5MrRS+8xF6J + WVU1XahOQhcu3sqLpdI438Urzs2POI/5LHyJe018jEGKEeV1YXzQYYiSf+yO1d7LhdWdJQAKf2xL + R6JQ7SwXTnUU5tzUa/5j7zhtWEDa02T/F8yYP3/x/NrzoudZ0ybP/nvq9pT4s8fPDj/bUNworhRH + il22v8/G5K/kT+SP5Lfk1+SX5AZyLbmSXExGyQg5lywmp5N55DhyrPu0+zP3H9yfuD9wv+8+6n7b + /br7FXPo5P8Fi54S0BCi00THCKR68zH6oT8SXFU1FnE9rdl00XrUkg6GJlqQbmqiJeltTbQifbyJ + 1nRr3kQbundooi09/22iHb1CE+3p9Tc28fSugyY60rvJcXQiC9YxOpMVrOvQlaypdTv0IktfoS9K + ZNZjMJZssvUcMB2yxSdeAxZCtvk4VkO21XpnsAayvawPBlsgO8r6ZOwK2VnWF2J/yIN1HQ6HvKl1 + O5xAnip9AQZ5iXwMLqmsJ0M+E1xnPRvyOeBW68WQrwG3W2+GfGfwoPVekB8MnrY+ivxkvAo5rc/H + ++QX7tjF+JQKKkV8QaUOj+MbKk2tW+NbKm1P3A7fUel6HD9Q6W7dGz9SKVmPwW9UJlvPAVUqi5U1 + EMBT2QxNQgv+7AShpfBbsxMKrYTfb1lEaK0Y1Xvs0Sx9MTxmjSYCNmikGIYnj4F/B8qlVSNWqAje + Ea28H6GlRftEfyJUwaXeqdAGokFEOYP/ZUK5OqkHBhXEJQ8CT5zBINLQBBPxgofYRhJ1im4gFjc/ + JVIDRzQihLhmqWfHwUbquoEgDmE9gpEts9VRl+G9eStCvSzE+NAyw8sT1oU1opWH8JmEjHhuoQUV + zqoEZiohobPm62zifEdYUfgg3oNVcJTkCsVFdSDCQJ4Bj6blLfCABB9Eby42WVr2gi0mYT5mEj+b + AKuTTo9OnKIJXdRPL147XNoOwkrKDc9CBsdFc0pyGQSqkBkBoMSa9cYPFCfyhWcSL+Pj0UIXJZ+h + Hm8gH0P16rpulTeL3DoFfPV5g0t0sib3JKfYc698ufV3UIj5xFxpXb4kWhJAKwHNDLa21YA5MHhd + u3K4rSW+yNUr9gdSVaxFbYcrFtywqqM7d6B1rMA5L0m8BdQ3yDfVprlR/mx1XKZ50A5XixBOKes4 + idywdlnuKnW0bQKUobG/6eKp4gS6bSgJZgbKRb3y/0c4sgyiaiNJrL1SjswX+XoMI3G437ffAQYJ + hClZoNckiwvh0JuGY18lv20teyEwLWALO+HlhazxFGh5VvXkwV1IdiEJzx90HGG9XEvvxRAeBqVb + zDF7GgMi52ogNkDsljNUMCWlE78P6c6YIsfUmcZaSYZH5AabU5P3jYIusxHEzqNwB4HG06xTxjFl + 6fvZk8TYm535DFnBHv92uzgaCGSxXLFCoRdsoVP7/lIpBtIT04bn+a+WroALewJJitOG9NIlnZSv + Pvsw0I7aprNc8CeUY2e9MiU0oFGORKEKMM2SM0KyIslNjtWOJoDbimhJFcfC2qfSUmcQt01FpKGp + obaaDUm9zigHqd7VNVWWRF0MffIdmQdi7Tgkl4fsOKg+8+FYIAGyB2iVImwetc6A4mocnS4liNuA + GEhIxy0LSZqm3bgjMZIdQwE09d5Z3gE3hO3urhLtWd2WoVYMbwgaPlDKXaE2v7cHmPaZTzT/N2Ya + Db1+ABgeQUpkWUbVwoDKLpbeb/XD/nkpCcY4bMYLtjIyjmWKnB+m0jFIG6FbAXSJsEAhyIUMMlyA + QLgINQbE2ZPKJVrX7vzba96SCAZh9Z2u3ED6LmBuqDPKT0aMohBSKPOFpbb3/71aAWtMawVGIO1I + V2pZHw1JpOo11+cqE/E22s5ltVNiay6kvDVGLBfsLpUCTjDf1JmSuYB8lIZWpoB8fH4FTvSHKAkg + NLed7NpdLOwaSnB8fvl4ZdPJQajUHKGvNYiIL7vau1Ok/QTk9JTQdvLX3Hk/m/myJ192fHLqhMtY + 3Ab47kjpUcoFsLUVBcSTQkA9C91YrN/6rEITGDnLNLOYq8NUqdhCiUKpY6CtwRirSJFQo84rgvKJ + gV+Tk9VZSNkjrCSqy8pgoOxG+KPxQjvjtcIr2xGUhUJQUrA0zLwgdAStOnQI9SJaE0W6Sl4hWMLH + k+CscTRfZFRXKDXk3IAEp+X/5B+42kmxlFXFh9JBzXr+QFU2/24uV0dY/cDBBehI7FJLwBbbGiYI + J3N3TbFqisqOmIuxPJ+UsZgzpimAlp1gI0ZAEgwYDEYg1KLgCP7Ydo1vzWIkeAwH7yuy4Lx1+ya0 + fYl8ylgYJlvZqpA4RostuUUmLz6KLxfRR8UuYep6XoreL4PU/n0pnBGyE5LzJ5N4qZEkTz08AcfC + epmkb+Sn4UE5TR/YnSYd8n7uoZm5MxlytQUzZ5+cpie/ONKjXLAttk1EesjoEZj4a7rNNYb5sbRB + Ct3C/apHOankfDEt2CEgxzg3+xBbnH/0pCxtUu51fKY1N64KHD1Y/pGkLJhhSqfZGxabuF50tE6b + NNPYXGYQ0IRdQXobSF4CN7eqRpXoHP6VmYQmayIbTFU+few+53JC5Vgo24Kq64ICVJolv6sLSqoI + v4StZGhLxB+U87ZQk7JLwR5URmFBhzNISIZDW3I7YZvAtmQCt5kXhxqVNTTIzAyJl2xMhGsDakcP + Gnuh7DifaH7kjwcNZlJAA9Ds/B45d+BCqKTg0DDrC3pT9fSw4v8nl6AUAmE3A4JA3UBOm7GK3ca5 + bJFiGGozD2hOBBPuslj2i0Yvye1lonOj2Sf6ikRzUavxPP5rXtPtHfLXvLL9iFpBU0+oaRdkulNK + 43gcTjREvbPAS9MhtLnU+Qkh2at2iaxoQWDbRZa3WBCQlQACvMotDaJQDe3EOp+C29GkG39D6jrC + wlfNelO9c8RkTww6CBC2X7+r1Mtgijp0wWHOt9CRCx6lhrLN2LP6ohaBrg28SVnwBDTHDCMgEJD4 + KtIczSs8A+pxAG6wb9QAuHUKVQgEzGN3d4/zeCRktbPwG8a/Dp19z4H71sE5NMz9mu38AzlwrCpU + OvolRxVR5oVeYZ+LFYcQ5APdyyeo52WDHvRi9qgEFBSKbC3V3CpY3UznJSrFuggZuC6F2orIXIpA + cFIkVOUqS9YYzQW9CLhocIfAiMjowYLf46Zt+sEbkeItL5NvU9ozjt/CRY3gz850b3+4B55959C2 + Vodv9QdlSgtgPJkk9tl07dgSvd/8HwmqXWcq31qbD4S1NnGwwPlskgT4fhv3Ra+rCoZT+rgvipL5 + aaPEVMZ0zWuCx67gslfdw74M3D0/arkAR6LSzNRVVQVBSsb1Dv2bAhxghtJi1MuRl4NHwoj1Uc1B + z6upgfHDls4VxtrsY4P76r1Xy++pFegDV1NtCN3ArWezutpGy/GqkSapXhb1+tiY1KGINjtDMTo9 + 24hQieS6FNVgytqckFZW/5Md1EWdxjUitGhPq1jgfhQbq97YTjNfNdOBXbp6Lf6t5JJDV9PddNSl + jYLTiLTQGMtl3F2wXLaUqb8dVq8ZE5aL/2PUIx1tW8Zrdd6XrV/KsSKpyfZzjUizf/Q8fXjvsQKF + bTBi5XgBSNNxYh+RYTN0ZudNVNvRzypdSbsYHAoV3n3XKBz6vpwsTZSEjZY9igndQIxKQdvG0GSJ + kKCsyz/CpzZQVrH2Ww1kVuN29OY0ap7S35uRbEhc4vfUFozF6HuY2PICTfTlvciYXLqdjeUBWf7c + gYAcHYFgOU3DYEQTYoc8wQUSO2EjevKGkTyKeCIG8yyoZIJnQ2m/YJFjkpsWOsEBBcjiSbTiPmp3 + t8x9SgXIyXqnjV46Vi4d/TrX/tqLE3u/zbwGKMiyQvfmyxzJpgOSyfN4jjwYHkRiIyJTo6F79JJQ + +Uh1vU6BLxPre3I2BTt3VbYT5tDyEnPWUBfQnpM8pOdYwOBZ4nPUxPfeTXh1sIcUXJpiAJHac7gk + EY6YEXiOyiiiiS9efANeKhgwan5t4Kw7I7clSoTeTTSdx3CYUU3XrPA6OhpiXEMyZ2YBsLBdvXrS + UDhUmSBVqpNRYtbodLqDHUMcvVSfPgpwoDgrNmdfMpZszqE2p0jyEQgg2s4Ax4YPSJ069w1kmzzm + Q83pNrOv2KTqL6u/Nn/jRTrCS4uUIstga0qpPJvPxqLkPQj5dp43hKXiTjW3tWCw8pu2SnSLEtlc + ark2zYUlAw7Lnjf0KqUnD6UQlVWV2TSxOuIbWCsN5FwCYgD8kkUKEeTs9N5hZq6KeIwfk33BiTEr + cJmLQqXLMO428hfilOX9njNy9UEkG04Umn62EvQjs2SqfQjH16SfUDdo90g3YqNGqp7Cp4WCrDjw + EQ0es1A++EJ0GR5HTtAUFY6i8G3kAYJ49ECPagmFkbh8e8BzORIZ4Ls9D/53UtkvratvREpzNRZ6 + PpM7iid43fFFBtBxFV4GculePUcaP72FOUHqoQZ/5pbHQeRfl6MG7UsltUTJrjp1aWtqa+5JGGXJ + 5r0arEf61Z0jKqGGKbVqbQaR4Xy9dKO5fWABSuapWtiI6db3FwcDSA89NO6de2ffgaK+KaFxWIhN + QSwXmkj4jDcY+zGJ61YipdkUD28s51kjaBL9/PfdqFMX8l/qO4vNYV/Ul1peY240oq0QjaCCSLhF + q64/iauwEX3RCsidobut3O682aQ9fUKeV3beqlVl8OVomheD2gBHHYqTRpCFiZHmO51AMlOl2AGc + gEDLZiAF/sLL/G7N4jLQI42O5h658RNm3Vk6Xb9KeeUISF0arZUtt5hH14x3Z3YnoQcE4nyIxDBl + 8QrDXzeI8NKQq24rZh7f2bji4Fk8q+cozQqqP/bskhCpkXny+aEld22sK2oOgyYmIeiiY5NeoXUn + nWL8JvFon202EATCpJrO+7kqMgw/HLRBx0kcq7bGsjVGBle+2Jlb4sacBqhC9VV670nORZSTIZJt + OovS+5x4aNRll93Hrm68enxdJQyNkG0R2XLBVbhGjdqvkAWU+RF/rjHGCx2JfTshD24gRr4moGfy + 2vH/UImG3QGvrxsbOybX9qmc+O8YJCS4GulGqykaLnSbQu1RqDOmjr0VKJ5DPfq30+SmWMDO2GVz + 1Dvdafurtq3ZikC80Qh+/E7tyRsbzqFFAX/rCdRTUosUBBShiGidXOnoo/rBQmXxbxi6hr2coLS5 + zgFiVNEWhAZuzpIRanUCub7AGwkHZ0Dk9ycEcVHrlI5ueC51NmJWVSbUDJtduTvb76oVIUNfDIQW + BgsIno01xireerkdybr7bYBSUXWRqnGCkuAWprFQ/NpaMIO2fW3xvKHMBsr1br2mXm7VT3LJVKbi + wZG1zjqfVeMn12jA5qcwbg9aoXBeGVLpfERGql9iXPJAltZtgYLoREXrOIEAxntv6B5HTYnhoJwB + cbjdzwZ93O5TZCAWFK4PQywb+wRpwNyaReodEorpL7Dew4tbGGQ4XY7XLE1DSZrO0PNfdZcsXVaZ + gWPxIpfkpHAYsAZnHUDsYCJ5KYssO0KzXmWtnmwQ2ggEoaoyJ4AuKJ3N0MSY4nk+4C0afM5orRjc + E9PEd5r6/uo7qWrlpegdku3VjRjR0mnUvbHkr+pfGQhvfCFA9inJot0eqsQ9f9nMjFNQep2X6R0f + iCohen0pvHzGp1R9vWoYkYZFo3RDrFrloW6MjRe9f8O9nCrVnvXJNNuG171buamxC745GrvQrgWo + juiIF5EGkt2T9Yx6YFcIbRRl9G+Ci3xqOGqt7zXhGJA5vPa1QC76mkW/GFbML8xaVwVAF3yXgWZf + 5xBcIiQde+EFnJF2EKHg8oPznMDIL7gG8rY7YdcWHDpTZaZpM1TkR8sQKuvO/YNduMahL8xoFMAy + HUMzMiS/0wEO9L/8MX2/jESkzU5Yyfj+dOw/Rs+d7X5uLFBqOQ8u7pY+16P8qM17Cjn9f8lFTi12 + fDNohhTykUPF0LhFlJWHIFhU4OLLO1CWJMM9jUrWLQ/d1Wfdlf35aWd6fnGXKEHpPDpoEzGxObMz + 4U7szL31UYmL48d9Q0zYf5BX+d+nwteO3H6DEhvhDRLaYpmlIoaBh818xzR1fe7wrdcB2WOZeYAE + 4IvINrChMv9bIKXY1lxkuCy10o7Vs2KBEWv5pMxE5eS+JTBU3Hitrns9O/bUt4uGASiEaQiHC43Y + TFO3+BPfMb2Y+P2p0TP/Ts9oL6Q2P+YnRV72fv/G1FCuf3tzWuwbmVrTS5TEnhNCe5JEzHT4Jom9 + 1HqS0/cptRdVb2H5NVGmM4+RyJeIcn6/jpG+CqYB9Nn5Rl0RoCS6POgE+nRtKJp9DPvDz01CQIee + W5xHeOwIzkbTBWgQOACbI32I9CyjI8CYdQv9TGF6KN5RaLE0JdN4AW0EYFUT4JXVuS5FEajjdjFh + kp40Dl8nL1uoZLF7RnioSco1OZ6MDINE9RE86uwmkDhWiEXzRmfJyNkL6IqYI/VJkeSfjTJTss3u + /18GD+OpXVFxQROabojRX/BRGecHEj5i3pg0Z6EZqK0TsS2uATAmB0UjY6bcaTi/CXZSL9U0/xhy + norrCJpQN5WjSwNzT1cFtU4z1Y8edkVcYnGGf/tR3zUYEo1audq9Vnk1B12NE73W9uBoLwlpKcX7 + naaOLS+0sOOha7VOrNGOvsjEHBMjZewpIlAX7fH8CAl7/UtTUZB4ibK4naY+YeMmte22jjxhLOum + jBdIRUjP8vOJDQIcXZQlLGVEnrNVfle7bP0XjwPam6s7Y77hmJP3B2D+nT8gob5wkU0Nsgts6+ou + glCyVzf1BqHZo8guGi/0V5wjO1f1ZCqWOno7RTKGqJ/u9uP6aqEH+DkTecncQcdTkFM46HXAjLbg + rDtmWTi7bSBL0a/o7NSE1LaJzaE+LIQXoA4NX+hnpbTxLW3hYzzXGG5d0KctFK41kTJjqLmhrvF6 + Daw3ZCBQnHrzE+UBtRng8vCyVoT2k/ulTx1Qdma8Uv4MUqTTxuCwkzmGWg0tn8Ee3mQShveumoi/ + Q5ua8fPHYCz2YXTBPRMUh2s/dqLtNCNQDeikQswWCKGa2KW4L1sX9QZzLjxhFTBlxnuPtCaOonb+ + EPKhYX4BHWUBCNDzOIvoKWbksRwX224UeQaS6gJm5EJQHEz5dfGzSXmySBg9U/gy9tEdlNIiW8PI + KNnCvE9A7XoqSbi6QMX2MJfkqiOY49zgLBrQAAKt9MVJJFGhz3kNDWP00Z5GDethj9+eA3Yisu8O + fFLH3JgJJ1ecE0agDHg/Ef4rYU6DTfauj0vOYMZEBd4DL+i3bmY6WLhJODpICbFJUm1dm0v0ujZp + DiD8QFUSz0gqTu3QbwhGrOD9O5axqZvhh48iAledcaO+ZFyT74qIiZHQjSpDPSPjMs82eJQ37DxU + z9UbCjd5iNRyVT4tYkgpERHJunrvICd9tte23e53nCEEF3LBWM4RWoq1CbQuOpJWbtcTO+4t7j6K + OuEKHQI2AeBy/72HDh1VwWNz1TRrrBFWV6x7kvqJ8COtD5g135EwwULd4+zHYNyd/zB1mtEiLlHK + xh+sm2RCtJgwo5Qd9ZhDntBy9R5d7e/gI+26UTkIbHGc4AJOXvTWs42v6fRofqBOVVy0ILwxNpoK + funoFZMc4ZRTkW6HVPIEbKKRXP5USNKy2pst2cl+qkd+KSSFb1E3Hi3rr0PvEbDMAcjsfXESJS8c + YZmms3ZPsKp8W3E0loKKkrN+QmMtJE7cGzc8VhiFSEWAH2ktmZwX6FLIRpMMR05N4HvQIjOVkAz7 + NDmHWxWEajygkOG4HaxX060LyuNo1fiYAr9skW7bBsMg/MjYUdKo2olHB2NxqO9Ad68vZSBx/6PM + FeYBZ84crsg8iKPNxhAPOiCg6uFh6ZK3opF1rxDqzfGUlV9Qi2AM3flie0XrHOGmSSgWz9lPV0fd + HOarZkV5wNzpQUJhX57fO08IXo5EUaPiJ+i1c/Pl5wzu0OzzYETuI9Gaaa86GNG02yvfFlkBe6l7 + 0nDlJrbFXN8aUmGemsDBl2cQ/s+eMP/BH2f671T5TM5pPCefN/YPpj/ABdII51gxucDPQ+/WCmGl + v+nubjBvuXIx0QyZHhcvVa2liZ0F9QvOb48vDz/pleKZr2H501+scBXqj0jWsQ1H9ey0oKbCOJ/d + oz8zRokw8AeYgNlgJcP3z5HE0zyNCkeaXdS9nBk4YmzNjyUtLMIpfSWeA0qUOha5WQKt0mrQGxBU + zTvQq8i2NcWSPp42HL2fkHfSew+cVumkgy4mE6P2KIYOb7mpKvVuPKfYbjkGoQbBSpYKImGHB6kL + 0JQIzd0roYYLYcovu/26uvA7N3pE2FrOtxF713SPTQlNcJejCWnYmmu8TlB3iNiRzbrwSGBUDfYk + MjMbloZmHtP2wNDaMJp6H8bIO62hpp7nIvBdjPKqgiqOWbKk6RAs5FGhV4HYG+AO9LhsU+m1xsVP + jnJXJDUGXUuhVtm7QuIWhdyahUm4GIoYa9p83z2yJsFb1Ojq3tHexTU4RdNSpDDei0drq3MbU+7x + wW7j8m4RbnXj+vFFeEuN0H9y9KKsjH2Hfm0f8dlgEI5HNAJ1e9DR8T1dNmakAPfiCNeoCkJv1h4m + PA2Zw7FjOzKgrhBQJMPHg3ttV19jG571wqonQjbQij8kvV56W49DA5cdWbndrZnppWrQTvN+C/6m + 264wBb67m/p0oq8G+rDb4oQ2LyktiTF/OnAkROqlhciXCq4QGg4KLCezhvx54PWx+MF2mMQghW6c + i0azVNfRgZlbBCdhpk1izkpduyWQJsOuEKxsYzYCJsLoSXBG5ZDEDajcb/CMaYMGqsTJ/uMVNbGg + +CdyqOTL5XKRKHG87+iQ+q7r7r56NsGw9p7uySg189DhRQ704Mmi1Z9sE1wdhUzxnWu6N6uwMcVZ + NF4pAmLZl8KmOPm8efjGj6rk2wpOntg9g5s5elSWXltUJIdka8IZnA1R4mlLJeGINo61kPxxtenn + 9czuZk98A+Da4GPQOCSVamledhsEcv4CLlFRUiLiWeFyxIrj4vW4DajDa/iSpd5yn7q8Sw6IorU8 + UUmJIhG3QLTv6lIQFDkN9sAPL72rGFwmN1l9bYln0oo3u5wceja4LU35dT2CwOks9f5OM09cujaM + w2FEQY673q7wTGRecuvJLy6uPvug5ugKTrdl7c8IUmkT+zSmvtUhM1L5oroVkCKNNKaIyPH6mm6Z + YuFtyS15W1impv/P8S4ixvQZIZT43FFLr+VFXAdOj+u1NGfVoNed+AWnv6aD77FhTqZwgg0+ayk5 + wcEwiEKNWurMQnMK9qV5ihlyjpplcqspdq+irkTz63TocnaBXPt2+Vut/D7zcrVKbZyBApYKYZzy + q7XMvJt+dd0X6urVj7o+tXJNWpywmGPtQjz44w9gKVx513R8243v/3InPIYYGgb0mOA++dfW/uNb + 5sOOl++t6Gg36/qt/lrFEASMOH9jYUmBIbkNtHDiop/NzK4ALLYPR8PtC7trB6A1QMjZ9PcIG/9g + 9Mlpdw2I0m7Qnh04cJ92vyDnyRPpKo+dssInTwoL3R3U/IqyFKDdQVvILqGkco8WaPNUDXBSPys7 + y//zXBEqSItzTHHe5utVmrlmluI6cWwtxIekDPEqNiGFaOcry6wEAHtot4n2LSBqZ7FryU1NyddQ + I+O25Dq8fZGxuHsv3evuVsvfxbZDXeyYmeq3JluzVyTaqwEDXt8j4Pu4tjRmHVdhXA2LBcE17PDo + urpNWzaevRwpVKczl5UbFZt+/Nodzg6tyRLUwArjOi4gWpSmvAKoYHPeaSjNUvSpUYW8ssx8L/pg + +QppbM9esEwjoKf3HfJmpC3x1zstQzsTX9ze+Sr5e0BFTUNvb8OCX6ScxsP1Nxe+VPbjcnF63Ea1 + JRfXr3yZmlU8WqTcb8ETW1RBPY6EBNAnRFBKXbQ7LFU5Ga+1ylGbsdNwip5rBvE0foAd6uEGweIG + XwWNQ6pemXFFosWukJxiDYFTR3Pa+N/tf1mFnTJOlkEOrtJ17a4fJfDwU0SEgiDXaGoJCv95Ozkk + 37RJQajVaOQERU+PzBGE4bLLfQqoFmeJs6yFFJcvKyD51YOT7zWdSlnKIEDkB0f6+I2N/L6C6q5m + MhSQorQEl1mgxOcvuMLfvJl/ZYTft7mxfHbeLxYfuCLe/9Vw5YDYfuWIi/FU4/Q4Hk9L83Iq0g+e + 3SoNhoMdwBM0aGngQFGbmTNnIh/RBmqynxw69CT7lTsdOpT9pGbgzfyW94wsZL2urnrNyMia2cbU + jOq6swOwqxp1Jeegy6N9T/Ums76CaRkyD1XoLAtAAs1r6moPJXU/2xrjNKdOnEtt9t750GQ/Ncnd + kzvKMJlZ753a/GV9c1r0gBuHqj5FxqtVc14U3Zx2e6B/6wSkpmZRPMSQoYlWUPzvw8pUDmbNpu4/ + pZD1bdhw2VAqAMgmAab30FGHR4n5e2OcA0rv8UVQGGUyKY54UL0wBUEG0d/NAftNyapaSLZqlSIR + 17si2UEFrNBDK3pxiW0EVhF64ZaeBfNVJdhDtQA6FkAxDubj8Fe5igzuWxF5Kc5KQPdvsWIlDPdq + lBVBPilOD9LHgNRpf+e8JJJB84jA7HRgPsw/ZjBnAP9IMzZw6DbhzER8+wRNm+QM4fYQNE6NobAK + nJIgNEq9StqDHq8KtWoHpJ6YxocBtPNcDe1woDPTGfgcjqM4jcCmqtHjltCv75QTu602cK4R+VY/ + OqwkgnNE+cBO+hK1Dsa5kTLvkm6SLLaESN1PXIJbuPjVuJv2S9ktKZ2rV365aeltmT8Y/66DVNA6 + sMzw3rpV1mVZjNPjii0jZEplKa+x2s9aqtU1lD/4JLvmDqFcZKlXGTy3ubksyYZ/hpo7r9i3uMM1 + zc3yU7jVuK+8GpdUq1SW8ZrOCMyEZiiBUFkOsHY9UQ1+RFh/Kge83w/dOPjovqlzLQnCCAXLqK7O + gAU1NQIMrQ1YolKlbCBRQ88IGOEZpM4M4ZP4A9HAbHzy/TXOe/vTplRcdOq8lSvp76Nlu27F27iL + ksJQc9PoH2z7MxWZnflVT6lb/Nvux1q7yVMz5cCd7p+dKujsLJiqht86w5taH/6+xtRMiZushtUF + U52d9BUnzLXm4yoH9fKMKkCo+BmdH8Sxfnhnbm8ysbkZ4RaI4i0KhYwgs1ezFIqrvVYcADvkcFrl + BDmNPxN+hBirJKs2nzyUtVFygmJROCbzFHNlG5XJRWKv2lEULLf+XnxCsrXv56KY71ZkrFYttijc + XeMgLu/oy444HxIvcWhWoRtuUq7zrlHIRIkq+VUoKjFo5zEUw2DYnVFMEnsHhYFVagsLYBfg0iKa + bx4zANy75plWqAJsBYW1OhwJ0e3qwtjADWphBEZh4BCeRa22zJ5aiItnMbG3evywzDLWoNU6BM1B + ddlaSWY2loMBMtV0dysIiomJF2YZgadEj4se78noEaqpEUNMLX0UZ7u1WhizMD7ShPN4SqL9/8U+ + XO6QwetRibhB2l9DtmmCaN/SYg9sXQ0FGoc23tXeHdw0HioOmkHLrxbJsPxxWImkBDeEG7sUWfJY + LoAtvora1biVYcmHw1biaBeslmlLZ5XUz3FOs1LEhk4ochEnwV284CXZmISPha30jYhAM9TNgM7C + gWqnFlqs90qGLh87/ONubd36r9XOLFP7+9gEMHivs8MfAfX42M27o09GBzMzrdKntoWrPCQn2w67 + uEeXRSu02n2lpc7z+vOnhScx8GYzm8b90nnQNd0vJqRanFwaUkL0N2Rt7fRd5rw4p6fCXM39AYQz + 34KEyKqYQPfsb7/7VOm/M2V1XhIdt1dAiqoV/JSWjqZlN2yWHgchQuMswHOC5OYx3M3fJJrkG/Kv + 21qn4ybZFJLnPwOv4mRD6eEgnShZ0KZTbT6CSiImcHTe3IiqUOOHhANCGwFGrBT4tJ3aBLHg2fg0 + jEfhNZwJdF4dxIYkr97yai1h46CNZxpewQ7KkEOkEpaFg0ECc9ZUPWuhVFMsfA6AcuDlD5o5SbcP + vULPmAfQrIb2JwHC7HZHAEG2zhFAkM10BBDAzGhR1U5qhiYYgAXlVD3OA3h0OzJdrxJQoXxULQcJ + TMOeg5LJ57/xZTEU4929BFfDWsWaKk1ySDU/hPGCPeAA/dFvsAOsIuvGOdFLNc74Pasna8ktKgeV + hOhBphIPFkV8Cf4g3iBx0pQTkV8/XKM3JR72jnxNNrBmqiuTkyuSUyp951cAX9xdM6qo+rZmbdyu + 2NLLs9LcbSB3IZaX7vflLttSI4nprKo7xu0f+qaxcaBx8zcxigHW5CTCld2Z1a9fGcDzaUvgJuxK + qc6sTa6KrPbeGsdlbRLlVsQ1UH/PMD4Uvr4gUZ0V57U1qoZXlalIrUlo1xrl+Sb5NNKNSWzTRTd9 + 4nPI6cRtW2PIvuwBooR8jWReCaLs9yVVdukBMQ+mRAeTsj6TLuhUrNIbNyrpPXSDWrhfp+OfvjHQ + pTo9MHBa+5oGNtKLik4EhHQXFAAo5Rd17Q4exp2tOyDHQtJds5EkgGuh2oyAwi7ze6pGxCoDEi9V + HVqSH8ZOCPwS56CmfG9xisoVS5dHO17W5L6eOU6n+2Uf/+14S4sMkqGoXId3aP748X6h8vJaAnBI + 1GKREovN5Im4Hgy7iNtba7Y44snNzGv34i5iWA8uUb5YcAK4eA5ZYV61GALQIpjRI+ufGJnjQrMQ + d25ipL8R8+WQddPwoOltNZ5Gsg+9fj7H0DgfBYCtwWL9+o7kTjrdcBs0C7UBW2d2XgpCvdNG0FV6 + +yk/nLw2MI/QRsnJBziYggDCLwQyoIxDCDiojK4+GJ1OOEfuj80lEGzzJegf3TW6RkiYezSENmgc + BKeO77g0jiXGASMNN7jomx3xjs36y3gM82+63E4gdKpclSffyKgPDagg+uZFo42O5r0wI4MS72q4 + TsOjVu/TuWTgP1dsY1eQgdfwiwvE7QrFvr3WtbV1+y2TBrt9DzKEMqi2pUVOkL99I4fktbUySF5h + M/D1uxmlcrvBcXOnpLCIhC2PUzMmyAQU7/SEZrTth6MOzOvOZndsLpo9V/g45YQs9eDSY0gD4a5q + nmNU6rFXrg6R16AFc4E5DvIwnu6UWuBEzk0Rk/q+QzKSWk2Sjd37kGRqtYx0nxYiOMA6Z+17Lsax + sNAxRmI2gzHHOCIGedSmPpj1vwySrVfAOaPrINNWmhqKivYLr2DXEmq//a4Wmo+/VPKUlJGRgDxJ + EaO9TdSxVyclrWYbJrhceeRa62RrAc206PlSBHnRaneY5gUVffmI0IDP31s4whfUjQKGu6PHYkLt + IKknZCdt/G/7Eic8nRH4fEXUys016vU6FbO52otvvJqpyT6ytXIsboOpacCtwQ0NPFSquFO5uZ8+ + pRZks4Ug//TpcU6nqt0MLmcEKyDvUwfCGuu8DVH6+beBvusPCQ2B4UsCYUIIAb6M2+A/X+2L21GN + RSCHk7VyuIb/aqTugmg+9JVFppDTmzsTj0Od1603f4WLHLdeca8KxmBVr2X6Iy2fmBi3O29KmMSL + 49LmjtSdPikLx/2CO0pn7aPPf9etOVI7T2ftoh/F/WlJN/p9l+I4S6GSnB/bgQRxpmqPudFl2JOj + K9mXJ27xz7drM4vBrbsH/GVGz4ED+wWe7A6FMLGa8q/fViOp7cZwpU1BemJeUI73Vs91pNt+3jF1 + upfSk5V3Hm7ICV6bLklJl6GKXxzGzNp2ZFeuyPaP885bUSzN3ugrTA8EvmKCFu2+yQKl5YTGxIdx + vP4NOatWHH3vCZTOj1bRdzRxVeQzJmrbxLFIWWK8IPy5iAsVv3QVdI1UnPWIN8+B8pKr2WEWckJ3 + UDk/Kdt1lemLVC/ZYaOVjkExOZYRsWuqTQpc0+RQ3d9zmzzYVGGejdDjQII8P03iCygQf+oIvC6h + LCclPyzHJYFhHH5lzgXrEo7AnY5V4ZYwtc0velHV9ijRuP2T96RhmayqcDouNqtqwv9kRkBcVq40 + psl/e9NSaez+GQuIzTjpr8mqBm51/a5G75hNX4anPaa99Vo44aQDSOPuimyHc3k1ayX1zHwXKPBp + OQILItk25Lp91It+V0uE258EkWhZqWuKyvYXpBOXXOD712yTUm0Pjru0JtINuh3mpvHY8jC+78Fi + +11nyhOUtb4iwufegERe/bLmvt6MqGr/sRVKKimemjYDqLUYiy1ZYtlo1uD38ukKWv2v6d89BN6R + pkEsjsoojp1LI9AJDZayT2bISgIbOu47vkmGvschNgFZaSb7ZNng1iVtrjg2I6r2mVGBtdLUzFdf + kRUb9kGbdn0/K+hH4ZrK+gljYw4qEP9t+/SSZ2DSPoUO9XGx2Csc+6M92Vs1xM2Ut7bW1z+yOaNX + wMkrXv1vr15F4OM4c4Ep5Y9m5wuXMmH05gEWrVGfBXgBGn+kF7dph+kmCU5FPiJeTmHkYZ87ZorZ + zDldTkUmCXQYXrDAQ0waeifiZYU4WlLxB3MmNt4CsjdfAB/8w6NjeUqekTEaDcT+QFRasD9TAEQy + +woah3zUUPXUy0/TjOlcZKoaUu/e8Ps3ekjV+IPusTlpyAMAi1Ejtb+2gnpys/NjLvI09oZH/VKd + EzTOyHF4pvC+PDJ+WJJotfduCOEZ4xngqbOoBsUyiGF1Qq1OQ9EAK5uia5dY8zAO0Q0YE2FqNW4D + Pt6JqPWyEmUz9gcRdt6nF9P06TylPoGwX7KfkKAH2wx1SDqgBJBYUp3/JX454QQhNPb8b9EP0bym + 6BwCADOFuuKUOD+2giDOHzEBZBoj79TR/ByWmkEmi4SEe0EhaTYLi4zt3C9YYZ2foxrhBeOHpD0S + VxaJO3zvBPDkGimBINBnFr5+ow0/Kr7mgr3DIH2/49qniEsRdMw+NXytRY610O7R3NUup/30QQf7 + mgtR8Tb8+g0CB7KAvig2GgoKNtGUxjcAltr3PDn5+V/wlUPBDGYxDxn+69CO6Wk4FQa+robluywN + Vrs0JMCfdXTJ+Jz4o8ZpwSwuYHY2cgnio/KOUA2vGr1nRkKQyY7HCnQb8sPn2g1DATO9O5gMHwQY + LLxvw4KT5uOceHwJCi9L801wqTFTX76RWC5m91aNqoYjvFU+yJLI9YgjQvbxXbUNQRUdj5FJVm/A + zNCGz7XAkRQVv/xHVFYxbnIro85PWMJTlSULi5sEwrO2mWanT1pb21/9OZz7EZFQrd+w9yAPe0ds + EW6RBSXfI9rbaMBkd79IoPk9hn8guHmpZS/tqle8GbO0tj5/0izT9qywSVAsKk1WlfCEfsK6Sybj + ZRWixIu7+00G7L2jPfIpFotxRr+gU7bfCBsFtCLJR9HrVJpGmY0quUxYLGiKW5e0upOnd453tO1l + 8VdRRdl42uu6DD/h6JN7EF7ahkWOeO9ou51p/bsFoteCjxKESpSzw8BIjwelfPNe2c2TioXJZSpe + idCvLuN12nhFmejry2Ij7jubkvTUnTxdel1c7YPXAoGof3faTrtob7xjaHG4RZijPR665+ITNFEx + H7g3Dv3d51f8vcyTbMOVNo/hp78UrRJIRV/Mo6D5cXn/iR7hC1kGUo6k26saPHg91GNT31gVeSE9 + MPs4x5fzeNYMmJ30/j8fsXt9ov/A7t9GX4T84cegmXr4r4lrdKnJsfCIN7PK2oJ8dPunK2Gubbg8 + eAdlJILpZZaP48mNqtc8Wxy5VPem/49YWxz+4ZobC55/+AOj2fYAG79zux1Ww8yLq96nVZ7JKhGz + 4Yxol1OpSz1GZctzdyB1Welvzd/Zr25RqxezPU4bRTpb0ih/F3Rd5Q1r13znQJHZv3VaXDl7aIGx + j3YQfxiAFNrcldOGLtqh+nNhg4kkdSufcbkZdzoj4x/mP+Vl+lSJMz3QFKwH0LvQIbVw7FBMYM06 + hZPd0FIDOwzYZwjKrgudBkZoYZ3OkDuvFAcTzBOGNUlloCsYltvY9bsODJ3XYnQwNkFXNDBUzWhK + Y2M8JgPAbUpjY+AKuBAMjQfzoU8cG0Nuq1c//PlOB8Jp/u6+b10oWNCE+59790x67Jj02Tu/8Njx + Z7nvfMeP5z4Y5Dl+bDRz5lZ5+a2ZYIrXVd+bLPmf/vHXxSNfynW0+StEZerq7Zng6U3Z/KJ+A2iz + carrsoeStyNZ+srm8Xr8JDvbDDXNrzkktcsgerIdPv8Kvipq9U+fjfiM8dsknNAkTy+vwA8Vw3hS + 7b2DwnT9Zi19Kp5v78mm+NnMfDOGTTsVeN6or1WUlbVsLy4U8X5Yx46vWeG8NJl4Mybm69d4riI7 + pCSNS0n2kjXbZNqtDL3K4fz6i353W8rUTRkfOU/Y4yU00uFRqBx96RlTXp7sdJad6EDRy+YOd1ub + WTst3fb/jcC6czuiYr7Nd0gtKgUM75aWw2ltvbZJyggtth9/MWUvlX74qFROTq4u8nCy3/ApSCT7 + 66tX799+j87wA5C1ycam7bxPCiig6TnohizZDV1nTTZyHeorhCO7ByWD4C9z/HevQRicJBH1jHHG + NMsRB08+CmQ5ffedEyvw0SSMc/Sas/0/AzCjmRRhLD6deYu52ohzPPD+PYYs8ItjXypc4oNE7bzc + fcgyGU3tsM3MVDgXLxLtNOZn5ifapp6d4jgn+30ii0PiAyqEXDm9I1mPHz56JI7m9tQ3Y1tzk3wi + JH27CXltzBbv1cCrelF4IDW3JeWgb/nlkyRqhmvQznASKfF4vcT7LTq6htCYfD+dmG/j+Ganh2dG + csCe3zIVGopTkcda94wCEXF9cYiKtQmFb4AdHyx3ecVPoWfKE5BDRjHWbJjnnycG7Uw1VDP18jP7 + 0fB5qqZNiTnaMiJzlJjyNRR1G0SVizbA1C1K7IlVCIZiBXO6zxgKq08pg8wWd7hSDS0y5i81Ztw8 + qkJRzDQWa4yY6pCtnUe5CRMfKSXfvA7jPGQexuDEqsSe7bwBM8gyC2COHBphAhLYw12pqlN7o0sl + 9FxdpjMIJoGKcBKEk66uG9q42huIlEPVuKIM/Zyp64a2kyz3wA3a+V7pVNDZ2ze/aLw1mXX7bETA + o3jat7Yfl/EDTCdEtgbwhBhywzYd+nYMGdW3ZmNc/qP9p7VnQeoFkcKds6CGskAAP7a9nsLYf8GR + CZyVR0bmwVYRQbdsLLa1xDqnvqCVaSN+TlX75pNEVn43vo9rt0tgGiGIUByW7E1Ys/xSzcYkI+5U + aWloqJ6ub23VmMU8LjhVbcc8ks4z79PpGEVT5DQM3Kud+p9WHjmy8ie9mWJ20nu/ofg/7lZW3v2j + M53XO5RVJ9askQLAtTFS2Vbpe0LH9MbuaZ8H67ofNEMLUmjc6YpyNn6YH9OWkEqUpR9Q4M2O1fdN + H4cMCwQ3R4zQAC0sEE5Mb7z0PJ+yttGjeuf3lZUySCYSfBYks7KSvDx7DQam2pyTS+RfnObW/21t + U4wpPn9yks+bZkAHHz2a4kJGmYvvQ0IAsamJiYOHJieHRn0ZQKkm08j/GQSEedd1YuLQwcnJQz8n + qx7q5fHnGFMB5jQ5K5fDk+SxQ/ius+1Jw67wpNkfjCvX55jrZgUvUqsGVeoNzBLuQwuwAUZ1OhRD + ESqjfQyGVDofurZ9e8Lc3b0B4rK31HWqztcX+JWsZVshrpY++j8Li8QP5f3auLgix00KOGd6g/Qw + XEhrg9QGWrM6xGjlAq0bfpkDQBOqKx30I6tOneoM1mZqvucYebXu5Ytpb8AhhEL3Cf7x9LeTsVIn + qTU+2hMDYNryWyEawsRUGIhgbR9DAZqdC0mF0Z3DfbhuCo8+V98Q9AEhTX0YVcthdvW2ATSQgDMp + IRAEpwEOaxtjyIIasvNt/j+Sjgnd5WTvGHeV43YXqyHXlDtYz6HbqH29HTjtdnSV69Ai07wjDGvC + dhdYikoXmbFbk2ydtlta3ZlNw4Cn8cMWWEMHM2zqllsNw1RhvFZqi6GF2sq7peUYAYzRrCLFkxfR + 8gt0OhWCKJ7q4KbIwTy+CAZjWvN2ZZf9UZvH7lSFn6BxSOGRaXug0umKgFHln5MnwZPDlruTaaD2 + UNj277+t6PzIA6/h7W1LykHnSYr1pBmPkEJGgwqjFQU9iYm1B+LWB1Thhb224CjiD5wmVFMQnz8v + 79iBQTrWtx6su9CeVqco+PdAd+8PRgdhXuOmXYWMteRvXSrT8Tk5FhasUr9pDuHxX9TymMCZ/s7L + MnZNk4DYYFCnk/RmA6a0BntRBlnPFqvtSH8jVjd2xTfM0rCgcT5A4POrGH51yZjXhkF4sMMvgwKr + eNkIsEL+4DOjxKDZ9ImddIPKwXkdhmIwjJ4WbkdgBMEMGPIERdoEROzZjRrkQZLUOgzGUNgQBXdJ + H9M3z+wQblfT9zJFRDxoGESQJlqYiMMJzqA3zTPhJvrNHOspTETLNDvcN+jm0bQ/JK3uy2tA2QMi + 9r8iTCZ+p/n2MR3KumarMTSKyrF87trZN09zjx7NffrGTDE76d0/wnsxJJAXgwOvdymZgDEYfdDg + MOh+N4TaIwgLRRA1iqpgHdJxJm8Nx2933s0Ly9Nfk4XptIqq1DhRMdsaj0fzu7vz6/nTyYr56vkw + GTjl1wJouORXv2WgmCu6slzq5RPUiYZSi9TKF5PDVT93ruBl2fTvT9kZj91TeBKBFkFV1syefzOY + fAk9V0G1zd3FUp0OClDxsHRPJVEiMVnXlB0ZIXNvJSWtXp0Uev9faG4sBP17P9TcBR/4IkwcrBc1 + sV9ENqnu7AQr6u/Ky1MYYsY8geCnzGdmSsv0pTDkYuxf56HReNQtG+0Loxg7iUir4uPi4leROkeY + TfBpxEVlzEl1qq52Sl1+bcjZ39hRSExLa+y7ymhinkE+fS4oaJXcIoLz41VdojlJ7Whf7lavQIeb + R1oQMEMK3HAVE2IN8xs645lMDDONoXROKqpODL0yv9MhvDOMjQ1DYRizl3luLpXK3cmLf1fiYMyz + 3H0YsVFCG8xDj6rDaSDBoTgqCALD73s1N4m57AVPI2FUossdQr2fgr1V7W/+aacw5w3zX8vw0fle + CkNoclV9fnLITBkgMfJ6/z4uLvY9HCUWR8Gam0eMowvr/G8gmZCHDBiMRel1kVCzBVBz2JjeuOjz + OK3wA/wF/lCon3UmO+bKKozr+XxpJqT/UGLbyJuwspho0ju0W5eAfBh5KmODVppohtK80ij/lH7O + Fl9BlXFVMre9//RHSVHHM2CuXsp2/j3uQKwP3EsnpLXQh+jLWiMINHNKAj0PuqQ6c1kFqegJFHPa + pWLCeWoMr+u3G1MfX0XcgyKOqouKQJ5+gp/nuQg+rTg2uvEjznmx2uTlW+/oY/JT74Sl2cWslpCU + 8vIjrVNKlEda+655GXZ2Et3fU/nRjxrmiZ1wuHdhVJqez/XFLxMsHxQKOSdKa3YlJS6Gfm/yW8zz + nyDooaf8HJwTwlKxQmqin1PoyIAqJCf46IWBCKlww6dTpXUAC+Ar5wc5GFys7V9mK+Xy/Pk49RB1 + XCy2yhSP03Tm5fBwntGN0B5r2K4TSjBo8yhdGE4RhFHIdvOzVx+sgcfMN/MMlTirgzY63Nbdo8/i + C7fxV2OTr1lfaT76rIzdIpHfUqEQ5/WS4oEo02UYXd42+LmqBFJBJVWXNia0Rl2UvTdAzLNrM1gN + aIE/jMFL7+ATrgTeAB5RpDKZQghrvls8b6UtWw0RAHN+nxzuMK+NXVScsMMywc3kr2jK8d1KxnHu + S7l2p6ufKDMySha6/hrtLy9XCIUavCzjrBnDztt67wsRj2QkMtFjQbRrUJQPuQGXCaeUS/8rgO6t + RWOlC9vCAdwH4FtRnvng8/T5+2n6lxZFZBpWHMP1eFI4GZrkQtA12swWxGEXPTqigUtRmLadA+fT + HFygsEDGVrteO0tyzAmXTRh7/PcT8cZ7fyP+80OPd30Te14s7RunJDBSY/9cb76rUb3RvMHXpVD8 + yiTpAYYbWcp2cOCuPj8PLv8fgMMuS6HIS0Fijsx/Nv3exBQfNb9/t2vykmWOK12yRhY8SMtlIqo7 + e3dOiXl4L8bX5QcmZuaqhC9YWhhbn6Q3u5q2YyXfxYA1vWSVWV+feSLQq9+eozJcMzfXCpYLGmtc + xOudsnxGAk8gipIPtDY4iqjx8IWRnJzD7/y9F4SN/25L8Bd6UiKPDhmD/Yeglp8/LzfQMzKaOtCw + 4T6OsGX2V0gEqVXyq/sHME/d16e+NYW0+P8NpPru5GUzSIeuY2/HPmwWXTC2MrGIY/25h91Iyjma + e1oNe3NP9QSWIaVBLP43hj/FtzMAd+S/jkEcCuBGatr/uDi4QhbtJjhVJAYRR4WhwgC12d/pJBu1 + WTWYghiGDw5G4hFMhTVux+yy2PIxlpQ+Agxx87oyo6MuqzaTA2WX6QruDey82vWXnCuYlkAvrKLw + mbVr7WJ74Pcoj8U3B9BpPRulyXtszY2s3YKt4s7mv6bvGaA4qwOFMWedKAO7/BPoJc4C02gv60Vm + tk250o3ddJ8ANQ8fFL2fGsy8dme9bwPaIOp+AeCpm1dLaeeItlUHq9/Yo92WrXesUlOCRexG7d9U + H6yyJaoNYD3tFxiL+HwqPTGC8iqO+RYfu/23U6dY9qyAHrfYXury03cpbB+Ww9ZmUZ1IAUYGufnj + +owoFFlT/vSEU8uMS4+35jHe2OLtV121Zpmft7A315qzXiYP/XD0QFQnLuzAJTONs5WEww2ana+0 + 397yuxH5Nc96YVRmNtHrqUE13BlMlfNYzKHmt8F88QhMuH8tn+WWzrcH6sQaVAMW12d7QSmq7q2u + RtEVlS4iFGj8GJP5aqKgQTsQLvDifsL+oIVv3iWw6Az9RyMa0X0mXQIa3te+Y9xgD0O7aEg5eG5O + hrdZIM4SF2zwsmPeFAOkXCt2XEWfpavGpzGmRDlLt1jhKTJiAS6/862TTvQH2hf9V6KnjtxR16kk + pS8Fo5QQfDZ0w7CZwzMyFNSbo7Q3oaEXpgCWMrjR29C4eXX8MGXX8YApkk7YdWgnZJy2w+6E9YEf + fnhZickLHgCQkbQ+xNojDGKIImsz0w7wwgwDvIOuzDoToDm/uqJ2Ew+I+gYk0J9D3ToUyilIucs+ + CdWmmnrH2xw7ZZNkXGoXbRpmn+QYT89hJfI5mpGIBGNLm3jT0A/bpcUha6klSIHeRG6TEH/8e1nc + IpMXe25f1n0K3yk5gz0NXy/7Hodazijp+T4WbPq2rfdZngaf1lb3ixsGZ1Ejp9+tOlHEAZUXyGJ3 + B4PH99Ukvht6d7Hw2a6LI7+7439VFJg/fMXw70cI1M4FhGjBHn96/Hv5b7okd/HXz5ydtLoEHCl8 + VmiJ2j+7jA0UWlaPN74ln/xH+28vo9eGh/TpRc8iuUvTsoWg7BW1CGwGpXA3Ns4AHy16DSHBbIA0 + F24+lLwkXOHXelY/c3r7cWVq7FHn6+ldbYubBOZe5j1etQ3kp+2tpSGgsrpshfRIQjRzTAtpOX3e + HTKiXtf9S9A1BMVPQvop6O1PDa3ndl5+qhLqtf3v3YB4ppNybVweS9omR17QBzWPQ+fQEEwbvH0m + RrrylMDL4qhCXUuGFKFuM4aGfM1zR2p5GvAWa/5Pr7UW2mLlc9y95mFXP1I28BKht7K+SpDCx2Zo + 49oyCQzEymxCUxynXD2iatXVVpceyiqUH/RZppMUXqKiwZkEhMu6XhpFKQfV6CqUA1y9nwSgCgPC + FIJy1HIoYaIdQPgFFgiENm7UjBSjP6V92mRMsKkXHqaBFppnog5JHXZx2E5j0MdhjZHGrmuMzfdt + TIz2f2PBQSGksWhkuKOxVuvwtbnO8ndjAz2ipuaGluHmFpbVc1/SOor/0peVonNMH8vto2c+kZyX + MdwqNC0l8BMmy/UwEQhVYhaDKUXcrI2GKhliuNTWBjUxl8TvhOcJ5CvoKzuYjjyFq4aSYCFxsGbN + Gs5N+SrGLFsvR0srEwd7FwTDEpeujSw+Q+JME4GMGwHznVIlJWOMs8LGw36RkidFR4+GQYmuR7rC + PYdowhLkn5SOsDgcOklE7E4CKcVXzLvhQUYpdWN3J3FozVgfw6iyTEBhhL5+jDbMUGMyTOMipUEI + hTJi7MhVCZnAJowTgIv/DK859kEj01FMTwcErDqBRRSAOWunqZKRxhpm3ktGlWI5M3S6TCRjicus + cP9Mev+gvzXUZBLacAii/vD527A+JGCcLvfvqx1+WPMHPbYXAKHjP4SgGE6QFM2wHC8QisQSqUyu + UKrUGq1ObzCazBarze5wutwer88PIIJiOEFSNMNyvCBKsqJqv334n9AN07Id1/ODMIqTNMuLsqqb + tuuHcZqXdduP87qf9/tBCEZQDCdIimZYjhdESVZUTTdMy3Zczw/CKE7SLC/Kqm7arh/GaV7WbT/O + 637e7/eHERTDCZKiGZbjBVGSFVXTDdOyHdfzgzCKkzTLi7Kqm7brh3Gal3Xbj/O6n/f3/wBiJJyr + dFYmZ67Plu1/wXI+vzzZefPlP4+SGZOYjftm/nud57S3naMAibURm54l7rXvx8x+31r7/mHFele+ + v7z33PXdMp8dtXN2kO/AzPIdkJnZZVcdqwCJtZHgAgAAAABARERERCQiIiIiYmZmZmbWfQOQWBsJ + DtNPAYQwxhhjRERERESstdZamzZX8jA4QtbnEEkbpQ8AAAAAAAAAAJATAAAAgy4BSKyNBFcIAAAA + AAAACqLfiBPH0DmgAIl1hCqllFIqSl59gB4UxDpNlLQkSZIkSdIORoKLmZmZmXnRn5773vPAX1fN + xv08Rzz+AwAAUEsDBBQAAAAIAGK5TlEPF/FMgNMAAGzTAAAUAAAAaW1nL2F6dXJlLXBvcnRhbC5w + bmcAFUDqv4lQTkcNChoKAAAADUlIRFIAAAEsAAAAqQgGAAAAkXcAqgAAABl0RVh0U29mdHdhcmUA + QWRvYmUgSW1hZ2VSZWFkeXHJZTwAANMOSURBVHja7L0HkCTZeR74vcwsX9VV1d5M93RPj5/ZWW+w + i10ssQAOgOhAgkeKF+RRDCnIUMSFLuKMQqELikeJvODFSSfFiTxdIOJIgiHFkZLoQcJqQSywfnd2 + dne86e5pb6q7y/t897+XpjKzTFd198wOQNaiMd1VWWne+9/3f7997N/+q1+armZ3fwHVEjgDOOjF + YL8Yx316Mdd1wT0XZsz9N79HN3bPruN5Pu/rEJ+Xe77ayxzyjve4xyM45aZpPu/hnB3ii/cg+53G + inlGioO3nxNr3d2DNdf5HgHs81oNnGCGqJrn0eWbjadndAPi2eeWs6jXFRIBHUdGQgjSkbn3y9AQ + Mp6fHlrROXRdnI+hTr8rCpM/1hWrWg1s5/a/e7GyO/8yr+Tti/KPALDETTLnYHD3JCuOBWzIPr8v + 93FY12HWxLbFq8bTMhOw9nsfbuDoTSg7Cjjv5boewNIPsDq+TwFLccyf3gmw7uGau2eAxdzzzEyF + xC0Q48Z7nH7fLVfw7/7DJeTyPgwOBvDFz57BRKCGt//VZfhKSZsoKYqC2PgoSqUKeE1HdXcbEu4k + 6AHhYxFoAR+hnkY/NWaChPsp2H0lWKy9RmKsg746bILFDv86rFnrttfAzPW8vdwFbwFY7ADfbSnk + 3XzX+7wKf+DxinuZTg/P630pHpZV9zy8ss/r9vrS9wAstu+xciskKa+ccITVYcAUbDxJZ9N49okj + CEWCuHJ9FRrJgk8FNFWB6pAqoZTjU0dw4pmn8fZv/7/w09/ivOJa4jMfsS1N3rTU7vSfoF9Ckzu0 + Ob9PiMWYV565e6G61A6/d5Dl5LeHCFlsj7Fsug7b4/O9LuZYWT3NIfPQfu8zdHtd7/Nyfj/9Cweb + KLQfg67Qu9X3OHfqweY56eW6B3wm5wX2vb5NhcRNyHiPgGhtsyKB5YkLUxiKNywKRsxpZiyGSCSA + 1VUCHQ0GuJm4o3AD2uktlLe2MffV/4JQMIR6KSeZKTdZnPhNM40Vwz9hgkYrwWQmyjURX+aWUGaQ + OAdT627o5XyyTkDBe3DnKF4909b88z4Tl6jemtlxvn9RMsaVd/DZtRdXvodPizG2b9eZ9czW+dkB + TGDGOy05ju51Pe9pnL3Pz3n3S595XA1sP7DRzrfH+P7ML9brAY47F/LbxaS3Ehne6204HnHmSD/G + hoyTJMIqgRC3TzKaiGMzVUAlW8HHLxzDQB+BVb4uWadKB+iomTSUI3X9mrF+5SPp5u8moaJjNQlr + DtAS9mKpZtyqRvxLlYud2+Ck24PP3cIhHGR0Lsad9q35TWZRPr2DnuZ7ABFrY7btcTw36atXmhlr + Alxufu68D8YUNwvc94L2PJ/3GVgrg5G1XhF73EOvSlM8o8sncRiqnu1JoXsAsL3YptJiMXKb1PC2 + D8Jcz8taLmCP6mXN4MzagWAbOXL4XvY7YR5ZaIyX8zfe46mbpoh3P1vxqJ9+rHFxe+zCfhVHR/sM + NwHdr84JqvwMEx8fgVIOS8hi7S7GDW+gkE9t2AdN/KITkhXoRH+9rOBra4O4Up4goNJwJpDDj02k + 8NzYLuFRRd6awk2KpsBGLxvsBGaaE8OcfhuuuwCMtxDIdhqI2bYy9zCOPb0xDtRUXBeSLMq8j2bS + xFovHvselDbCw92D7gXKVouO6a7r8CY9zxtCqTtZrSIVRDvB6prmm+a/YLZcKBt5v7rb2e9iCayz + U2efzKHZb8r2sB6dCtB7cW6OO3eMRfvzcS9g8dbA0MQB6YTt2KjOzdlkzjCK7l6ENIcWWHrlmeu6 + 40ZaBGvaKSxbTFX6tt5WJu6FZc72kEHmsLqkT8rHMPnJ0RZqo/ValoEL6cOiSReP9ocLKv6fpYex + gXECsIA84HpBx5s3d/CPawv47NQygVVFnrpe11GuVGlgFfh8Kvz0o9Diq9G5KjWf4GbGxCncJVis + gxeE8XZOXstO7sF1zNzA4V3cBuQyG0Hb+od4IzppOP6cIIIOjMg7ad7ntgSYN7EE1hF/eSMEzjoJ + C+taPTJeN88bML/RimFxBwtkbfxd3GN58w6IxfdANN6B98AeA4vtMsbsMXZ+T8hdvVaWA8Sb3ATN + p/fKYCfHOmvxAXepHt4R3JnnftwjonblYIA7rmw8P91XJCTOrrR3h3QvHnszMt7+77bOegsLpDVj + ARJrME/WhhPQo2g1puI76zr+9dIjSLOj8v2zA1FsFnPYzAErLIFfv+XDSJjjicElFEpFVCs6wuGA + vGilWsV2uoBEPIIy8yPgO4HCV94AUxlSPzSMm/E7SPpH8czQF6HUyALVuct3xFr5Zhh3LB6Tj5kC + 4jxed0CNdU7mABOL4nLWCc+46b9zAJMpvCIHRNDXhn+vMdPMQg15vN4AFak5ufy8LgFblffOuCXE + rOHPUsQ91yUYGxrX0kSm7W4kqJhMrDGxFaGB6X2/aprgTYtDkUfX6jX5NZ+qNbxoTCiVGvyaKr+y + sXgN/nAYg+M/BF4okEQoqIUZaijDr4ShKlEjKOOJGrQjj9waSwILxpxWC2sgjctHZfnPFCfFaCxK + 1gpo9NbI43Bsi3Gqlgq48vafI0rmh1LTZTS87KfRZTVoOskv98mxteaDmb4Ty+VgyRdzqhTeBZiZ + ntwGKPDmxCtHvhJ3Hsuan6WFB5+AmAgDp+fwBa2QrJT/WikLv75O67BkymHbm2yO7HKP/dCBI+is + 2URmJvO0XCs1+r1WpTEv+xAP0zpidQdTrcvfskWOaMhPj1B3KGQmWWqurMFP+BT0lWkt6nK0tMvp + Kv54uR+7fBIButtPTg3iH70wg3/x7fexli/RmlKwoUbw+zeGcTa5SxfPor8varAsPYyAv0I/GrK5 + IkLRBFihgtprb0PXdGQemcSN8PcwohzH88GfRjVLTExV5Y2JyIBMDBMLVZilAsjo72q1JvMxpAgr + ivlghkbyun103kBknYRcoYcTv1dpQWpiQTqEywWSnr/Fv4pcGAIqFCkAZQJi8Uw+erZ6rY5QOET3 + VoVOz63SuXXdHEBNM8KzdK/lYomO8yNfrEhSV6Xv+ehzARyaQoPv0+T7AuQ5HS/eDwdCcoJKpSqC + gQBqdO/FchkhmkROUuGjRaawRiBgfmUFV67dkfdx7sxpTE+OmQ5JvSFsNLaFUgWvv/UhCUwNL3z8 + OZojJsf4+q07+PDKVTz/3HMYHemn+w5ApXvIfP1llP79b6N2dADv/2wUN/0X8ez4T+Nj4/+Ezqe5 + gipOisklMDG30cQ7EKo9TEon++XczYRb2W3cXthudmaIhY/GXYX63bfhf+MNFI/34+KPl7AVWsEj + gZdwpPYJkht/QwnBUizMY8Yw0//SMF+Z0wFgOm4ZcxnPDjZvSFaD+DIPvLVis52oIIzZJgtH8QUk + e+SmS4Kplc5BmL28H7w7J3x7T7R1gIJ0KQBf/4sYHD6FzRtfQZ+6AJVVbZVTJfmuRx9GNj9PoJU1 + xpVOnC7Rc8U/gcjYERSzOWxlFpCsX6F1V4b2wWoeC+WYPPil6WH8r586iasraxgJhfFjp/qwmMnj + g5UsLufD2C6oxJb8KNVpsekhqJFxVEp5EotNWpw5BMWQkfBnjx4D0xiC4QGMsyPo10bkYlpZXcfq + xi6ymV0EAn709/dL7R/vi6FarmBguB8bmyn6u48WJJfn4LQwq1UdiVgEuUIeyb4E8oUcXV9kwtJd + E57V9Rp20xmMjo6QqVqhnzIGB5OYn1tALBpFJpPD+OiYfD9PLKJC5uzo2DByuZzUQLs7OxgYHMTW + 5gahpB8Tk+MEOiUCoAo0v4pcno6j93OFImKhCIFLWYKW0MECrBRik4l4HJtrGzhzdhorm1synlEo + FjA4NISdnV0CjjpOnpiCjyby1vwiEsl+bG1t4fjMJIFLGcvLGwRAJ7C8vknfq8oQsELniEaCEuhi + YZ9kfwuLK7jw8AUanzLm7ixiamoUOgFjansH4VBIHi8Ed3V1RQpNhZjFBt3P1OQwXWMN63SPkxNk + 9ut1CcQ6M0xulEk55bdJrXGU6yWU9BWU+aYUwKWlZYyMjMi5srSnpVxuXr+BY7OzBIh+m0UIMK/Q + fAaCAal0pEKgfwXIVokZlAiQo5GIVBLSWFMUWCRsYf4uzd0AUlsp9NGYxuN9NqGSxzKlEfgQx99d + wOSRSak4xCtLc+3z+6Qy0+QM0ZSK+crn6V8/qiighG1UWJ6UUlk+S4VkJhyONADQCXqWX48GqVgs + 0+IqIESyKxhAJBoxkyZ5A81Mhil+zZPCE2Q4Gg1L/26O/u4jZd8AeTlYJitnpmXB93YS8oY3uMkm + Q6eop5tN7eVl2U/FhHWMgCV//ASOnn1JKg69/sNI3fxjxAPLtF7ryOhDUALjmDj5KSzdfAfb+TlE + 2BqCwQqqPIypo49j6dqriA0Owec7h9L6bUR8VWjFepUWf1gymHOjcQz4FYyR0L9ETEsM5JvrHB8s + 75CJoMh0eVVRpb9DC/bTYg7Lqa0Xt0zhY7g1OIz/7vO/hoAexa9Fv42fzL9C41iBSoujTpOzuZPC + 0uIizp9/GAu0gAIkKHdW1iE8X+cJlEKxGAlFDtu7BfgJNGPBIAFNEWkSuN3dLMZHOIFOFqrqR5EA + JBwOIk9CJARhJ1PAMp1rhMDo7soGvv7yazh6dBpROufy5jWUCEA0fwB3F5bx5JN0/YV5zBC4VqoM + 1996XyT/04AF6B63cf7cGQLjogS8AjFNcZ0YLbL1DRJ2WqiMvqOqRvlAJBzFytomIvTdVCpPgl03 + GJ/iI/Apoz+ZRJlAtlKuYiuXJ+ArI54AXSuM1E6WQGgVQ8ODyBKYarQYsqm0BFSx+Na3M1Kozxw/ + IoVTgMztm3MQRluyLy4/E0GTK9eu4/TJk/IehczcvDWH19+9IkVWgMNRArZtAs7pYzMYGxvCV7/2 + LfzQC8/bbGF19ize/fQvIjwQwXRkEcM0Z9PKpLzeX/zFn+P0qTMEulUjg5sAJtmfxOTkJG7dvoUi + jdOVy1cwPTMtmXcfjbdKTHo3vStBSvz70ksv4bvf/S4Jnw+JRAK3b92W/9brdXzypU8il81KgHrj + 9dfhpzHY2NggGTlPyiaD4eFhpHfTckwFEAZDQXl+AS4ffngZv/zLvwQrM2Nndwc3b97EhQsXEI+F + pSF37cRZLGpTpJQ0HMe7mK5yJJUkAUgeKyurKNC4x2ksDUu2TvJVlEC5Scrz2LFp+j1C41Cje8jg + 8tVb8tgwMe5gmACZFJaQP5XkX5GsuU7KOECyJlwnNXmPR6cn6f0Srl6+g7PnTmKVCEH/QL9k2CKr + O03zPEx/Hzt2xA5QdRPcYA6zmpngxawfNFIBWnoJWQtE28v/5Dx8jxBkpqRjeOYR7G4s0s9VTJ18 + HqnwSdQq66Rc6K6qBQxMPYlgdAJjRxWsXVkixWwEf/yxMVrbBdTzN1BQt9B/5DNIrQhFnId2aqQP + I8s5XM0zfOmN21L7ffZkHF967wY+SNHCEw5A5sNMYAfJsE4TUUHcXyBGRAuzlEaQKJ5Pq0E1zYUi + AdoCDxEAEdDQYtJq67SoQvL5RoaHEKbFc2r2GAllEGuqMJuAkyePkoIvycUXJa0VImYVicbowQII + +oWTPywFIUpCEo6EyGTKkBCFMNgflRp0aCghBViwq5npMQkuwh3z8Y89Kf1DkWgfmbJl+neSmFAY + k7Rgh4j5REIagUaUmM42nnzqMRLtqgTeYlEAVZiurUomEYmEkUzEpBAEAwPStCL5FVANv1+YgAWM + D4/KTNwQXZsJvwiNg2ATUrCJIelBuhaZeVFiSslYSDKCPlIMYsGeIEEVJmeMnk1cM0A/fVE/jWuU + zl2k9+g4Ul3rG+vy75mZMUQCPoyNDhsuWjKFn3/2GZmgZ/ldgnQ+eS/0XzCgSV/Z7PGjeOXVN3Hl + 6lUcI3CJ0fWLKcPf9r2BSfyLM38XR+nav1f+1zhXJgref4ZY5wpGhkYwd/uOvFcBFsIPqdL9i4WZ + zWTx4c6HNN5kPms+WrR1UhorNL6D8rPUdkqyF8Fi7tA5Jo5MyDG7fec2sbZRnDl9mhZtSY6pOO/4 + 2Bgppl36dxxZArHl5WUJEGJ8Vui8VWLH4nNxbfFzbGYG8/MLkjEeP35cysHs7HEjWCL9iBq+OXEB + /z7+EJ5T0/i/au+in9hjWtvFIh0zkBSgWZNs20fzNECsv0bnqlQrJAclWkQBGTEXJp0qmDQp1YCP + GBaNRSadliCr0XMLYA2SMhQAVCxUJCsT5xKuCXEv+WyBLIoEMdI5Go8w1tY3ZNBqbHwEi0srmKB/ + Ld8t43tFrk204KoRAWeOKKGZYGmBlu4tl/KkY3RiTVZxgsW0OGsc3+67kl3SOo6HiN2XtlEmopFf + /w5q0+fg52li6VUZ6AmpeZTyq1jcKUmg8rEtkuOKVDyl9G0Cu88jPvMjNMdBZLaXidVmIQKEbPfu + 7774B+9ee/lXbjyOkjIgreEfP3sUtzZX8f5WVd5arFrEb84s4DMzt4nmZuXCCNGJxKQIDZojDRMj + bVblfpSHn8Ir2WNykp8NkbDX3yBuSBo3JsBDa/immSLNPmNUDPVo+JV0NNzPDn+BI0WCN/IpHLzV + 4RBn7mRI4zSmnc8sbWR8X5gv0lzhiu3MdZdvctdEwXaIw+WMNxzT3OHQVOyoojto4PWvNgLQzI4e + 6Y28Lev8ws9FoMtoQYqFxXTdrjlsMiPozxp9uVo3TJUAgadGYFo3M0zEnPlMH9/60hUEiS19Rf8Y + /rcbDMcCDL8V/7cYq/w+tKkvQhv/VbpEGHliASsryxgmkBGm7AwBhTCL07Roo5GoNH8jpIyMea2b + zCMvgaZELFM8961bt3CaAEqAtWA1AnAEwAjWbvmqhM9NKAnJDgSjpHOJORLH5gt5AvOAfM8yMwVI + 6roxggIIHZ5/WjA5XHztP+GP+Aj+MH8OTylp/O+RXyF29Toywc8gy16k8QgYIK8bvlJx35ZrtE7m + tAAj1UYQbhIgwyEvHJJCkYpnEGNq1c5p9LcAQfEvt/x80q3DpGtAgKui+gzPLF1PHMsUyzRmMkbo + kr+mnC9icsKc1auGlePw69WLWQwHFxDQSqZznLt8ZU6/brcJzw2/oYOvcXfuF3cEsbgZpMkqs6iV + /WC1W/AlHoGeW0NMW5YSni6TKV4bQtSfRq5CypmOj4WL0vlOQ4psjZS0OkrPQwqblEtfqGIs+cLC + l15cWb/z8j95U8U3C8+gqgRp4IyCQzHMQRrMn4zdxT89v0A25K6cqGLJOKlcWCQYARLcIJmSVV04 + 0qIge7GBxIJtWE7JRsDXm9vZSE51Rvkc7+qeSlorMmZNIPad9sA7h706sF9u1jp1lZbUJiq6pz9a + Lj7FlRTCuTuZtykVw/xUN4GWmVrYgFrd5W+okDLyjzwMNv4juFMg5UQnnFWJnmMVSmAMSnBS0nTY + ekUxfViKYy55y5h2I8+I20ESK7hhp6zY4Xi3ucJbpnY6KxHauH25M0qYxaXX/wSFUAjr9Sg9Ww0z + 6gItjhQxrwHixwk7R4870xGaaxLckWGZyKg71Ftz+qphcnly6lxjxBwJLrzhVDJ9Yq6n9hR4ir9q + NWIjeg2+QFh+bjndqwTSwwEDsJiM1JmdEFhz2Z0bFvd20HuTO7kzQ9yaTytVQSifmrGKRZytRspT + FembirHWdLOmRygD0aFByKqqMHttC8VdqxnywlTdZIt0hVLqwxfTO6svF+nDu5U+4UY2UdUQTB9p + g5lQGWHNcFCK3CpuMgYZJ2O6zPngJsMQ0T/uzcCz5sJ0RlrpB8wVbbKplzM10FPq4/UaNrSpPcWm + cc4Ya1lmxNqkRXXIxfPUNHoiVryRpc457y3XhbWi/rzFIcxNufkepSveEDmYJ3fHkXFFZoWuReAL + xc1sAlMRcMUB1LoZrmauMDk3oZE3+VScWYwtAoY2+2VNOW2sUfrvgA93cJDZ7JOhdVjS/B6xnmI+ + DaY5FKZMY2B21rU7iZk3gRZryg8y8/Gacru4K0WBMTfOKCYKc8ZbKCvmUtx2iZrLemAO9q472L7q + Tkylm/OzklyXVkmLS3mYycqMeyK7HRxSzJuM7bgnb5qz9fwSC8yxYhYuOBgbN2mIfQ4hfFbqEFMa + ZrGiy3PIc9Fwa/7kWQTYEcSIco9YyQOKEbywgMHII9Klbd+oaDS1udrI2HUa38bCYh3yVhoTw8wP + Xetd4XvmsTMzIiVNAkJnZhrs4quqqjaGmnULGK3tcd0kOa2SGVuV6rA92BrAm/sl2SVBBntpAAp3 + LX5Le3FHKJ/xA3QVcCbSmiYpY9x22TrNbnl7gloXMnTNKmpBP2qkyBQWoEXSZ1Y5cAdpZS3TFow7 + Vz0eXG8meCtTt1HvaOeqsaYamMY40f/8/axllq19H1xxcteWM6WYkT9dArcji8oEde4p2TJaCXG7 + YNc4lQLmJPStEiq5I0PSsZa4o1EdY15LgTcBdWv4aQXuvKP10MryaMFFWrrYmEeVKUD3lSpNS0qx + 5Ukzqj64zUrEpOi1MvKpi4j1TxKkjUsUF47RYiYNXy6FStKHYqCCQG0A4WACwUDIzDGxGts0IhTu + hE5n4qQ14dyeMObU/SKhklkC5e6zw628JEIS4Zj1B4NEORWUaS3l6CdSzqO/LwLN5zeA0Kqu0RuC + ITQNs5McDa3FLbEykV6YXju7KWgsg1y+imh0FDERZmctssp1K6HeqiDnjkwep43TAAHbrKVxyYpU + jWqBFEoGxaKKwaEj8Pn9hlnn8s8xwy/BGyzTFkVugo00m3SHqcxtZ6y94myRsmq1dNtk0T3lL07O + W756Gav/8p9C07ex8hPH8c7sRYz3ncPnj/0f8NfH7XtgOm/TgcDB+LhRpsGsXmBCV3KLteke34Eh + oyK1IJ/bRVDNIVPQaZym4A8EHH5C3ZU75TC6zPmoN3KmrIReZnulXG4IYcYs7xQxMRAjtlZFPp+T + 6TgiimkY1w0mL06ocMv64K60KktGuKvZHWtOoHWYXvZcScBkJjNzVFkwSzF0qId05S60So5rXxLD + wFqCh+vWG2TY4aKxfMsNpexUPrwLZz/vkCym/uqv/rPpcqnyCyLBUbCoamELPHebBPItlMsbIt4E + 1R9FvUqf3biB1X/+D7AQv4Tvqr+HmcHHEFUnUKLFdmdpVeYLiZCwYDe1ikiALMqIW8AfxO1rl3Bz + fgHxRBKlcgnVSoWOUwgQtshW1VGm42R3G+FQFR0K567j6tWbBBJxmbdRqZaxsLQMn+ane6lgfXMV + 0VhCnmctGMJv3i3h6xWO310p4RMDYcRZHW+9/TrC4bhM3ly4ewf5Up4m33ifMZ9c2MIZnUql6LMy + nUsshgw9b1AmuN7eWsFK6m1c25xDQAkhny1jcGBIXnt1Ywlzd+4gGIxgYXkR77z5OhRfGOFIGLvb + G7hMC7svOSC1c7lQQJnuWTxHqViS6QEit2tzZxfxWJ8safrg7jWsp9/CYjqPkKqhTqaacKxnsznM + Lywgl81A0VQZ9Nje2SZFESBzp4itrRQ2UjsyGiXYYKli+C7eu3SRnr0PqsZkMqqcFxKcQr4gF434 + VwjV6uoafDR+5UIeV29cw/tXr2BgcBiVcpmecQVBAv1iqYDN1AZiMZoLOj77rb+AUskifTaK+f5b + iPgTOJv8r3Dl3Tk6pg/XL19GSDri8zIVoV6l69PvYsyF4ivQGFTp5zIdxxSRaxbCndtXSRqDMtrI + JfgrdGxRptKI74ZoTgR4X127i43Mm7i9vYOoX8xJha4Zo/mdx4bI3YolZGRhdzuF1e1d9EViRsLt + 7RtYp3GKhCOGbBZFKoKGdHrXiEzRHImoriDrIoAgQDBPcvkHr9/AuaPD0EXSsPDBibw7mtRNOv/2 + 5jLJSgjFQkmOaTaTMSPIFZJXkedWxCuvfAeaCFDJaAeXOYQCzEVEW6wXiz0XM7u4S2uoLxY1s9iN + 80klQXIpUnLEws/R98WaEoGX3d0dhEKhNrDjBSiva4C1Srxv/mnB01r/MLv5pZWYbf00YLXxn2GT + t/5xfpc5INlkWI26J50WVXr9PcR9l1DWdjBXWUE5s4DHZ36RhCWCrdExfPNH/wc8MVnB84FX0YeQ + ZGTvvPsmrt1ZxseefAKLd5eRjCaxs7wKX9KPucVl/OiPfwELCzexQyxll8BhM7UJ1RfFiWPTyObW + sbm1TeCoIxaOiRAWTp+/gPW1eSyubGGHJi0WDCOb30Eql8e5U+dx++ZNjEwMYWTcKCUqS3OVIa76 + cDwkCyRRJYC7LXKE0lX0xaPY3dlEeKgfx45MYGXlDna3RGg8IpuJBcIhso/9uD1/nRbrCJ7/+PNS + mLbTFzFfBBYrz9CTxnFuoC5Ldebmb0nbeu72PO7Scw5NzKBcK8jUgaWlFawvz+E43eetK5exu5JF + pZaDPx6ke0hLYBwWiZHpDEL9Q5iaGEelksZ24X3crVzAbiGKMzNH4avnIBpwfPDBu7h67RYS0RiK + 9EyRRJwWrw+aSCql3yu1Eq7NLyNECyDRP4iRsSN48onzNH6rqBc4/CE/je86fKGgZM6qFkKlZPQt + qhIQ1AMqnnz2JWwuXkeG2Op7F99FrVjB3bl59PXTM58+gzfeew/PPfMMBit1bNP5v/qFf0jsQ8cT + R4v4tI8hqs2QglNx8dJrmFtaQppAtU6KIJvOoUTzFookDKVUFom4moyG5bbz9Nx0PgLKWPQhvPna + a5g8nkWWFqGflGRyMIbl1UXJ/tYJ2P/ef/sLBChZbBCoL1UmsV4Yw8DICIbrO1KZfePlr+GRC89i + 4dYdCa5CKS6lMtCeeAqBWEimHRTKNdy6dllG/qDUMdg/ge3MlozeDZEiuvT2WxgemaTnHsDTTz8p + WU2RwF5ULBTomUTahaIKmanir776dWR2VnD01FkMRfqxvb2NSkHMQYLk9i76B0fx7NMP4xYpNWHi + r6yvYmRgCjWlgu01Yu0EiD/1k1/APH0+PT2Da1cv4c7yFpZXFrC5skn3MYgr165h/MhRxONxssIz + MgF1bWuZwDSOKIHgjVs38cWf+VkM0TzZCb17lhR00Vdmv6973e5MBm0cBV+qL4j+0ceR2i3h9UoB + fx2u4GKijCIJWZU03hJp4t8dehabPIGZ7AKZADlD89DXx4cGsU7ad3RsFEukBYu8igECiH4ShAhp + ub5EP5597gWMDPfLHKeTsyewubFBjCtBglvC9LFZxBJRaJEATfYgMY8EPvmpT2NgICHzlwaHhzB7 + 7Bhy6bTUYjE6p+HIY1ClyV9GmjTRAjGDKjc09JMkrCIna5UWb6yvT4bfff4AZk+ew9nTZyVL8ZPw + nj13loCSBLNUo+9pkiEynicw3cFKeQohXcORZJjYH7eLNgO+ECYnpzEUjxGY9BEIjchrisUgsvE3 + 19YlO1reWsPAKAHJyDCCZOIdmTiCqckpWiADJGhJI4u6so67uQgqfBiT0SgxB6PmMhyOEojs4Mzp + kxgeH5c5aFP0/T5idfFYUrKUSDiM0WSSmB6B9fFZYkZ5qAS+U6NHkMtksba6JbW6CP8XCsQepZms + IEJmfIxA8OTxEwiJBUxmf4AUw8np4wRYZXq2o5g6MklMd44UAJMEQfio5um5/03iGfxG8pO4W43h + 9PYbmMxeJM2Xx+zsSRqXME4cP0XMqCpZij8UkMmsEQLMRDKGrc11BAMiebQPZ06cwAAx7h1iPn3J + IQK4bZl4Gk/EaM7WESfg0ETzt+lZGdhhtW2kCnXskumZINAeEvWsko1p9ByniVVtYmN9TWaYB0IR + JImtzM/dkeccHz9CbCwjc5+Gh4ZlztbOzjrdU1LOq5gbMR7Tx45KN4AAZMH1S8SWBEsU2fMip06m + JdRVPPrwo3jssUeICdfp2egZ+yJ0D6cwQIDFiB0fmZiEj+bhkUcfwzA9m0rsskLWg0gWFZUb0zTO + Yu2JfLkKKbFNAtcEyZJgfMF4RJqjw8OjdN+jSG1tyhwvEfoXidBnTpxElcB3gq4hqhvWlpexvLAk + o2oPIs4cDhIaQT2yOvQXM+nMyyIZTmiCGmnExTd/Hcr0aVr8eQRJaz86+lMo52vYIjNipaJi0pdH + EsuoaWPwBwekr0glgUpn0jKhUEyEKmrnSDBFLo6g7HWaeB8dJ+rxqpLyKtIk1ER7ZhHNIe0bEiyA + G8JTo2PE4ioLs4AmT5o8Ir9I1OERaATo3MI8FBOskjAVSHDzgkaTJh+sVzFEAqSSaSXKVoS2FRns + IqYqav7qZi2jSBYUeUIiJ0mYTDU6NkigLMpMRFLo9vY8rmzU4Pf34fhAhMByF5NTk/Scu1JTie9q + TJxPkYAnqHuQForwZWRzOZn0Jp43RNeWuUVkbxTIJAqHwjJQIMydsEjErOZwdWke66UYjtKijvvE + 1WsE1gPShDKKl4WJlCeA9csk2yAJqsgBEkxQds6ghSMy6wWlFoCQobmIhkXCbAk7ZKKGCRhy6RSi + 8SGZkV8mM034Y0TSqchBE+aLyKcTgCuSd4VZZOQ81WS+XJXYdz/dz3vpAv7Hd3awywP4Z8l38Xn9 + fwGSswge/3Waw0m6vCpZt6h/zNHcB4N+un+/NOuET06MgTDjQ6bCKZNc+EVZDWMyt6hQEHMVNHLF + RJ4WjZv4rsg858Qm59cXcGdbJZDuxwQpt2x6B5NHp2Sip8j/EuaeUErlclHOpTClImSmVuhvIVti + /oWG9dF9iex1php5Y8JEU6TcqkbZDSm3HM3nV8jM/fS5aVlnKyocxMIRCbfSPUhzLo6tlqtGGZLM + MxTnKklTVyhEXZqCkGb16toimfBpnCcLQshiNBK2A0dCTkTeVomeQ6E5FfOSF/5ZGjNxX6L+VNSa + Qt6j4RPNkEIUCr9GcyzuI0AyobDeAKp9sKYRGWX3r1H63qkVJBgvEl2WgCUGUSTQVfKkBaPDNPlF + UsY6AUefFLQyaQLLOW/shqFLh7fMrWHM1dGp0eIDMhmMc9WV2NmuLMDoBmMlDjrauziq15mjLFX4 + Z0T2cyNUaqRkiHovmTNkOoAb+VxWgqerG5EjL6bRAYHLavOaZHQw678Ea+CO+2Guynq9RUaOM+GM + N0W/hIDLPorCRCuX7DCvRiBsRwsdARvmLKxl3JWvxD2JHFb4XYx8nVmBJTNdgCmNeeSOXl7MGYVl + hl+RN7oJiAZDafNkcVZGgO/QgQQ4aoLe8Zn3ye3vuLrYugOe9jXcc+uoAWZe4VCkzNUkQBuROLHI + mZkEyx15Thzc1UjPkjnWSNSAt66aO/wxRtS2buQLQbSp4WYaDylLn9qiW60nssm5u42aI8KmM97U + Lc86H3d0r2B2xwtm5yY1QjlWMEeH1SPN1QOrVacW5v7MWyzeyXzstSMN87bp3u93PXehfe177xBj + yEphcHaeBJacWNsWZbmZ9CcBizSkaHnRyLdwi2Zz0l+7YWB7Bmmbk6E62ei8h9aLrIPjku9xb7xj + tIOx5rB766TLTul83cSDu0kHbF3u0bz9hnt8GbeqDnjr/lkeKVWaqvjNsdB1V44eb8oz63C33BE5 + ZU1xto5SxTwH8g4SxZw1d+5OW20kgHnSoDtLCWOtWtc5E5u5O1HQ2RWD95ij0ypputUI8UaVwX3j + VRYt1B3gKcaGWKovmpB1zAZck0X2S1/6c+xmBCXljeb4rJd9VhrJJfXNZbBa3iEUDwiV7CKMezhX + sFIKrHwkT34Qa5Pr8gC9etl+aq9trlwAYQKVqImULYZ0vWMrE/QItffjuwd1GDdlLzOnFeLM0WrR + hLIpRXVfFpVn3wRvS2RHc+X7KJpi8xtX2ZCV40mmfOKxzyOPiGylI1uDGjS+3mjXy/Zxr8zKdlHs + jNYH78X25CcHfQm/WiIWlT6lck3k7ZRci11pImjsgRsl3gHA+B7g1kJZSyNleDAhi5+FjtxO52Sr + W8sU3Y/Msf22hD7gdw/yUj3bEYmAVDGfg98fwA6NCbMKqrpQYqzNpird4SbrAOC6nUx7X19mDZlo + 0SQ6xApfZ2o7bQK5JreqkHWb3j6t/MCC/v0Sb7g3P5VKDX3hIKZGB2SwwJt3ws0SIvnjyT3hrHNu + yv34kfegeH6cx3g+63TP3Kr/FNnmPhWzU6MoFLNGSQvTG7WzVla9WfPGmTOD24oOofHTIhmId/vT + 6rvo4fs9/ujW85jeJetH+mnrdTx+1mhh5BQiu+pKZ21+mgWPccfJvT9eIdXhPleLY9vJ916n7uZ7 + dTNF22ph4Kw74PUaLpw6iVq53DALzU68lnbRLFTlB9I2luVZb9QT4gf45SyJcAxawO+T7YtzO2nZ + 60o0AXR3x2Qd3WUPxpjprufaaxcVvodEiOioSLNYXt9BNNKHUjrbCFTYmdp2YUBLvc/2IBTKAQZO + uSd6liMSDiDZF5NO8S2Sh1JFhzN5U0SYr9y5LdMacuWso/52rx0oWUuvWbudpLw7Trucis7x5g36 + ybg3uZQfzJ42u5eE/CoGk0lplm5t76BUrhk1ycxwD4jI7fW78/BFwtALRaNxgnnTlpmoHS5vYd+v + CNTbLHDWcmdUYQqKxoHcaRPB1VsXjSXKcZguLLYPOeogXYfjMTQfe2l1XYbdFdMUtCOaTZXojYJj + MybnWoyNGAXv7gYOy2nl3P2GtfBJNc0Ck7KQMsG5pjeQkZsF13dXN2Q6g2Z34uCOQFWPO32bg81a + bXxhmXfedkuOqLrFCI25aTDapt3lmFcheXYnd0BA02YlojMIDURqNyP/LlfN3Y2YtVEqw6Zo0kgs + S1QgyD2heXNXAu1wlwxrM99GDZcRevV81iYqdH/Bah/LvQUd1V1eTN72WGfagN2LW2qRRq8u3u29 + y9SEuinuit2FANgny21Fs9kBtgkWTfSsoEzdEW0M98FZJambTEm1azthm1OqGSXq1MzJyUtc9Xre + bng9+WdaR6fbdSTiHmZTto5Rw1DQ2D/AqrdT7OfmZj81Fc74qzcq4d3o2GKmMtfL3BvBm8cg9gVo + x764qzNEw9luDxFXelsZHbDWertsvREyg4MydakxR4r5/3JMghE7VYWbm7Jo7iJMdoBlz5t3NpKJ + XjrOH5vG0EAC3730ISFr3SUKMsuabrggcmvwUSWp3V/A7IuGEQsFiCL7ZVmSyPBfWt3B9MgIynoR + q6k07Op+NDYw4M7+SkIbEgA8fmYW71y7jES8H+PJPtxd20CuWm/J7PY/PKyHBd7lBoVmMqzlwxBP + e2QwgUyugCF6jjJp4/VUCrUKx8Nnj+Pda9elA5aZ/j+50HRjcRl9tswWJE334U6/YB2NLuZiwdx+ + dmvR6x06rruBkXt2XHUq5camKI21o3Nz1x5zL2SbedAxk6P9ssh/t1iWeWEGWTOK1RVFw7PnTmFu + aRkrqW0D9FjD+hsb6sfqZsouMof83NhtWfz93Nmz+N6Vy/J9q9mLtemr7plVfkB+z/c4lrn+TyCZ + ZpYbcXv2tEM16bxNgOg1mhzAYCSEi+9fwSM0sL5alQQygTvLG5g8MgwfLbpAgGG3XJcCeunqvL0Z + 6w8iWEkToVzBp1/8GI4MJ3Hx7Q+xUszhqbMnEaozhPpDeOPqHC5fu4PBRAxjI/147+Y8pvoH8NjD + p2T3hJWVdcSTceilOh46PonRgSABXgoTiUE6rh8s4scr711GtlhxWxjd7DxwcEOwa9F2LwWOIbr3 + p04ew5ljE1jb3Ma1lTUMhsKYOjKC/rCCt27cRUAL4IUnzpNJtYLhRBwLdMzs9CS2Mhm8evGKmbzK + 29wXmjYYbXuHzAKFdoutVdZd8z4znLfOieOuvmJmFwlm5a7p9pZxIZ+Kzz31KObXl5BLF2U9ochA + ivr8eP/GbVo3VYyPxnHj9jV8/rnHsb6xicH+QaRzaRTyVcSDGk6NDiBTKmJocABLa1u4dusuPvf8 + E9LxPzMyJPptyqLzAVqrokLitcu3JXCKbbn4niukV5u7jX/MVFvg7g5WLk8qY7i3yCC0ARO5N0xs + xoLRRBJRBDAzOognTk3jxMQQJvrDKO9s4ZFjkxiLR6H+ILnrWatEPS77fotyl4Xr1/DJzzyDqTiN + QyyMgcE+fHDtFo1JQmz5QYI4jNPHp+An+jAWiCCzsoOEGsGTJ04gQra+6PUuau3uXl/DJ556DLE+ + FU8/eRL9fhXRUPAATOmgvszeFYQAcuGIfeyhk5i/sSD7bn36sYcwEg7LetX1nQwBcwLj/TE8TmPy + 7IWT2FhYxlMPnUWawGp6ZAJqtXII92/Esxq7Snd2dxyaU8KhVOwIKpn6M+OjCPs1TCeIQZPiX1lc + w1OPnMdVAqiHz5xAJp/Htetz+MILz+HpE9M4QrJTLJQxHE/ikckxPPfEQwTygEaM9gytt9GoHxqR + hkqxhKNHJmVp16O09p6cOYo4MdjZgUGCfH6AVch6HK8ejhfLafLnfu3FdKb+cqVWb787bpcmYW1j + Cayac7tRidI9ReDUR5pycWtXtlR57ORRrOxsY2p4BHfuLiAYjiIZFzvbpHCbmJcO5QcEsNwRt0ag + hsyf/rjcGGN4fBB3SQifpoW6ur6FibEh3FxalzsJiXoysctMsVLBcDgi6y5Doo6N5urI8JBsASMW + unjv5t1luTlqIhpFkITybRLiYkVv3n79QQhviNrBcNzQ4iZIyLInVcGxiRFsbWxD8zGM0OLpo4VW + JfDQiIVfvLWIRChKgH0MgRiZ1IqOt64t4NlHT+HV96/iw4V1o0yoJYh22An5AP7Z9mDt/Y73uorr + N242xzSsC0NuhJwMx+OyDjIa9ONT50/gFjGk0dkjqOyk8d33riNPh75wbha3l1ZwZHQMG1tbSJVK + cjfPiOZDOBBAf7QPhVKeZCOMO5ubWCPF97OffQEfzi+QDNYwTIpA7CC0QQxOlDrdXlsjkqF0OVZ7 + jY3e83eYKbQKzXXizPPII0gGrAafrgrA+ucvprO1l0X/noMD1iIBVr6p6w531Gw5M8FtKxLc2Tv1 + /q2vbkwktld7xd5dOo1xsRyKxji4At/c3RNdMc0Fqwlco56x0SjRcLYrjogNv3+ZkT2wGKb5CbD6 + mgCr0YKZO1zXpm/HUXsnUogG+2K02Kpyw1uxka/YvLZ1WgDfY0I6+V+87YP3KhXj+wjmsAZgmZtQ + uK5ufk04oRORMLazeQwMxLGby8ggBnMxFKNMTnd8maOxWYnxmQGE0WAAuVKZxKNuK1VnjW7r4iPe + A/DwPcaetTUvrSCBEgoRYL2AHMKSxKi67cNihyqQcCw0bnfXRLMfwcp2Zs7u2V23xT84WHXjtzvI + gud7TKXTEdtiZ3KXu1iOoWKm3DV6mDU+d7AIfr9MwP2RFd6iuIRz5nFeezrFOyJz4im301mDkeiQ + De+YCWSdZaeb2sxuAI3t78GbmAfbW3zMQ4RbJVUsEjtVsCXTJRzS6xggewt5B7OxO5+aACNAKyt6 + oplJzVZPPI5eeonvxazajSPvYS6a/Yoa44eNDcwrnc0PwVs3Ebtv2fKMu7YpOnwHPjv0s/JO5oy1 + 2Nn3ez5cF2Ph6XxgM3Q4qHxPMqTfcx+V2zRSmkzCdjLDnIXybSTNS/qbj1RagqX9fd5D9ueBxqhZ + Ee3npTmI2OEsrQfSDOnMBA8dq/kPziPd+xve383v3RPhQX3O9n4b7346nB/Gmfd6Keg+sndIa4T3 + +pXG9TXu7K1zSHfEm8wuc2B4OxvhPgsaV+4NqjSV3uiez9ghXocdvgl7X32EXjbopfqKh520+4y3 + 8DcqdkLk3gxC2QNImOvY9ju5tXKyO5NZlbYAZLkHONubyTjvx9muyblXpbV3YvN9MDvHyutP6jxO + 3sDF/nDBvjbbq8rDXfBpuEFkBq51B/dIyGVqvXLvAOLQTNf7cK0fXCvtI5ib7mWJ7dEqiXk2PTg8 + mbkfKSRoA/btWZzz33vBFA9vbFize4mur7k1HT+kgWT3QPMfpr11v8Hz+92vdADZOAQXAWOeekPe + i8B3Ds3zNjtyt5pDzt2lZLwLcODulnEHlyTuZm6NTXX3ZvCcO81N3sUzt1s37BDXRauBUduuVe2j + d7w8qCBzyJrk+zoftpNvsosCsn1pWN7C9OlmIJm9OBnrrcC82SziXZhKrZ/LW2vsZXze8/JDk/3u + 73d/oLXfe+QOwNy72KfdFTS3JmIHvOW9KwH3hEd7Z8YHLHm0TRLo3r6mH5BX07N0I3Ss7alYRz8S + b7G4elkczAE2Tn9O+/vtNlrWOM7TkIozDzNozQRbR/x4izHpFbB4j8DR6n4O4mftxnHPe38eq1Uz + c0nKvV9YYk4fOnYEQ8mITHQOaCo0lcmWI2IXkIBPg09lcksp9kBmuv+tE+rwGO9HZSKze3he9hE8 + y988mdTurTg0tDCv1XBqaoIAK4qs2PSCUEts0xUKB+U2XKjWEImGkUoXcPHanfZJbB9V2kTHax6W + /69HE83+8/uklIk9uLe1fy8us9vFHMRPxVgvyuBBDGLdn3nScEiZo5xbubLNmcEym1ZVMb+1jWK5 + gEw6h4GBQaRSu4hVIsjmMujvi6OWKWCL3tM7ARX3nL9FI70D9W/qhiq6Hq93MW/eW6W5fr2XrpPo + cc+Q+8a/mKf229pdiR+G6B4WC9Ft5ch7Pncrc7XdYLPO8mDnr3aTAe5033jBi7UEw/YmNWvzOz/E + eejtPNweDN60vLTD8Pw3bTPouIjVok7USV28TsypbrSsWN3Jye6CbN3oC7S4sSv3wpA7UIsGGy13 + mHHXINq+in1v7NAMNrx5c66OapGh1waE7ogXc7ZNcuzbt6dniPcIHjhIOHs/gsdb4zm/X6HxXh6W + 79PM6iX9gnUhFd3cB/eAFtsTDME7meW9lNfcK7rcCpAdMutwfR2iSdj64cQmq6qm2J1WuKIatYSi + 6ZriaDYmauUU4+ZVq12656G4E0KcSXbWBpRtBkDpeJesJ73I2xgF4v1qTe8CR4wuj37GXOLifCZ3 + XVzncW5VosH44cR+93Rte4isE7hF9Ek8Q7W+H2Oryx5LnDWz3u87G5jZm9v2xhq78wPy+wI4Bz1f + N1YeO2wflhEV8faAFh0JVJHlq8DuMWRV3zeIrVEOzWygauEQYIpnM03uMgubmVDjb511y054G1LM + OsKbzM3Re1g0tSrquU163ipsQ9oRYubduOnM/BtXWLqbWu59FmJxt7poqo5gLY7niga1b4iIc3Bf + C/l+2LJWjtfhd+m+13Y6u8f3dlAlc5iqsXGcdk9SRXlD8en0n+jL5DWkDdeT1TLFzLNptblDyz7e + bJ/z08MGE06fCzwMoom+ODdU6Mbfp6NUykHRa3I320byXwemZ+4gIsfU7I0vWs6Iv+smkChwJBJ6 + t363KvO9c7T3bLYdy47gR/ehqyr8fQOeczKzIfL+/EWuvxnfx1Jjzbj/UUcDzH5CzGyvo7MHJTrB + 7hFAdTpfo2eLbrsVhJwLSqPuzbCYQ4j5niLhrg9jLiLEG/TGanVhRrca7VEaN9tYWMrBtRKH20HZ + cd8o1uRzaeo8zbnHh6C4Wnx0y1YE+1SGB2V/826d7ALs2PY2eKUETVNd22UJsBJQUOdGDySfppGZ + WnNseGHl2wn2oziwtjVr2oOaNHY6a/XszKifg7Pdte2JZz327meHuNQevFAlM/dkNDpVHWxXA8bY + fQKsewWMhhzbZjJvhPJYZ5OQI8BUPHf+BMlcDS+/fwM13RhShbXondNiTznvIlQcmzTC3N3FXf7K + zUZiDXjkB2rXuh9buYtz0PMHfArqZAbW6ugJrJzMTSEwHv7v/2cUgsN7lptwUxBVAqrs//1vUL/z + Hp598nH0RYLIZneRzRRQrVcxOTaKN96/gsx2Fn//538G3/j616H4A0jvZhCORTG/tIQ6c6sf5wg3 + b+XUoh+CY4PiBgFunTbMWtBvsTFJvabjb3PbTJcFr8MZ+TtIcJv9IGQ7mExH1Z1Ly0AFrd2KGkn2 + 4elTRzG3soqnz5/CL/7wk/jTV97Fn37vBsr1Ttyhfb770FASOq3wrd20YXnZXTKZXcEtesCHgwGU + iiVzJ5FuKsLu84vuM94Xx+TEMN6/fJNYzP6kRD5//yj04JgDsBwhdkd5hwUqCgEWU4Nyl5N8roBP + fPwJRPuiuHH9BkL+IPyagmg0gssfXkNf2Icf/fxLKJZryJeK6Atq+J0/XDV31WnrAjZZk3uzKW7P + BWvNw1q82XLHMzro4xdO4O//5Etyrlt/g/2NgjIx0rlCjhizX/bp7zXBwjV6PwjVFRJ1VdzKlPDb + b2zS72G0cLo7TDlCh4dmp7C0vgq/4sdPPHsWyRDwm//gx/DYiXfwG//hvyBXbMFXWIu9Mc0PRH/y + c7PHcOf2HB565BzKpGWHkjGUi0XoZJ6IHYKz2TyiwRBOnZjCwuIK3r1yG8ub6UOOxx+0nY2xmdTm + 1g6G+hM4SeN05cZClwW5LrVqNLDlDqtOTBP9MhUm5hVUsU1Ac7dYR8XYR0UyVMXRHfLanXlU/6KE + ZDKB5aUVAqgYwuEgNkghVGnCv/z//Se88PHnkM9koPk0LO2kUK7U7P0hXW2sPRSLm+12Ld8is1NK + WrMxT0Mn21vVxLJp3o9PjOBnPvssVAWeVjncs1HW90E29yHkDIuvp2hugiT7kVDobyBktx7XN5dS + +K1XvynajNr7N2ptD/7gOl569Cw+8fAs1rdTmMsW8Kl4BP/1i4/hy996B1fu7EqQgcNjxdq6cQV7 + qiPi9+PY+BAGwwGANIleLZAAV/HYw4/h6s07mJkZkBstKHRbp6cm8N7lq2ZPavWBckKKtASx3dLQ + QBKvX7x0QHltaNNBeswvjIfxcFLFayu7iA+E5OYDv3dnB6s8bLLRxvE1Gpu5lTV8cGMOgYCGcnlN + Omyt9BDh7/rPf/V1GcFUSClUhekh93pztKhmBkgENB/qxLwikQjyxYIEUZW+I94XlQiaz4eKzKFr + 5I55Q2utYiV7O24b0YHt7R0USYFtbm7KW5yePopkf/LBTurmhyVVaBPt/huNWa5/OVyAxVz+kmyp + hj979RKxiBj+7kvnUa1WsEkU7a/eeQ93loj1yHyqVo3m3X/pzNr5meMvX3kdPkHfiG3V9Lrpu9ax + kKnj2s2bcodgsSCEwSLqC6u6XDXGdXS2b3cgb+GD6pZptTJaDNNVwVuXrtBiru+vNMajmRU6zc/N + xnBtZwur+Qj+m6MJedq5TAU/fzyB//NaRqYHWHs2ijGZmZoEq1SAEUZmX1my2HKljEwhD78vCB9p + pmCAvkNjXKvVJKsLRUIo0jHbxBBHhofho/HN0fEXzp7DpXcu4YUfeh5Xr15FsUQmOR0fJ/OyXq8g + GoliObWF+ZUtc2LrTczX6z/ZOzXDnZJRomvu7OwgR0xbI6DMFwoGYB2y+dVkAh8Gi2rXnqGL+3H1 + 4zogY+NdtSB48E1k5vSgioWgGLtba51kSXztS1/5Lr789TclHRPO2orITues9bi6TASj5EHx+SW7 + opVN36dzcGsrdcv3rODtK5el0WNFssT7dc7sDEgj3OsBIObc4ZK7dzluqt5hHqOjc5Zvu8R5I9Cp + yGdL75Q92lGReUddQ6nHZB7xMZxOkCmoxjBBoLJZLONKuYI/WijiudE4pkI6bpV0Yyt309iqVmuI + ErMKBgMEXkdRr9UJk6rSXC0QK5ohhiKAKkMmYTKZlAsik81J9qIT0D700Dk6dg2nBk+gVqqjWK1i + eWMTE1NTyKYzUH0qdjdTGJ+YJDZXx9FYDHdXNqE7djhypyI3uyJ6yUYa6BcMW8OxYzNyCzTxI6Oi + TRHq5nmyM8W9LM9jqrJuNn7wXmmPvFV7HNjezm/b8SLWEpGAP/njP8GZ02cxNjF2SKzkQUgAC0D0 + v9E4QACClOuVK1cQJgXJfRHTl2oG4zplujMH2yrVqlI7WxpAnoS1b4zfSADVETt3DNjdQfq1b3tI + krNxGpPsijlyoDiHW2O52g03MnkaBpIO9zZBnpviXTJ4hubua3BuLW5unc2NIIGumK5oLQBtcAqi + sGg/jCtCgCW2XfqJqQQubqfxa1e38NTAEH7rmQF86+Yqjvg5bhOoMN7YPubOwgIxPV0++sT4BFaW + Vog1DSGdzaBALOrm/JI0210lMlyXibyC4X7lG9+UAqKYaQZi/7/vvfWmmY5g5nTRvH84P2+itaFW + rNwlywmvO0KGzJGE2V0eduOo0m4RyHDkd/NSFjT6L5XebgIiJyi0SqOyt6vydmC27ppbaQRwyTFv + AkS+X4rgWURO9kXPFfYhOZ7ArdtzePzJJ7G1vo5ivohwOGLIMVMOnk/6Ue4rsG+bGEin0xgcGkIu + l0OBGHejWe8egGWdSJHbQxMzUgzKqhqbane4rwaNE8mOBiApxm55nNv78XE7t8tY/Azc5RthTIEO + pyY3aKLwxzDF2G+tIQeKnfkNG1g8j8L0fQ46Q6NndoOlTQ6PoE4MZ2U7JUHLGJX9v0RubY2e7Ua6 + hCLXcDbuxweZAn7/Th0fG4rjtbkNGgJVeq7s+yCwGRzqx9bWNhbXVuQwbGyuY2hoEMVU0dznjpvJ + qZZ5bnjvI8EQCsWiZDTxcEwCg0pm/kAigTwJS8ncOouJc7BG33GVfg+HQ8jlCwbQMW5E++izwYEk + NomRcdZ7Qqj4LbudQbQvZvtGOykZJ7HjaOyWY+eUOYDdBlFX4TVvokKcw7MvID8cvuLUfzTP60sb + ErBOnpiV5WkzR4+SKbzb6N+139LUjxKoDukVT8alu4XzYaSWtuCtN9HajcHRkX7M9kehaFwmHybI + HKiTVi6R5n7lyiIJNNtbCB0C5afFdfb0cWIAA1hZW8Pi8gYuXHgYV27dxFZqBwG/H34yQTK5IvrF + Vu2KD/l8HsFQCBPEGnbTO7QQ/HQfISytrRICF1DjeoNYdajhlgtON1iEtwsl26vfurclrXmJPC3Y + L/zIj+Br3/4m7tLz9ByCdhSji19WiT3leQxfW0/hj+7q+OVzI4igghtkem7T+F/PKVBVR0yP/jc7 + cxSnj03Je0xlsgiS+S3eDwaDKFaKCNG/aTLtfP6AXHyCZm+srsKn+qDTWL/7zkU8/fhjiEWjqJD5 + WSOQCpKWr5I5WRY+LLqUn+YloKpkYpbJRCTzXq9JJvCNl7+D2elpTE+NS/JbFuVGFTJHVzfB6Nzd + WQbchT6+IM3vWBLrqQ2EaN6FTAjhFQxOyKAUWJ9P/ru7u0v35qN7CdPnujxOsHRNRpxVYo51OUcC + BGKxqDwHrxvgKnqwCaCGh2E152UcALA8MincIjUy1zOFNagpLnOvtlMpO586m8tjNByGtwuHXtft + tsyK0pq566bZLI6rW4zZozTq9ToUVWkyGavCeoJIMvY1mWbyeh7GJs8jxvgQ/G3NbkCOUrEs504s + kLLwz3peTWkNFv0qVmpIFUQ2NUONBq2qF2jw6kaedMtNJZq3bLYzd7hxjs98+tMIBzTcvn0Lf+cz + n8HY2BCm3onju6+/g+TACMaHk/jWt17BT/+dz0nGotJC2dnewuzxU1heXiGzy0cAFkAk4Mef/Nlf + 4sbSshkVdw5es/OTwZFlbwIU61YlMdbSubqbydG97eLo5CSxm3VP1KuLjHFXqRKND4HRl+ez+NRo + FE+MlvH6ahZTUQ39sQD+48IOKmrQ5A8mM6Xv7+xmcPn6TVIqmmQ8flWTUULBUDQamFOz01hZ30Q6 + n5PAEwlFSZNvSTNP0O5AJIL55VUZ4GA03+OTR3CLFIgoRGf1GimOQVy7NU/ARyChGdn4FQKzaCiC + vr4EdrJZVO8uoUKmrD8QQIEUjC5yFUz/Y9ey7K7ckabS2toGKqQcR0dH6fc19Cf7ZWa/j55jJ70r + RyJD5kMfKdJQKIgIgW5mNy0VnAC3DN2bAOC+vjgBXwD5Ql7KUyKeIICO4KFzZ0yl2mX5SS89B1t0 + bEnl72Iu/R2MRU7Se0PSt7i8siwVqZAD8ffo2FgTW7q7uCSBWcz14OCAfIZQMCABV7DZaCwifX0V + Wtwiwko4g4H+ftv3J/yQyUQcr7/5FjG6E6hUqzIQU6Jjx8ZH8eprb2KaFI+PrhEh5iwCH2FSdGVS + YCVSQOLawkfqI0WxtZVCin5EICRBTDyTSWNsZMQG/wMDFsllNpOxgSpfKEvrwJgnwxWvtfPSr+6k + 5Y/KmXtZd6iZa5pThxDq9FB/9Y1voVYq0A1VcWw6JU07AeIpWviLG9u4fkNDmRbc915/G/VaBUEa + LGHyXP3Lv6LBHcbSogEMw2TyrO9sO0wP5klObO2K5LDXUoeNwzu302Kmv+fM7DESkgxefeNNcLWV + c4X1INjGZMyXdHx5roxpAVQBWri7JSwu1VHQg2ZVkaMKj66xTaxze5fbJluIgFyYqcIpLgR3dXND + piLIL7M8/WzDr2io0ELezc/LcxUKVfmvj8BgmUzLCjcMfo2AZ2ljy/AtZpk5Zrq8503sSvNRKSjY + oLljOrfHVkyorGjgzMUk27OQZoY7e2yagCaGNAnv+OgYgUyfZIvCryEYxBECMRHFHCU5EItlZGRY + XmJRygaBAbHAYqEo9UGOmEs4FJYDIuauXKTviXIo65p6B4Ll7Oe1z7C0pZOS4UkCzk8hogxhXl+2 + qFEjoGCa195XqVSkOd4hi2QV7753CanNLXzsmackAL/6+puYmprE7OwMrly5jFhfHwF4HB98cBkB + n08ybTH1jz/5GMnpW9iiuSrQGIpr9ieT8vgE/fvtV17B+uYmzp85TVaOJseqSOMk2Pb7H17GeQJ3 + 4Ru99P6HUjGJsRXgJgBUsKGjU1Pddq3ummlZrZdspmj4J9r5sET5DdAq9a/3hp+Nc1y6fl0ipogf + 3iENKp5A0HNBaevE2qoyVK7g/Vu36SNj4bAbTC5Adv2WnWSo3F6Q9XKN5dsKB1pvA2/50FiHjRN4 + u55mtj8LmFtexM2lOdRVpSMAth2VFg3VpOOb/r2ZJ9Ap6PI+FK65sjGYtcLo9wHSnCG/Jk010cJn + gDRfLpuTAsXovjbWNjFMgib8UEKrJvoipMFyKNeNFAdB+2t0kQrR8OPHJskU2yStWqdzZBGNhKW5 + JVILeLVOmpbMy2waARJUYT5EiNUIoX//8odICvZDAGaba8SAZDWDDEB0T0XKuTKW3l+UizcJWkyh + PrAMwyAbIJsTCGthU1/S/0cak8q3jH+PBMk8JdM5wIlNsrA09wai/VJKYsQKBcgKJuPL+LD8wUpX + vbk4d/jFWvBopwklvak01jUaX+GbYmbhfAO0iRXXNlAt1prKudotqXFiXddu3MTZ0ydlyody6gQm + xsdkyolIBh4igA4SiAigEeAdChrzI36/efOWaS4CX/zCj0mLYHVtRX4m8ghFknGQlNwjF85L8/nI + xIR8X/gwxdBsEpsSicdDBEy5XBYjpCBmj89ii0BTRJ0FYEmAu1fOeKfgd24vw9vWx/G2/VmcmxIw + ++DS0jo4Uft6bBSKo7zWitLUTWe8hB7m3TzTw9pMp2hdmkRwmVRuy01HG6LXs7JsfhkRnKKJOqpV + jqT40PtGk/Qcoj20UnZESK2Wh1ymknDndcWnlZLtV4vGojg9PYWFuQXMEt0XWneEBDhF2lL4cvRM + BUP9QxgYiNFCraNcqiJGC6BYLdN96yiRKaGofty6Mw+NhF44zVPpPLHgMpmTx6RZ4BsdkaC4urJJ + 58/h6ccfIa1fRpoAKRKh7/SFiS1PI56IkvYuSHNyJ9GHdOE6sTveExM5cnpSuh2cjLm1j8nre1Dc + qS2sTTTRnYeytzCY479IZpnICxNMMkbML0emb5bMbFGeJZJriwTqgv0JU7SfzDFhjmZJcQhAj0Zj + NDZxGr91aZYLkyrWH3Wwr85j1Ecs6KknHm/5mQAu6xlECov3VIKZBoJBCWj9ZApPHZnAhYfOSpbq + F8qFFs3Jk8cbzSNN8RX3Lf6empy0zy9MztOnTkqwO0Gycf9fihewjGgeP0CBcKsckOrGjjynGhuw + gZAxuNoLWy4oK2WmEfBzCK5VS2fpN+/W3hx7aqt90VRvjoRJ14QWE3S4plutcXhTPWC7MeIwuhhw + XsPab/wKmZT+xkM78src2eLMNFGIeW1vyyjqMpkJy8vL0uF8e23d6NIgI3kKTs5MY6uUxcr1Xenz + EKaaEdkzzMma6RETJr+oQ371jXekSFTp/QQtyg+u3pSMSnwmNgupmcriK9/8tiE45rhUCWBWtt+W + C7VMizgUDGOTTBh5ftGg0TPAwmWjs2YdJ5/QR/zbpxxIA3NPfh1rW4XK2tv9jtcWjfV3Xv0eRsfH + ZYdc4dMZIRB/++23iZEckeAtKgEiBEwCuBbWlqUfTTinP7xxjcy1Y7Id+M3rN6WPSTDXs/HTrqaH + tnNb3z8JaRlxi8ddfwv/l5eluExe3v78AmxxON3Ue3p5S9e0ZgdU767/dv5IV+EOLab+eEQ61PKl + SqO9MBw5XdzsSsCMtAZHJoGruR0cOTatrs3R/D23fewNUrXeK66RYuEwCZgRdBgmLdTfH8EH125L + Db+f8kTpE9pc94ThGyyx1TboTvmq8sY4yRImK6dNJN/dvE1AyGRmfLVYsu+9boKulWhptK821oou + myrq0pmucKNjqJgLWXHADR9C3RyPsm7Om4hM0Xc2UlvykF1awFZaMGsjFN4Nnw5WKrpXIugeqZSs + I8GSGf6f/9xn5T2KKFudQEuYQ8ODg4gRSIl5EyagMAkFCxEMRNQEiuMKBGAC4ITDWigQEZETxf+h + cAjNLZua7JPDSac4LIC5T0DF2zl2zGfR7v0N6FKw1UwNP/Xjn8DaOrECWqTJoWHUK0SlyZ6/cmeB + 7Ok+DPQFcWN+BRdOzuKhU9P44PIV0roBuUjKeTJPQn6EfEFkiDkkhEPw9gKBX60LBx4OdIx37zYh + ZiIjXKRozMyM4s7cZvcORck8FPgCQTIxNDi3o2iAJ2/hY1Pck+rZsdi5KaZkYTK510zlMH9vsFKz + WZy8iu66B9UBjip3+tfgTX5q+DctJqx4Ihsyh8ubV8RlesyHG4Ilama7bDQnE7lKG7xVCZ1S6L3N + sg+w/LkV4DAin7xmlJWtbmelrl8jxuo8Vla61eiKuZL5/PR8VfpOtQzFqbwzeeiVGkSihqbUDdCr + 1e/l6r+/r3u4iZTW/hrdX7Vzu3wzgx2GAIujn37kPIaGBrBwdwmnjx1FZmsXORKKMGkmjf59+tGH + kIz5EVNOEo0lu580lVJmmDo6hGqFI18tkenhx53llT0B617NR4DAM0j3kF7K9f59eiZfcsJhynD3 + luPMmYphh99agmirhm2c85bT12qTkEYFQQtQaJrdvTMUuV2jKZoEEjurt+g5Q3O8HYyiSovf2bbG + zbsakSJv6214Wtw0Op86uqcxA7oU7jQVeRvhZS2gDoavUCoC1QB3pruGhTHnfgJKY+cbs8zMzfCc + +yTpUJUKAgRoGjcKynXO/7bwuYXi8Yq35jR1FLNkQfztM/LbIfKdI0Rph4n9WP6bcqWOdTIbdChu + R2gHradH/fjGa++QuZFB+MZdWfMmjJ5X3ruBlZ008jWOpY2UnLS//ParBEQl6ScJ0rV3cjkENR8C + l1Q8c+Ekri4sIZuv0vvlj8T5J8YoFg5j7u4idkQZSY850eK5K7rzO8w9fryV54u5p9LW/sxmVw0m + qHgWDuvg7Fba2NKHoNW5Qy4cpTF2Nwnr/p0p7azxGTdNXMVupe3mo1aMWHeBnGIHcRh0O+WDo5ct + 560xUFys1FUv6OxE6dmWuOELdj4Ws314jAbASAJV7O+LOluutBn2LvfkOFSNvK+J368juREA8X5N + cXSntbs1eEv8RA7OP/zx5zG3OI8/f20eX/j0o/ifvvA0Fu+uySZ8+WoVP/+bv4Ol3ZpZLtIF26IP + 7qytyUW6nS/Z5RLryBlL2OzRJN6/S8AlF5vlOqGbTou4Nn26+fol2W1ATPr9Z7yNkhGRfyQXRVsp + 63Jda5qZbd/ddksSk0QkjdUdTKtRjmQDl1nO5O7YyPcHPAcySdybEzKgNbgLn5loX6NXkU2nZTg+ + nhyQ0TYpH6LoXlFl+xvh0BYJjjWSw/6BAZn1HiIF4g/4odekE0JGwXyVElRxbDQCHEaLIn44q95W + Ipy5mWmLV5We29sgsm3TAX7Av3vyqh/A7uOsaSNggTmasvdC0pqGgU72zEPH8HOfewy/++fbJPxF + HB0dwInJAVy5fAuPnJuBP6QhSiYRdnp0znPn1Hg8DY4UBW5tqcCMOkMn+SiVqjhAWeohwZZVHsPN + DQP2V/EpcqU++4//EUDmUb2bzDtxqXIdF7/0+0itLuD8meOYu3kTgWgUxVIZ4UgQ8WgY6XQW5arY + /KNC8xS0N7kVyaHFsgh6lO9vZ8qWGbi6y8wVtZ4Lt4ht37yFzE5KdjJ49qVP4c71a8hmdtEXT0iQ + Eg8jUgzGj0xgaXkJTz37LF7/6tcR6YvJnLPt9U0U62U8+uTjOErPG6LnrgUDqGoKHoRmgO4t2Hij + 80Wbe8vrdWzX4GbjitOPqbRMOPX6OluDTKe9GTodyzzgttd5G38rvJV7vQ6hUpJ2y6puAMvsWRUL + +PCFZ8/he+9cNfir6VsRZWz98aDBenTeGuZ55yiHUaSq225cxUnVOXP4IAz6rTt8FzpzdMhpmdl5 + PyDM4oA6+iIhGR0qFqv7ujI3e9qHkknUA2G5E47XS8Md/i1VslCa0IqRlCg+HR0cRHFlCS+9+DiB + VR9UkobRkQHcWljGN/76LQSHEvh7P/k5rK+uQ/WLBoB1rGVy+J0//arRV4uzrrVlL7DcaUa43RC+ + 2WMzMjaGvhAxpaAGncAmOTAomwmO6hMEWHH4whFUKlUE/ZpMXpyYnJZBmU/88Oewm9qGT9EwPHlE + JjP6oyGUND/Keg01TcOD1Lm0uStE+7tj9ExMdRrAVuJzOz+jZx46NFnc06zrll22Eo4216kpsPco + dQViVKOkTJRSyVw8ks8ozzT8seZxml09KACiVscnHj6L6UQEA8kRjPVH8B+/+SG+8ur7QDGHx05M + 4q8/uI5XLs1jNVW2mYanFKz1wFXr+Oxzj2NjK4XLc3fhC/okBcyRxq8T5VXFzjG6CB2LjgwVBOmG + Bd2X0Tha1P6w3ywyZlI516w9r+471dLtjao+9uh5fPedSyiXe0+gYY7CWlcGuy1YHH10lbP9YZxO + BtDnZ/ijW2tYqlgAzrFw9y6O0AJdXtlBOreEFz72MC6+fwNzxDI0v9gxB3jr7cuYGB/G5Q+u4Myp + Wbx16X27HIab/hRXiKTFDlrO/YV16XhW2kot6wBYlqnaaP3SkBzx9OFEApFEUn4klJXoqDp99iFY + KR4KV41tsEgjT/UP23KnkXqO9A851KLhbqi6HWMfOUhZ6li1fZJm9FEqcb0lHaubeWuNtBXDQ+Zx + FLS0AoxOHe7ao723EGNt326196bdcsqbC8lYE18TL7XFjngSk4RfT+znYLaIFi//bh66g5EJoNbg + 2J1GIa321bev4JvvXMYXXnwMpWIWqUIVG7eX8d7tRUR8fsT7gljZzJoV4XqDqvLOWSRqUUd/fxIa + UdwLp44SExjExuoa4ol+/OevfROPPf4EpoeSyJCmTBWLmBAgRTR+t1DG7Mw0bly/jMLRcWjRAOaI + QbxxfcGx2O63H4sRQBSwtrWDY9PjuHp9sedFwVmjjE5ncESUjBE9EQ7ii7MJXNraxZ/dSeMz0wOy + h5Vo8GOkPym4cXcFc34fKuWqzPVZzBexuLyGijjOFIyrS6tIRCMyiPGda7dlobJGKrtqgwt3bZHe + XIzVyBeSwRixdZi5iUWjlYth4okyK6v8pXeQYNjZ2MDm6ipOnD1r3J3claguC3iFL8fnD9n96L1L + lTs21uUH9yAfPmDRmJRyWQnKzTSnOQrs9AFaJp9ivmevOtZ6lyJmRi4ZazbxXF2WGDuwZ4BbWQC8 + Owi0ClRYE+i2AUnPUZqVWyPbGIvGbkRzhDD/wXcuyjPXDT4qhTNfrSC3XZPUzQrDdmOQybBtQBTa + 5rCZy0Mhyp8nap8RxdUkhKKOUOZQ0t9X3r+GyZOz2C4Usbm0gqkT0/jLV15DlL5Tr9Lw1Coo0gKV + EyP6YrXsHHFvdaW42siA6BLgx3uXF/a9KJwWWZwYpsrqckTHwhoeHwpgYSePkKoiqhqm9E5NMfeu + M+6jLxbC2aOTmF9eRzIZl5nMU8ODMntEtJTJpLOIkWkk5itPSkD4tp4jBr2ZTqNY12Vbn2g4LIuF + g2RaiXI40eJHtEQWD7lJ5qMoHA6okF0SxCtCpvDS0hqCxJBFm5pAICBZcD8tRNFOOUfXWVhd78b+ + 8GhqUk5rG5i//CEptZoEKjBNBupKdL8s4MfMuQsIx/ru23wfbt4lx+0PPsDQ+CjGZ493aW1ZlSBM + lvSISLko1RHdGXyBgG3yGZFW42ihkEQXi5XlZZw8dRLhaFhm44skVtGRVrCkakUEK/plS5t+kpdu + 9zJsmWDN0fNGfMxjqTLWpsVTi9IlTeS4aGLBxAKSsfhV0f2zahTekjYvk12hkWCWSIiE50Q4cUVv + JL/QpHURntdJcGlAcyXUoKJd7rke0PCn33nD2HL+GrNTJPi7VyVQrrz8GqxElotrb0l9MtAXxdVU + Bqv/P3vvASNpmp6HPd9fsaurc57pyXFnZ2ZnNl7avTvymI53JGXKEgXRoEDzBAK0LAfIsgHDhg3Y + gCxIhg0YsgSKsmmS4B2DSB555B153Lvd23AbZnZ38nTPTM90TlXdleP/+X3fP9T/V+rqMGGXqkVv + 91TVn77w5vd51hK2L6vclh2ljO3zAe7ha5OeN3l9elf8ek5NZcw08ItPDWElm8UBEgikNvD2Sgoz + qSIuktX5i6dG8Ef3V1CSYpNaEn98aBhdZPU+ffwwTLK1Q9y719eNKgnyTVqMk4P7yXsjBUTvF3MR + pFNZKVplkL6Bnjjez6ZxeGJEhN3SwjLJRCVwJaWSVaFdJauAkRF6e8PCaDRA7tri+hoOjA5hZLAX + FVob3PGfS6dxYGQI4YiB1Y31xgd01Jav9MK/Xfn9cHcMcbKsBViQXFrubZybm5VnHhjutzKFWu+O + t28bEc+9XFkBEjbHzp7CO9/7PsZIyTDugIPn7tTdqRbxPk4Iv/vm2xjo65FG5CVSEMNDQ8jncxga + GRFkhZ6eHmnFuTM9JdAxizMPMHv7FvbRtYZHRnH73j3s379P+CkZZ47xxhhq5nPDn4cK2MEdEmg3 + rl/D4cNHBFJGYKUY50xbzMsLZK3vPzCJ7p6erQuyO4xpOeEPbQdFlCeBqLyRTm2BgjJsEmlXhS9e + OE6St4RkIiVQvcO0QIZp82QKJdxbSeAIaYZEYg3D/UMCp8Id3QP9DAGSFULRV6/ObNn6q+30hh/y + VtXYlT1wMTyB62RC67QWwel9iicBVLFQLO/K5VBebF/p5yvh2som4pMGXnuwjgvjIySetPQr3two + YSqlpICxxngD3CVL5h5ZobFISOCNQxyMp7ngQDN383eRm1jRFusQXylHc/nuzWlp0rVA+UrYyM9I + kDPAwV0n/6ErYq3lCxX6/L6061RLVbKmFuhYqzJ7bjVp9VEabDmTVr8zI2BzBad52c321tnayhut + 89sw44cOYmz/OFkIG4j39pEAjKKHLADm6mOl5o2ZPnITaZevKnknt698hPMvvQQjGGVyBNdDURpN + n8vpQuCm6xhZVNxi9eGlS0KYm0mu48HMDM5fuIA+El5XPryMixcvYHCgBz+8eQVxEogD8R7M3Lwp + gigUDJMrX8ap0yfwYHZWeD8TK0mypsskTK0aS5PWxfTt26QYqpLUYKHVRVZzrLcHlUIBczPzAvbI + GdmtJHq9QGso/fUoL+0Nk+hWZWeW2xw0aEFnKsBfXrqFSDAowe+1zRRiybwIII6HxKNRzF6dttzA + hQ2BMgkHwsjeWRRIEUYGqDj+7JZCy19mqV0E5NonDiCE8uSAnWr5J2L9qVppg3ZrjcwtXCBdw3/y + BN757RKp0ABpgZ88PIjfubuKpUIAi/eT+I+OkrVRKeBP7mdRUUErNC1xQy1xL0b4HBvqJ6tmQzZ3 + lizfalW71eFZ07JImJJH28IlXSjKeyNkGbGiyRbKdjC0iFE612IiaS+aiqAxBEJB9NFiX8wlpHeR + 66MYkiRNwq/KaJhkzTEAYJiEpqa1YhaZHMNqPypXqw4PeweSw4TBzbmBLgyMRu0QBSQzaMlotX05 + pB+u1bStJUPPdv4zn4cRCvl6ZLfOSVvD9/yLz4snw0YFwwlxprhIQpCRGFLpFLq645jYP0lWdFIa + lc+dfAovPHsR71+5iirt6b6xfYh0WcB/cXGrgVNPsSUdcbsNeK6PHD8m9zo8PirzwVYbC6j792Zw + 5ORxhLiRvpPnNeyqAa39QsyDcdWZAnKqBqxkj8SwuFl2I0duoC67adNCtuAeksqXPeab5QIpbX2u + chXJWHWSezCUhWEF0dkOOafThuKYhHYVFkvgqlNQWiO/eCLkFd3GGFmgse4Q7t5fQkNRYjPQMNVE + aNlf4yrn1XwFh7qBOC0SLiV9abwHJ/oi+Oa9NdvV9i5ia6IPTYzj6P5RZPNDAiWysLSIjXROhMXk + 2BjWFteEFVrZapwbz5fIeunr7sXk8ABZib0waeFzcWYfufoTY6P44Da5FGUTxybHaeGa5GoMIECa + ed9gjzAecWxpgNzGD+/cxb6x/cLaw/VRvXT9aomZbiwoXkY/fev6FKo7ctuVm5Rw/t5Nhv2JWDOM + jxUIOBUdnfuu9npaW18lryYlaBgCakRzfOzEcQHbGyQFMjQ8Ihm1nt5+nDlzBv3xfgmbsODgZFeM + 5sy0LRtO0PCLUUNNz5jyvJ07f75JjFXh7Plzdm2k2pZib2wPU3XP2KzWoIWaUVzpbgettU2q2WqD + 1tLdRpPAsSV6Kj5IFP/1jGwR//Q//yW8894lpDIFi/l5qBcfTt0XZteeUIwEZ1liZKdOHML8g2Ws + Mo67nfPmc8+ubjwBWR8LgHBlfQMvTj4lPv7cfNLP/KxbAMv7uB9rcxaiMR2Jh/CdO7P4kYMTZJqX + MU/W0rsrAhTtBlW9M80OEmvbBFd5k3XFeEscBGfqr55YLwmhHAxayBz/GxkcpO8WZEFGw90oVUys + JtMCQ1Oq5jHQy0WZOcwur4hyYLaSzVyBXL08utMl5Gm+uG+Sg/kci1lJpMSSS6Wz5KYYyJJyy+RK + dB8hcTMY0G//0TG6x2k0g8QyLChJa73VAVWpurq8BkHmE1lNoz5PrPDyAnI47h5brAI11DagonD5 + g4+wQgqJhRBD2URjMRw/ftxuag+6Cp9fR08+jRtkWU0tvo2hkSHEh8fIfTd991BTmLU3zDoKIn+N + p+FvurcLWLdSIspQbV3FmhhTUlSqvOUubjNhTcwFvSB4LRtaVefKoFVwmQXd8moCF55/BrFwUEDm + VpaX8Z/+7Z9AOGTQBqMNVTLJjSliYt8kDpFW4CyGSe5SlTR+jHzzf/W7fy4Ero+by4jnKRSyho7d + op3eheMO8xn+/N4GfvLQBJ3QRF84hDzt9CFalLOZHJohU/IUzq2vC6yxc44IWTWc/l/cyFtb216A + CyScLM/MhlTQtaiA5T4uN4iBK1P3AQ8fJN+rk14w7EWVyq3ZgoWuRtdwLMbV0irmN0momY1lEgre + Gp36Cj7taRtWbiSs5jS2C6HrJs7Uk2tx1RApOiFvNPDln/qyBL45IVGqVH2lKKan/k2EjhHEmQsX + RcFw3VW5arqhlobx0M1iRVtvrwZHTnVCSqwa6rVc+YB6ECU/IKi2V0DQfyEDO0Pp2opFWaESC+HP + 3r4ktVWMYFkoliRI+8GDVYmvcFyM2YQzBcaSvi7VzKmNtPj7F8+cwNrSmsfS0HuwUNQO21Msd7a/ + v4cswAQWl3dh9TmNuczwXCjjGw8ywrDNwfPxaARmMoOFnKXVtI/G3Kqz6WJiCRJuHLPg/sqDE2NY + XlvDWjJrZ11qG0L7NI8BF29L+yF865eid4gMT1bHhwrqBvasvzj7xJaeboMIZwqsTMA9ju8mS+sh + UdToCQZIaEMyQk5bpGMJcPihSBZiJBCC1T7MbDTaLrWx7lFCD1yIqI2WXsOT8hKIcKgttrlClHHp + 6TkjHNNrG/Pyxoz8DfK63vjYxdDUlyLoFrFC1TSO20oAbk0IEnw0+scUw4jTsZLtUYYNIleTtlYp + lmk7Oxn3Mx7oxLtXhbZKq71wBzsNAreNsGCZXB9ln0upHYl4azFykSVvbnpjreJA5VSxnq9YkErK + Ej2OsJDvKyvdfXhiHLEAC64IEA1iMB7HoZFBvPreh8iUOoGSrK8M6RSuQTXMb+PSbN3f1lhjbFkI + K4USerqiuEUCtzcSw0SXwnypgs18WQLAUfrJkmDOkIXBmPLBssbF4SjeX0tL8DldKkv2k92fp7qj + GAvsOSTeXuVs/MJFtwvbmILD1UpRa8ftchSa1nYDiNPk5oXR9NfTG3s5Li36i3zZcOg2iRBa4UGj + PtTecJGgC+CmzIc2QTUkDjsuoas1O8HFFVIC9es2MXiQUtgMbs7Woz0BNrXNEKza9ZJzEhA7HRM2 + Cd74d79Jzx2w5ahC211ut0dsJpdF6N+dX2Y5RdZpQCyagI03liuZtvuva3jnWyyF3a/WbQZz7CyS + st1AdjMHyKpOFIoYjYaENYgrlWI0t9EICSHDum/GMx2LRaSgtFvwpECCLShZ6q6wVadWVEGEDTuJ + U1fcvLXF9XCEm9L+6JDTSQvdupU/QP/FGPwyoLdcTdq+iKr3lOuYrbUHydZ4FAhcauvhlQ4KZbhK + 2fTYFfVPHnw0KRbVxtz1ahPVqJ91M5vz8WtNptRiMkzGBtvpAubnWJm6I7jqFgtQG6dAeXMpVmyJ + A/5cQuAueRuvXdufq1ZaWdXfR2vTfofsVq2Xk66LQHvuYThIVmIwYK8Kq3euNxay++2sOj7FjdHC + KB6QDFnArOA48yYK4aodJ3GSPy6lm/ZZGdt6iIewA1zwxQ6y3pxtZXSUTuOhSrfPtdXP/ccNMjC4 + nQHXu5gsZt09dnAcy2vrYs4vr6dgktY8zDRUtDhnVzZcPHeBDqSRHe/vxYGJIWkZUWZVQPsSG5uo + kMZJpnMdxKEelrtrIhaN4KnjB/D25WtC1LDdXHXA8G5cbVlHaksTtYZS7ADfeXoSfb1nyqs/vdlJ + P/yyasgMqS0Flmq5GTwlobbVW9W6aWqbkUAN+36MOm4gbZPvatv+MtyNZVG/cWwK2nTv3WEcMlz6 + F12rIqlD8mwoK9CPas00GUOeI9PYLah9x8JHNVFQH7dX0Jej0e2lt3+Bd16Vx4sumCnj1/6Tn8el + 9y4L8oJBa48rpE8dOYDb8/eltf5773xApn8YP/byi/j9P/w2vvTsM/ir197EF37ic9hYTOIrP/oU + NlbX8caVabybnoZV//Q4dIRCYjMlxJTnTx/Fpev3OhTp1m4JCE9g0DaBNTqDd/HUbvmQFZQvtuYK + HU9gXHlcg07u0B/uVS0/bZhlz24QEgttlUg0XLNaRWxlHv6GlFrtjJs+d9OYph0nVD4XynWhtWOF + WqEE7SkDUeZ24FXaj4naQ2HFpBXhatXj/rU7/5MXh3v0UT9HYOnGSeH3TA/2CRcNBuzI8tpmHoWK + 2XLpN9t6UvwZMnDpwxvCNLuUXMXRffvQFStiM5/GvrEh9Pf24crNadxbS2Pq/gzKAROpcglnz51A + N1kz4dFBXLkxg3wxAx1RaI8i9PBfPb3d2L9/Aq+/9b5dGmDY3vfWIoFJGJh8o8ZvpbagTPe4zXXu + FJzNacMCS4mDclDGDRcr3i5ncTHOa7ai3vHi2ZEDSV/hPtTnjx2RCvlOaCJ8AkN5TU5V6zRoZfmp + uuObWSJqK4XbAXRxq/h+C2lXLBVx7dp1243VCKk248BZ1KoVkWNoZQciWz3qvv/H+tKtXUKvzg8w + JtPkhPSXsZzKFeZIYG2zO5tRH7oD+Ppffk8aObmLKhj80M4KQvDdQ8EISsWSLMB3rt6hOwvjWz/4 + If0K4QfXpsW14Fh9lf5nKVbjsQ4eu7hvX74CCWGJ1K9u63h3cQZCtXc8JDT1lpMLZCgSybSyR7ZV + odxOAP6xQ81OB79N+uBgRDXuqU7Fhccl7eBY3Q4HTtc1tqKJJHFMfo2mrq2DW6+24PPrKE6jdxiG + 70Reb0HU2knMhcsTXn31VWHfvnDhGaSzaYnhpVJp9PbGpd+UGaJ3G0LnLgZGgpBe00hYkDik1pD5 + N+k9hqZmVnHuM2Wy1cdhLgRbFWULIQUJhy+9cBZfvHhYwND++v0bWwcunaydvzxeftWwqbU0g9YW + KtMcla2Mlqp19fPXy+Wibdpb2tT6bC8N9GbRcN0CpK62utLZ/C78DGt8dNDA4C/9AxS7+l3mFe9m + cJw4wxFirFXLZWT/5A+hlx4I68oXXzyL1dklHDk8gen5RVybmsWzz5zB3OoqCgVTFmAkGhJomYod + kNfbul/VkSDakZXvG2sl6A/cJibuUjgsPH+cAWUXmrOjvGG4Wp+beLnnlb/H64FLGj6WXo5Svspx + 3SbtUiiUBN32r777KlnnWQG3ZPTV1MYmjhw5hOGhYURsCKCdC6wK3nj7HayurgncNJ9fMtBkDR4+ + fBCJRJLWUQqT+/dZ7NCPYpiUX0kGWxm+TkPyc0f3IZNOIz44SDebIYvCtBtTG2r8/ZtX++0JH019 + /WbQXtYYD4uvt+9O1Wv3uniK3n1yAJ7AdWdf1J7m3u1eR6LECE8eRDUyjKpSDd6JhhfzwCqjMGgR + GeGYJCVOHzmCH3vxGVzvCsAMB3F0ZBQLt2bxs1/4LG5MkbtBJrEpZV4mPpp5gNuLq6iZJfpRxpjb + xLhrc/3hlSu4d2+GNmEKx44dI0EbwfziotDDd0WjiHVFMTI8jCtXr6NAgtiitdf42z//t554iiw2 + AnkfhW3LpWE0VJsQB7199txZQeCYn5/Dp0+8JP2Ay8srAjPDwp2bmncba2OBN0aCirHN2KJaL6yT + gAhgbN8ERkkgLszN4/DBA6JIHumC8fB9BdtpgBMH9yPWE8HbN+fw/rffwcJGzg7DBto4ko3muwOe + yzELq6TIQRSwbHlGezDNml0f4K70qodtTnsyYZ6FHhA45aoVOVLKk03aXVloJ6/B/l7Bf1pa2diF + lDS8YVgwS3vECWD7U3/Im05C0RoMGbuQxq//wZ/ixLEjeP3VdzE2No7I+DB+/7uvY2ywF/sGu7G+ + nEKgN4zVbMYuD/A3aDwBtAzusmFXY4Q1O1laBdowffEh5Mma6mbrip57M5XC0aNHMTI2iunpO6J9 + 2XXZG021g2WyDZD7O3S/3/7OX4mw+oW/+7cFb6xBfavWniMDKJbI22BMK0aMZWCAvt5eETLcJra2 + uo4oCfQu+gnbzc3bfySF82fPuNY9u5qWhWPVSH7pR3/Eg7TweNZKsJ1kW0qm8M+/8So2M3m76jq4 + Y/C0QM7E5z93EVnaODfv3BX4Cu4hnFtcxlBfH5KbGzhz9AiuXbuDgaFBFMiSODA6jOWNdaQzJCgD + IYkbhciN4gRAfzeTFYQFEpghOxS3+5CbliXTWT/k4eRNn8uVcPLoMWHsXVtPb3sKa4QatugiK+i/ + Ot2Hc3EJldfaNehXkhbn//DREjZ1V+1gEv4f3ZqWhTQ1ty4RtNTsolhhs8lNdIUCtMgDYmFx3I/d + 8SC3GzilIzSXDBdUNW06NRcg0USQ3K2qWXEXruEQnjKyxJ6CJnoymfTXubNPy+YU5UVv8NiePH6M + rAd2CU35YTiUi8+cw9kzT8k9BR2CCb1FgPyhm4rtX2+88Ram7j5AKrWJC+efwXly2zs9Jyunv/j2 + X5CHs0kCKkJW0Bg2NpKCJHqE9kw8HsftW7cECuaVV16mz0d35YK5SyzgFw8BI4DH/Qq2mw/u2Fcu + NZcdQ3IDw7pzwcB9XZUynj11GLlCGueOjqF7cBjptXWEnjuNaq6IcFcM6fUs7l+Zwa/94s9hdmYO + 8a4QugXnaRPZfAkRZoFOZWlCBmgjFlA2DRSfPYUymR9jI324cX+BrIu38LDTJ+wqMw1VucRWQJct + sHZjw2lp8n66NwTSo/JcAY92PUPvx1SeBFbM0xcIHJucQLBSxEa+KE3YzIZdoUXc09ONHFkmXTSm + G5spEmJhPHv8sGz49USSrhXAQF9c0BquPZgTRFmGNp4Y5Zq3Mg6TpZaif1++PoVotIvmgFwFsigj + sQg+uD0jQIB6rzc944KRksqks+gf6JMHDzMyxMoKxki5MQaUa5fyRtLatjxCUI9aWG1zsnmnvPfe + Jfy73/4GjbXCj3/h8z6B5UIPt8q8k3L68pd/UgIr7Aoz3HGf4JmZYl1xbOnkiRMCgcyQMbtyLPQO + j31EpFXBZm9O9scxPtgl0jyVzouGYzA2hsLgylsOxN2cW0a27GE9Uc6Q11OsW3GYajSIb775Pm2o + PH7sM8/i9Xcuo7+nF+t3NlGhhRoji4ktp0ygim+9/i6Wl1ZJcwTRwywatPnGyeoaIjfnnavTOHRw + HMn1JAyGeS3mJU1++VYFm6WKPz7zkILyvEFGBvsFDufe7BKEh2knHKVOQypbCjRWU2Qh/taddSRM + Kztj2JG/f/xUr1Us6eu5VwKDfJLGoqdQwMDAALK5LHq7ugVtJFssCB57IduPGzOzUhUfIYHGZBTd + PX3YSGbQFYvi4NgworFuXLt1B/tIYOXyWVJUWRTKVeE4vHj+DHJk/XK2WEdDOLhvFDfvzsJHkKob + KataNQAZXt+nrgnz3swMLl36ACdo8/X0xDA8PIrX33gDp0+fIuuh16Y3g0ACx2IxgXDm9/PZHD17 + Hj29tG7Hxp4soWVnOX/x7/8Czp0/J83OL33qBb+M0GjO0I0a/hlbVa3Ct2xRKb0Dgd0Jo3RnpA0P + dQCVJ3wRbHZ//V0RHJ8YEHdjPaRQIj9glIQF+9Ab6QL6erpwa36piYTVLTNnZtjALdo4LJR+9ztv + IJXNktsTkPS8i8ujLDKM7//wQ0lTihAUlEHQ9TeQymVoQxVxdW6F3rZiOYbpJAAeUaOrtoZvLbmB + 1WTCct30LlazZwgZdSBLrtvPHuzFZIwE91wal1NA0azr11YWYQhbwJdu3xc3GQur0k8YJmuJ6bHE + hWJBGAgIlVryGltLUTlHJbUA7qEWSBpypTk+VCQh8Np7V6UEv2LzwjEu13ffvmRZMkYQFUZB4NSt + CtgV6eaOCAhaTRGjPJw4eQL79u8T14kzxyyINzY2xTJcWlrCxPi4ZArTtH4SyaTEcEaGR7C5sSGZ + rbGx0ScyAP+pl16UH9MmjeC95DQst816a13HzQfUMXfBixxmehuMlb90pAHapd3nPqRfNIWF2dsw + pmpBhmHj2rd0CemTm8sJ3FxLCq0UCxjT1K7lEmbsb15cVdVcfyrVQBfolWUSPCXLwO7X8SfltPKg + nCjXHeX4zNJ6wpW3FsuPPZmqU4SBvbWyqnuMfsoCiMlxOOieylWQIYHztSN9+PqDBL2na1aLAL5Z + CFjMflIhV7JcCiBKrjO7VPwfuxBc4c1ihdufgnbQOpXK2XEsbSNmkMogd6+Yz8nJuWxAMdEDtIuo + USlVySUMCSxQMluwcCPoOG405oKLUrVswS8LkUlcAuMVO7ivthnwfOrUSbHeeWhHyKLmIPwXPv+y + ZKz4vXSa6456LPjlskVgm0gkxMLguBcDAxpPeLbQ2GYbDj8nF5nWYnS6oXzLxwGo/SrEUH6BVFdz + XNe2VIddpuoAjdpcd9exKXJtmRgDutG+qrGrtwi6s3wybTaYat0Tlmixmnq7GSa/m1bXRL6zGOfj + rPBlyy5g1dCYeyS4+DR9oQj+i5MjeHkshu4Q8Ns3lvAPjw5CMzCfCHDt0wAHyJqYGKDvxuJkaYSQ + 3EwJHT3/cMCaNXGWlEMwTJZsKIQrt+7iwpmTIuy45ok9Wa7YZ4jkpZUEHRfCYF+PpMy53oaxySLR + LoySazg2PoZrd+7i/uIahvoHyQoPSXwrGlYoFCtyTFckSK5oCe/fuIOd9IRzCMJZKiEn4Ev3GHYo + xsgNdF5c5sCvvp6ehhj+x6b6u4P75GcPR8Ltj1M7/Gwvj31Ew9UgsMz6u1PKJ3O0bhJq11tBVZAu + Jleib6gXBXJjGC4jW6zAQeSJhgzZcNx35i707QiCZhjqDyky6FxmeKAX+8dHcOXGXaFD2u3ssVD6 + X26k0UMzsFACDnZVMdzfjT9e2MCr6wEk0G9BsqhyzcKk7yY3s4LjHiU3noUQ91BL3I8spLXVpAiT + kfFBpEkA8XuMMrGZTaNIgoVZUVZXLcs1TdYTnQLVHo10YoO0ehl9ff0ktHJ4sL6OZKkkNVDLyU3k + yS3vI+GxspJEjATX6PgoMrksMptF5AWYES3nQ2sPA7RuDDnW1tcWyJethNNeCiu1C4GzBTy5s5dY + 4QWkGLqKHdHEbye+pJonO3YsUB+FYvD0UzWNYe3q5tpATzFZxY9/+SL5khUyc9Mo8MIki6KQzaE/ + 1iUbNhIw8MH1W1hMF2gT5h+CfN4j9UunWFnfxMjgAE4fm8S127O7PmuVXLtUxUCBdnuO3LYq/VxK + pvCdFXKhdcCdO8Njrt9fXhPCiqqXjYQs4G7OFpKFXGL2GpJscyys7Oe/emcGSbKoKhUrZqgdWBs+ + PlvEfDJpg8DRlUggcaKF3YrQGpOqJsl9LImATqYycs+BZJAEWooUTYWuV7XvwWjLh8IbdXFplYRr + rSi2xk/YPs7V6ny1pVaHhFmv+Oo7GLwIE1A7vm7jkm9HDgrLzfXYA1qbe+pifVJfwUdxESG4IKtq + vL9PMn7R2BBtgirWUymoOGO3J4X/rJIt4e/+zE/jn/3fv2nXxj8GG7wDY44XYrdUXQ/gvctX9uQ+ + rbifiSJZUf/P3bTEkfJiOEZqBLI2Q7eyCdx6yCSKsQsYigo2V1WovMiLopPlSxzjqaCvu5vcq4Cw + O4dDYbIM+2FYDYmSGp9bWhJXi92OYiGPQXqm6ftzGO62WJzHxyaQz2ZRrFZRJmF65uAEQuRLRuj5 + I/EuvP3hVaTyBdcg7oTZiDdmvCfuAkyqXc9oaw68BqHZwGbUnj+vTSx8y/Wk2gAyclnMyuqqq0dr + xMDtntXOGdZbpQ4QoH09jkXyPHAM0I0/2agVjNyqOnVC6hoiHp84rRWlB/fOIdVtOgtoK8ZC+P++ + 9T30xMLI0AboJreFGaQZ5SAUVNLHtG9oCPOkuUum2l5v82NoL+Eaoeu3p5EtVHcjye2Vb3qmhYSN + 00hdU7+eHk5t/2diYmQQTx+ZpIWfgEH3E5TsU0nw8Nc30yTwNHpJEPXHehAIMb1TWPruervCYpVx + oLpYHsDxQ/tR5p5DZr3JZDDc14vPXjiDucU1CXAP7BvFMllpt0mQRUIhEmxldNP54nyearU5Hrfy + ZG2buIc9JOwC6vEibuzKJdS7OJ7ricpB25KsJZraZVyzuZyVaLCzjBY/ZFQSLIn1hOypgwcPIJ8r + YGpqSr47OjoqlfWzs7OkrILoIsV07tzZNgWqkIJUZpGWglyXx0QLMAErNU7scCX9o8vE+v3X4F5N + rGkDlbTIHUqkP5FNIZm1IE8S2WKD6b6emQUezEqgdXux7Ee76HkvbpBg1bvdB1WFjT/8fVQD0Rqx + QzNDQNdYURjI0FxbkEU7u7KG5cSGQI6YdhmDmM3kTpbI5Shy8Si5h0FjDUVyxdm1Y7IP7gVja6vA + PWE8L2myoIq0EMMB6VEs0Xf/8t2rckFeqHw+U6wCE1fnFoWJu7C4ZM17Vdttu3VQC530ZBqurK5l + qLwwOh7STTe1r2vWi/byZnmsI2dTS7O0YTRYOroJJ/VDUYQdWEwKDuVZ6/vhONf7718mxR7E/Py8 + 0NMnyXXvinVJ9Ts/Jwfnb9y4JfM0NEyKf2ERU3dnRLisr63huYsXkFpaAcurVi/ORn731e/hwoUL + yGVzQiPH5TFHjx3BO++8i/F9+9BNlncisY4LzzxDyiv8iLSG3RhuPiKX0IQHwMHlfvYGyrUHhcHs + aDk9zmSQu5nQWH623QVduHbVSljoapPAn8cQc0obbKRRHksWMoViGS4dl939X2uW5mB6UeJRWrmR + Xvm0WMy5QqZcrEjNW75SdUe+nMrVjoF9DSlWzbuRcrtk2MYCUx70AQ/EjdbtLUzUmF2uXL2K9fUk + 0qmUWA9c2MoN0MPDI7h39570yTEZLCNQvPjC87h06bK4UlztnS8UsJ82FMfX2KL4zKc/hbXVFdnU + Bw8cbO/2PYYFxO1Pk5OTrhHKdWWtmgm52NRBTzh46CAOHzkqdVysdNIZqy2M69G4cZyVETcwT4yP + SuEwV79bZSHazay2uzFWUB99dAWFfF7u8djRI7g/cx8byQ3M3L+PQ4cO4c6daZw8fgKR/vCjH7dH + FSNS2k9TVQ+m4S5sDth2UPOgH6MYY2uoPx4nbVbBJguEbQ98LQ8msQulUAeM6fOIlV1QKyLCYPoq + O6OktF+4OUQVyoM8Cu0W1jqCVnujvWgsudUe2BcJvisbmFDbxX0+9FLDzeQol1JMubjz2EpoeV7r + pLnv0ubI02YZHBxEJBcWaJm7tBH5HOzmTE7ux8rKKjbIslim34ViQQpi+fuM9sCXYiEnoHd20WXH + FtUjjClwX55bvc4bMZFoe8ghElQCO0BWlhT2IibQ4SzE+Tk5Djk6OiwWZSBg+GJavmRGmxcLva/+ + zFfcIk6eT4bxCQgj9DlSCnlRJK+8/DnpNHi0ssq6p2AnuVs30KtqTDeN0kP54xZ1XzCKJn7iRz6F + 5fV1TM8tSqEkFz5ylTZTM8Xj3VhPp1EtkxkftPCPYDMEl4pla2K4sJHpqoMhWdRDg/3IZnIokgaR + uh36bjqXha4+5MGjTcy9exfOncCH16eQShc7iKjXxoRdM44FKSeGY7vUrSBfaoSituugHcrzuhKA + ulYZ5YXncRkZdJ3161hyZm1h1AmypmpCKxfSyY2/ab9byLYy9761kfy+f7782c/hUy9+iqyEou2+ + BiWWwtYTbxAWPmxdPffsRWn4ZWgVRijgtcKNwFzawe4Rx2144zKKresSfgxqsxy3WDV5//XXXsca + CTV+bo5X8ThwAJ1dtiLthS/+yBdxkqnrHV1TFynvVFzHyeXzAUl6lmRPt1XzxvV6Hbsierd7zV/A + Gmzr9tBCGOyJSUGg1FqpAFY2UyhwUaJSLWNIuiGLURWB1ReNIdpfwWfOkklrllGqKAx3x8glycIM + dOH6jSlMToxjhXzuo8cPycKdnlvB/HICF08dxnC/FTxeW8/T5StSuzW/sELm6XESUgWskRvzzdff + Rq6qH/L61Mjk8uS6FLBvdIAE1uLWEVqP8OCm1by7kW1kd+Wvw/Gn6mtpcqvaXbmWl5flrtZiUB9P + 8k6I6bPyxJ3zCiw37a891lZnsUPlc/NrGOvb2rA0Ntwf6J1ALkp1Hi8cDNpxHVPQNi1kHlUDr/Og + tjhZsidGWDWrg/JwM7p1jko1WBeHjxzC2MSEwOlwvJKp7zhuVaB1yAJ7dHjYXz65gzicaoxx7y5K + rPdy0LYQWHyxiwdH8Utf+TS40JaLDK7eX8YfvHYN88lsEwui3SUNwWE3USErKoXyXAkb6U2oUDdS + Pd3Ikx8eIg0aDUYRDliNxEtLa8jnclhcWpfiR8bMSiQ26bg0uQ2rOHJsErncOvpjcayurEnvWRdp + h+BDX5/WAA73xxGLBnD11gI64ivR9ULdqlwPGVUEafNVDa890wAcQOO/vA1C2y5zSVwdwyvKPAvd + jmMpZdNmKnHplH0sl7e7bRYeUETlQAU6MbIGOLg2Oe+GxaXaGlWqRdX01PQ03n3nfXz+C69IvIWt + CI6/cAkEu4P8t7QglUvIkpVx5PAhDxjeXm+UvX1t0rp99913Scj24tmLF6XHczuvE8dP+I0Em+26 + Lu/wiX8F22UmTk+O4R/81HNSL8Pb4ze/8xb+oD6900G2TpRg1MC/f/UtqxARTrOvXesunHJVQSwY + 6O2hyU2hau897hBi9+Drf/VWjS2Ffk2RFaZsUEAuNA8wVhfjPj3UOFYtY5HOFfDe1Sm6trG16aub + s0dGdBn/06dyGA3er0O50PURPhvYlCwzM4T/88M4bqeOicX74jOnsLG4hsOHx3DnwSJWVjfx9FNH + Mbu8hmoxj1XGEtMW6gMHb8tkHXPflpAaaAsskfsOS/QTkk1kCEs3s/psprJo3a6/dZ/HtjK9dCi7 + daNjY3j9B2/IZjx4YBIfXbkqDdDs/vEzLMwvYI3m/oXnn5e4zseiDYee7b3338et29PIZDIYHx+X + Z9tOv35DTVc7IL29kl7bbdXZzT3ojgWW9oRn/dENj6UqP1w8WGRa9Rq8XM3jaXtBQz6v2AijVd9V + LCZojn+U6aQr6YxLBOoseNN2g/yk29qmS7K2dlWXPVXTDzFaap+fAQZr1tPOrhmie/7xfZs4ELqD + oBnyyzbtybo5sUH6vaFC+O2bI/LWiYOT+MpLZzF94yaMWA+iZhCl1Rx+9kufQ4qs1mvvX8WJ00dQ + NgOi4cFInuUi4v19wu+W2kyif2BQWHezhZzEjIpszdK11xNr+PdvfuQpDLcstc54II2Wq1C3iHHw + 0uAYzNNPn0ZiPSluDzc6Dw8OIN7dI18boL/X1tcl5c4YWeFwGB+HF6/Qb/3Ft/H1P/gjmU5GTRWB + 1SQXU98czdZkS0jiJpjI+mPKosOZXraemyW4vNWHQZ/Q8VIikfa+dG8e/+Ovf9sl/fzhrWkk0nnS + fkFrhXUoULeC1HEyT+LCuBjuhp2Vqk3CVjpePxZ1+xCKdbRldbq9djaEcg3hw5B6rEFyS7/+p3+N + c+fO4Duvvon9+yeRQQlvvPehIBsM9/UIFO/tmQVBIJ3o60ciY+IwY1rduoNEMoP78+vSe9g30INy + KYl78yvoCfdwXF/6Ek2vPO4YfcHcke0qAV96TUyMu++fOXPGjW8JE3Q87mM5fljB3r2OWx07fATP + nDsnpQIjZC02I5dt9uLShXAojL+xLxeU1jJRgt6B9XBvyu9bDDPzzR/YWRYlLomy4UW283LyX+EQ + t4iYVkV2xXTjJU5uxIByCyidrJmw7VntaTBMB+bi8Sep948MkQUQxa078zvYnu21sYr1I7DvOZJZ + MbKYbkNtTNslA1UxinmMTJImb390Tcbm2txrsonX796TkfyT195xgd+MV9+zSiYYM52+PE5Wy7Wp + OXwwNWOXU2i72roqcDQV6QNcFRZlgfVg2BtUfchXbA2bwsBslWVYdG02nbwNpYzdMBs1gebwBoS3 + pO7ST9aG43X+q7/6K/ja135Z7jsQCOA/vHYVw9I1TD97cQcDFt4lI4xy7IMB6ctVhmS1qqhLlSbN + xLr1rAUyFfw3//Xfw5vvXEJvTwx3l5IIBgMolgpS7Mfgc73dMWRTacR6emzoW03mfx4RsgBY25fz + RYzuG8N333yPZObjFFkmFtdWsW/8DA4fGsPd+8u71sCyJWN9UCOnEDj0BZSnL8EozyB0+nMo3N2H + 4PL3Pd+3BPYhJiQgiypDbhy7DZVyVbJskWhUWmrWNsjl6+tFJpVFnAQVt9/kdAXTS8voI+uM62v4 + +5y17O/plhKBhUWyuHriqJSKMk9D/b1CtXb11gy6yWLjwHdAKt8tcEDHJRcyUG7bKZawQXOoW/RW + qd0M0sfYSuA9xIipeAjrVn9yR6510F17AnnsA5yaHCVtHEYmU5ANEAyUpcOf8dTfvjqN2USpRSVz + E5hXzkaxZUW6+uVnz+Pegwf4W597DsFwGBvJTRJYJdkk92Zmse+ZU9ISYErRIscx+sDdarFIFxbm + 57DBAHPcv6aCj2/9WWqS7j9IQqDcJgmxRRBVKbcgrsolHy/8ClCNoTz1BtTi98AV5oUcCa2zv4Tq + 4tskKPI2daPAmiEaDaOLbubgKAmuILcLpST+1D3QixBtjh9c+hAvnDqOy9eu49yxQ9AksELxGJbX + V8VanRgbQ6FQELTR7t64FCT2hiJIMYLGcL/MSZkEEAfl43Stpw8flnijSc8co/NwrCAQCkoT7+TE + KIq5IrKlMl6/9JHU2TXbScrf4IBGejmNHdWi76UbuJ3gcsc6Tu1OIqkGms9aVNXdto0lEbXOh+0J + vydF0Fn7xLmjFgB+4oJVqtJ/xpp7cTODrkgIPdEIWRNLKBVtd63DCJ9EYLpD+De/+8cWtC6N+NjU + LDbIeqpWWLvHJWj+yvNP44//8jVEu/uQ4AyVDRY4NjxCm3FTApBBEp6BYEh62B5XUIKd1xGyPBYW + ljBHluJOWai9ECTq4NMoLi7BvP27CO4/htCzv4ji3G1Uk1dJOPSiNPYCsPY6vGWk8/OL6O2K4N78 + KrrJOq3ahbX52XkSMFFxu29M30OaLNMb9+7JXVaqWlxEtpRXEim5dbawQFYXZw7Zekrl8tKnyK4L + J1oMySYaUpJyf25eSCu4wfrY5CTml5eQyZexsJIU+GpWTqZg3G9/yXMGmUsZOJheY2hxasw8Afq6 + janhWdN7sSyewMA1My4zhA/D0FhQ1xpTU9M4euyoKBq2rm9PTQlzTibDRKv9oog2EklcuPgMumPd + HT02I8ZyEXfQxs93RpdbdpgTgIu9uZj38UDhkMDShhV7qEXctRQx3phfkViRxDLsiLxsMG3UWjLa + qYM6zadpwS+S0LEONrCwUaPGekBWVog+n/32m7S58mQq5Ow6I0vCLmdna82xHeFkqYe48qxzL6+n + PNHo3ZfW6/QGgocmUOmZhB48CXPgPIIDT8GcGkL23jsIH/00yquX6ImKVuyJLJg8KRODTKUNEuSJ + ZJEsIcOtT03mS+inhTdPY2uaASTSJbFky6Y11wFu64hFkM1naUrZVTHduTOchlxSIg7kNceqrt2Z + s+ehAEXTkMjdpXso2hhTWiCeRZzba2S7o7++vi71VSw4+/r7yZ3tI+tthYRXEIZd9c6tOExIOtDf + J/cyMDBI31mTWi1ONPTE4/Is3J7zSQlW84hfvvyBlPosLZKSonFhAo6l5WXMLixKfyVj3TObTpas + Yy4qvXX7tmDdry4v4sDByY4EFhsnr37v+9LYzGPLZB+crT1y+CA+uHwF+/aNyzpgq/zEiWMS0nlY + SYq2LqFyslCudLELEg1vj5u3vaExfqXb2tPe9pDmAdkSx8hypi03W+NMP34VaW5VJ9vZHbrtE3b0 + cGkaOvI6oic/h+DhL8LoO4vMne8gcvRT0IlrKF77PXLzcnYlupUxPHH8CCbiEayxK0hWJ9eiZVMZ + 0bjx/jj2D41gZmkRy2tJnDpyUAQWw48wy3R3OCIu5WY6K5krpiPnwtt8pUyu+X2cOHxIAu4VQTxg + qvQcWdlR+TcnTwQixW465uJNLodgN3FpZR33Zpc7dCr8a4iLQ2N0D4xIwPG0VJqx26tYWFuBImuP + 0QEYKYC9zUw2LSQp3SSgVkmoLdJz8qnmTVNCCqdOncTQwCcku0bzNTA4CDYuBB6ot1eEE7MLcesT + 91oytlk0HEIkHLXQG+h73Ae4f3wU42PjHU2FIKDSsdN3pkX4R2i+WRDO3LuPZHIdc/OzGBkZwf37 + 9zFO5x0Y6N+9YNLt7Z0GgaVc+ii7rMA+m0Zd35krOKrNH9b1pbVfQOn64E+L+9eeVpEnP4a6J4LP + acVwYIHN2bdRXXgLKJI7tr+AEKOGfvibZM3cQci0WnEMTx1ahoTTWpkhp8lUz1fQ1deNcF9A4oU9 + /V3STCymPGelaOPHSEgVVElqfbhzgBMa3eEu2gx9WF1ZQpje3yANzVq1i45J28cMxkh4hEICVRIJ + KnETNzayknwJ0H9dghzL8bYS4pGY9HWWqubWI6X8a2JoaEjgUg4fPiyEBOyGchjg6NFD8j0OD/T2 + dkt7itMjyGUbXEDKYyhQOHSP/DdjOn2s8N3RBvyQnuPIsSOiLNhVZtYgToLxODAs9uS+CRFiPG+S + SJEgvwXjZL0X6GhRc3vTp156QXoUBbKIjmcByfN+8PABaThnC/b0UyfR09uzu9hhK1oy1WSveb4Y + fMJUyTaefjsYiFu1mTxO0eeUw1oCTJUVqnffhLl4B9XNRRiVnEC5W6541b11/vVgaQkLstDtHnY9 + J9ZyiHyz8ZFBzK2somJaLtrC+qYE6022mrlDQFl9e5wLHiRNmdhI2KrIKi1549otSXwwLfrB0WHc + o2tx0+vYSC8WyYqqVCw3kYWfaVfi8yNEwgFyOx1htT2cSiahGB0ZrcWp6PeY/Ls2f0Mere6UUPT1 + 9PrmWXs7sp9466lmcbcKjnPc6g//6I/I8lwQwdRLwjhGAv1nfvYrIqAHbPJURrbwWi5CMb+NEgr+ + /v59+1uCsvbYhB9C1qp3r73VDrZ18CGM/Q4P1h4MDN2Ivd1StnWwKRoIP58AehVVQxp1x86pMypk + yKrKCkaWbtJkbmirt1Nx6UlASYyHyw2GaSEViwWrTkorcaGC4mrxeQJCiOuAKWrOtiomAInSBogj + W8yQe1EVFApGp2QNy3+PDg5gZWNdXIwqafXlZBqBcBBDo31IJjak8ZYRSoPMYUkWX5meKRQJCAhg + reJXNSR1GIHDMBp9Awcrzdf8rVRdosLJTjeHN9YfA/ocifUZtTXOMal2VuiJ48eEJJbHnMtHBEKn + 2crXe7Q0t/H+o3wFHZhevReozR33BTRxYPU2taJWnYtJrZ68VJAUaIbFSuGgt2kHzC25bRXO+lK6 + ykpWaMMB41M4tm8fThwaRy5fkBKLoKLzkZCpkpsQikWwkeyTGjeOYzGMwdOH9qM33iWCRUDyyJ0i + 6YJhssYODccxu57A7NIqfvSFZ0lYVZAj4cfu3YfXknjlwjkUK2VksxnEyEWU6x2ZRIUE02YuJ7En + dg9ZgHIy4PrdBwLTXFNGyhMrgdCIKReny4OOphsjCaqJUKoJpkaR5cW/asR03ysNu7sXx984Gyql + QdxHWSogruJNlyk/y/PPPufuMdPBPTNbYv59wl41KO3gXu1ftT1p84hXi3oiJ6FAltG//GAYPYHz + Nuegh0i2jt5XwTLtC/RzLxOR91bWEtIozuUEMQYU5HjGyDAeLC5LjZsFFMcgb90SeL96b1bgjasC + GGZK7w1Tq0UeLOLAyABK+ZII0PdvTkkwnTdHd3ccqUIVS+tJ3J2bk2Z0Tm+bZBEwphdbdsrG6QpI + kL6CspCymv7+GTsLrWH1y42MDlkuDPxYYdqpvFd+za72Ygno9v28O4pWKGxNpbWlPtU0buXmrWX1 + 6BYyzuqJ0buPev9uyyXcqZhRTY5tmftTLSwipbcM3H+8XiZK9Ey/NdVFj3wIVY9Z4SWcqK1a5U3g + ipBI54pk3Vi4WqnipsS6OGjOtW06m3cpzA0bl6pQytTa3O33+LS5QgUZEnpl3jR0gVxh0/VRN7IF + sQI+mpqxmtfp80yhaHvveXduBEJI29A0ys5k2lZhW8tbN3/Txf/SLQSBQvMqR93+Oq0O6zgMutX7 + 2yYIrpmUzWqbSjYk9Cf6pVszPzeNYbUt7XcXjfJgJO3knjQG+nqQJzejWKzWWIxdN8GiJaoKC6fq + IHD+MdcZhkKNWJ0D46oBd88/QKqGRmxvZim4h4VWGhCBblhUXx6ERuf7NdyrGmWSIwcFxkco6mvw + 1Na8G/bXrLBBUALs9dXHDlqqg1aqrASCJyrVkrW7rryFCx6ZCCHM5RapNLqiXVJSURQaMS0Fk7yB + ncJRCfob1r0wOQJ/rrayiJ6gFZQi67irKybPXGkRw2KmI0H4VDu0Gtp9v1N4s05c6d0ysrQt3Kt9 + EHTi3DUSiFoTtOMzD8ZiyFeY1ddsyXLpa+2ptyUEW6aC508dQWJjUzCZNjM5qd9h3CVOk4fIPYpH + I/jg9h0UyrppzOeT8uJgaxc9a628shlztZ12U9oF7qvXIsrn4VtN4VB+96veZlOe0pX6xSBZROWF + 7XA48LRvffjWtxfhoy6pwa5nvlBCG/433yK9P/sAt6bvCBzy1avXcfr0aXE9ufbnzTffFFiW5eVl + KWMIBANIrifQ09uLmZn7eOH55/D8CxdrXugT5ioVSChduvSBoKk+Rc/FbvHq6ipu3bwlJQoXnn22 + 9X5WqlVAr1EoNaFhbCnr1DYkudrC5d0NY1tbIeyfzGDLe2M4WrJ4fu1nX8FXPn0SN+dW8fXvv4NX + L98n6yCwzViRtdkYWbm/pwfxcBCp3rLQm48O95MgLCOV3ES1XIJR3UI9fhKcQdMUnjnl2/h1Qquu + wLYWTNZ1brZt5Wi3Rl1QNRzHyvq/4TnK9DAO21aztuIoVkGsp25CG3VaVrdVqkYTq1pvYxVzo/bZ + p05JQP6Vz34a8XiPWFCMYf4zX/1pEZoXL5zH4OAAcvkcVldWxZU4ffqEMMRAP6HLhobgjTffwhQJ + 42wmg77ePkzu34djx45JZf+BA5M7u+0ODnJx4rdLp72Taz60sa91YQSbXcVUlrZ8/sQB/NznT+N/ + /Y0/w9pmEV/7O1/CR7d/C8mc2gLruz78xNHfEL5/+TppFlOyU6VyWQLJodllsri4sboqMZiq68vX + BWJ3sk7s9Hf98dvtg2r1fb1rtDTL3jFtZhtl1AkGO1Yl3f4kPEybdMJhsrEKIwxXNBhuHZLhaiaH + Udp1Kx0OPG1Zb/x51bWODH9ssZM5bqXZgW0JK35xDVC787udATYu1viot2ZL7fheH7aw4jFlvr/f + +6M/kbah48eOY3Jyn9zH+XPn5YYSyeTOb6vNcxmfsDRiW0z3gb4uPCATfDVbxlwige+8cxMBEjxa + VbY1mIZjHzCUCW0Ci/EZsmlKHOi1iZ6rurF3H7vQDspm+NFN4nLNvZMW6KG6ORq/amm4dqCo6Ca6 + yBX+yfVlDBXzaAV6ob1Cn44pkNX7+lA/ZsP9GB8fRpk0dG9fP2Zm56U2py8WQSwSRjQaFOA+EWN0 + rtH+PhFHy8kNBKSkQkv74MH9Y8iQe84UTkVSGkP9/VgjV8u0AQT3Qst36gtw4y3XGDFDkiOE1tfW + 0U8WlaGUy3jMUMrcQuIUMrqsOHpbl3tkAWWJRXHfXcBAMBKCi4i5jbEUolwbdjpgV7FzO9L4xIQY + IJlMWvgYuV1nYWFRLDeGYi4WCthH1lyniA1WNX0T8lk3LKAfQ+OzJ0uonPoe7S22s1yCy1ML+JWf + /gx++UvnyTuI4ps//BDr6YIQGbSeeb+EYFyt7kiksdXHxTBXtbiDah6MtU5reo5UHT9gK3e3UdSo + tgKj+bmsxmBTWVZcNldCR4yKyhKk0YrG55JpTOQSsFvMW4d6WKhzBo829HR3GLOhXlw4cRwn+0k4 + 9Q9hbmkFIyMDcm4WWFxDdfrQPuQ2Mzj91BEM03du3rqHcCQIHQiK8nj1e+/j5z/3IrlceWxmE+T2 + r+Dzzz6DmfuL+It3LmG7jItmx3tYS4Ozsq0+Z7pvT0/h7p372D+5Xxps2fVjDHcOSLMgGxwapDHO + ist45qnTOHWie1cC0wvN4oZh9EPZZ/hv/8k/wX/5j/6RKJ1YrMvC1Pd8TxAzVOvxevuddyVbuLq2 + RkJqXMbk7t17OHz4iCQreJ+VmZwjX8S169cFtWGFFI82qxjfNyHcB1sBZ7HX860//zYuXrwgLU/F + Qkn6EhmOmmOKbBVy+xOf6ODBg4Lo8GiElXIDDsGWtgYJiPlEGv/dv/5T/PJPvUADsYkPpue4J39b + aowlNsOVuC6Uqgk1tQWosZd2VSijPCWG7RMKanviTKFl6r0+maCaLCal9bajjsoTFdXoIG6nG+Vr + IrWJ9xdTuPhCXIRFIpFCvDeG9GYCJfq8KxxFmARaLNqNO7MPSLtHZNpD0ShuXbkpzcy35pexsLyC + ExNDOHJgHAur6wLU2HEh8Y7CjQobGynaRLUYF//V3zeAp5+OI0dCKR6PCZQJ9xdy3VchX7QSQAMD + kj3kyvuNjQ25trlT11x54oBqewJL14UEOjI6HJbndNpVeI61nc5khAy1peVTrgiENLuOPC58jlOn + TgnwZT6fE4x4Lgbe3NwQqCFu1+E4GYdbVIeWMAsnjrFNT0+LZcswTnwO7ue8efMWKZM7GB0bxd17 + d/Ef//zPkwfWj0f9auoSGuKaWRLt6sIy/vG//WOETCuNbBFE6G3Ae9Pir5ZsEikD9XzDyhYw9Wuu + PjGilYnOa9vrqm3a3axqnezQ2msJNj9UyhEksW+wJEBHlF8+17MWmg50dyF25BCdJ2AZlDaEdO7B + PMzEhsedtMb/PdJ6fORbd+alKbYs7TZ2rMsuWeARN14zUEFFLsm9gVVtusJ/6q11uZeP7s5I4acp + 2T0rIsaugWlasS4TlpsgmURndThzZzNTO+UpnczOALm1QWX4xOLw4FDnhrNuHUtUT3DcxmFH8pLO + WjvBbLl2+HlefOl5oZ1/+umnJUPKc8ZWJ1tFGySkWLALiWw4LNYzx4SFzxG6MyJZTrLRsc8+96wc + d+TIEbmbGAk/fv8rP/1TAvXDVi67mJ3A1TwkgaV8UXj+zeblWH+ctFpemmdNI4hYiKubq9K/xgt2 + NZWv63NrNtAWEKDJhYgCy2LA2+3ZkGJXrdsutEdNbAVy6tKBNQtGar9QqpGOtXA4laoL/GpfTFo5 + fW+BEIxQZNuBZu/JB378JXzmX/wzQTO9+c2/wNGXP40wLZA7v/2HuPxP/2dEnDycLe9GhocwFO/C + /blF+1ateNVg/wDNWxWZXIaUhYlgUGG0Z0hYt8MhRYtcSYC/lzQ6l1dwkzSjLFQYIJH2wugwM+ko + wd9fZpA/urcusnLCpHGZF1LaimzW4RLN79jgIGn8FLKlSsfIYG7H0XYqwlvkAtTHKLCs0Fx4tAvT + cr/mG6+/gbXEusDHMAov93t+7uXPiIByGsYZstrBLguHjMYQzRbWMLcLnT51suXnQ7QW+fjx4dHH + HXS3XEBHEMS7uvAj549hM50k6Z1BMNyFMdKIDIOUSmfxYCWJ5c0sHeOnLW2IBvnws/xuhlXfY/oE + kt5pcNdthDUavCf/AjftuJPHxVPVtsXKuu6NBnha+03lCH2lO6vGV34hzJnZ4Eg/IgfHsfLOR1j7 + 4bvQ6Qye+cdfQ+/JIyjTeSN1XlpfvBtHhvtwaHBA3KJwVxQGu1mm1eC8urwqi6xcLCBHrkPALOGp + Y4cFITTWHYGqVGCShFol8//lc6eF6n2zkEFPNCauPDvy44MZci0V4n1xcj1KCNGSUUEL15+F9Q8v + X8Fzp4+iUMjj6v0FLK5uJ9u1vWJg9QmtdFG10GZToSL2rjS5G0iSS1jIM4yO4WIF7ITlubP47pP3 + auoSZotFvHVrRjJHjA0eNEqYoYXIMKxSecxegtMHVh9Phmq5Lg3alYN9PXQ+hbXNNLke9rdppnpj + PcKlJ1837EC8h/VreKBHGm8L5arlzDRJEjDIvwWdrDFE/vV6aqMm0GzmH75vLlIVxmBdFQTLknZC + xuoxbZJaLAPFCm79xu+iK5PHtf/36zjwmWfdlaQ9mQD+6tLqOvLpDcGh6uL4hxLAd3LtAtJGw+7b + 0kZGSGqZT5Lncm45gZQkByw00TyzK9N53799R7JzxWrZct1NLcgL7LZFSEBVF1dlhHgOhaOyVBQe + uRyZVJduTUsxbIKutZsaOicYr+0aBu4GCLQK7La7jBdO2XV+0VEV/JP4Ysvns5/9rPzNlf7cp6m1 + bguV2T6y3NkYtOqK2vI6Cp2deFv7w63DanxxevvmUtJ2eawvGy6hqhaB0kwwqQ4CDy+dO4feqBZ+ + w81cVlp10skUzl18AcXMqmAwMaY0M77sI1OXi0uZ+ffa1Rt4+W99Fb/x29/As+fPIsrmL91HD2n+ + VHIDw2SmsnuTLRSwsriIz37m0/jn//u/wYufeg7x3giGSYAxWUI8Fif3J4LxsVFcvXGDrMcQWS9V + Idgok7D76x+8I8/3sCMZDW4oLUCDrJaN6XuYu3mLBHsvIvE47v/ghxg9cVpsR0Mws2obOJXKYSNl + IowAChW28UgAM6V71W6ktgWdxLHIlY9FAlhIsKLgGIgFL6PsVp6VVEYsOqmW52OUhf3OAH585Vwp + L1s/4NTVSxwzJ/cxt7bpuqlqW8LAPw6cBWMFwu0oHEDmjcpBXg44Mzwyu7kCTGda2PPONbnEgY/l + XjQnXiPgddp0BZ7X5eIMG6OsfpxeDtzzbmCftd6mNeZNknVqB2sPBn+nWa+tWNNVMwurzo0xtD+m + oz3qqS2BZdN0Sq3/7Nrt25ggK+v4sSOoFnLC9Hvp8geYX5hFr1HBmfPnYQQZqKSMERJGSpVJAC2g + QoLoztR9hMkNjdNiq1YLGOwZRDwawr4jB2lDBslyyGEgFkalN4a1lSWp2ZgkN2topA9XLn+Es0+f + RZIE4fzSAn03jf7eOEplsrDSBRw/NAkmc36VkwQdp2sdg7xquaMOgWIHPN7a1ztj1aInvvsuHvT9 + Hp79O1/F4Z/7Mmb+8g0UpqZx/V/8K0RJyJiOFWbHJUYG+3FwZACarJ3BkUFkSfuWsrTpuWPAYDbB + MhbJfR8cHMLEUB/S2Sy5f5vSc9cVZHiTCEq02Tk9fZthkQ8dhCLXY5Est2MH9iFH88OCYoAE5+La + mozxrXvzQmvvdyO0a/Vtsxit4a2lxWVs0BzduXMHP/ZjPyYX+N73X8ehI4dw69YUJif3CwQyZ8Ly + +bwA2nFQmDNb/JuryEP0e3FxSbKNT585Ixk4zixyvySfj7/70z/1kyIQn/QXC1fpn2y5vfTDqy/r + xGPfqhm9w7geJxIi4UiTD/1gkMGa9FE17Dy1GwuuNnpust/DYDy3vo55WvxXZudIc5Zx6d4DpBnK + xKQNQcLi8l3aEJUyygxfwhApJDmLAizHxK7rkrV648MrpG0rAkwXj3WJNmWrUBCmaIOVSPJwpiND + cudbr79N5yqhQu9VAnFcuX5NxEuRjjcMqx6JN9yXQl1SJqCNnSziugavdpTuDcrHaSCmZ5hZwu1/ + +a9hRhUSP3wX2Y001r711wjqoHQBmLqWEeP/syXClPM9w0NWaw79MI8gkwesbaQwPNQjRaEMsMfj + kVjbIItlBH2xKFmoSmJd65ksYkaENnSQ3O5eVOnxpx/MyhhOjg5L4J1DAYMk3M0A931WLNezmeLS + Oxi2unFiYoPXXnsNv/D3fkGsKbauZu7fJyWzJM87TwKtrydOLn0VV69dl4Dzc89fJKHEtUhFEWoj + o2MC67uxmcIbb/5Q+vfWEwkR1PsmJ4So4YnqoW9TEcNjwO1Hn+yXH8ywMc7k6SXspP9R78GEOOew + KJwszRAMRsiV0YiEIlLYFqF/Dw0OoFgoklBbRcZtnLUsEk7rCuQJCzhbpRd58XkdZzaT2L+nha4F + ozzvYtX/4MMPPOlLWKibttX7Z6+/Zbm6D8EdbG8Be1MV1u9AUWP+d/4MJllBAR20eB1d67x29MLK + Mv1oKa1wmZdt3kKpRlhYFuNndvWmXatkYDaRgVVDWBXBw/WLVjmDxquXrkpJBJ/v0q27CEwxE3RV + 5C9Xmkv0UAXsujgl0L0OtIzTO6O9qtaL8a+3dgn5nENDw/ja1/6hIHeUxVI08Eu/9ItC0MpuHxPs + 8v2GaBMfPHhAPmds8y+88rIIZS447Y53S5yHq7wZxYF7EUOkyPic/FMgq8vAx6OZnp8vbIQ/eYyo + HQsYp6XM+lJQNyu0dHpf3aCE5/B22GHtijaFaV3jxVNP4anjExI7YvYNrpjlxcTFcH29A6Qp02BS + aWZW/uZfvYaq3RfnwJ5ojwhzSpV1Q27QqNWCqlZ+dk2xyY+xW05i3VZ56jrTyiJD9YcxlXL6AmE9 + Q9kpa1QuzIv1Y9WkcRqbYY85mB6gMYyTdTI82It5EmTZkilCpjfeg0IuL5aRw9TDVdXDA8PCvJJn + 4gam0GL6JrJsD46PwiTLd351DT3kdnHWkS2sVL5ICiWInlg31lMpWQihYJjOWZF75dKJUtkky8z0 + 5Y1V3US0KxVml8CqHXJGJC6H8frgmFPcW1ipPPEcZREo8MstvmTImViXS67gfTGxwo4mWmPvj1N7 + sak/YfaW8uyM+hiWEaYJDnPjrYUf7lQImMofcfH7pzYNmEdIWB0+gQZXVrtYSaz6q+R2JTG/TFoy + ZGnvXDqNFLktm6QFJ/cVhXMuTIuOM1MjA31Y3EjZBZTNshXao7z9EJXa9n+blyioptbf1iujmTNX + X4JuuYOOoAqQQJH6mPoIliafHQFMk0W5VgzaBYVb+eLkNpJgKHTF0U0be3x4mARPTM7PxaBVEj7h + cBBH9+9HKp3B2NioFBPmMnkJurMlwkUcS8trgtVuDJOCKOZpTlI4OjEupQrdXd0ChRLvDosLxkIq + S/NTIIu1t78PiUQS0VA//YTRE4+KuxIIWCB9d2eXsIGCZRE23W9KComDQdU2I9ZU2bXbwPoRbHD9 + kI5zY9QGtP6bJZiavZjqzWIFMsVKrq+SDCJCAivCbCqmFZvQullYD80hH+v+UoEaMKgrxiyTzjS0 + BHSvztzDtZm7wqPHBXGc4TECFmyv8f5VEYPDI8PiFibTzEysXABBnyXlXdh1C1o7gEgaLTIWre2i + zqro/X8r3Sj5nD9NesaSqnjaPpwsG7BK4/Eb48wZN7L11T0S22kLmSUraH7VxhvzJHW07aLdWdmU + Ma5l8GqTM5fYtDOJVvX66sZdt7fPRK3Bld0+K9RE51xJyPMI3Rifb0XB9i89qBjKRTNtKnVMjWqb + Xfk4+pMfimW1h9KN311aWpI2HE468Nzwv5mUwmlIzpIVzQppbXUV/QP9kmT4OI4Nk8DOz82hQMq3 + 3DvUcIEgvK6J1h3YrKrFd8wm4GHagoyxxU1V6VpejQsPtbVhJPDtRqq0uIOWq6fcTWhs2Wan6ly+ + 2r8Ns/XC0HWyWDXIZp+DUwerU0fT1eQqjADq/8j/IFWFNjGedi+zg8+q8FcktnDdm6JNeiBptrze + NuKYNNdmtYniUFZPYLUVRHadHdvanXCNbOl6DTwcGfLoNrgNTzPzYE4QGT66ek0am6emp3DwwAEJ + qTAW2I0bNwUQ8PChAwjNz+H555/vGKHBuQ6jYKwsr9J1MhggC5yTFdzik8/lBAl4cXkF58+dFeuH + LSEHxYgtfHG9d+Jq172YEDY3MCCkJrfSxQZ5E+x0MJt+rOo2tVL+anZh6wog0NUjVe0uS4rdy2b3 + 69cWVUOGUjrY6gberFluzQSpdlxB7ZE7RnsDRqNDi0s3NvG4JLL+Tsn2i6P2oErXWsAtIFHlu5b2 + bkTtLYRsnJHmhYT17eIKzdkqH6XJ0nwKvkEW4Z+tm7Is27Xb6LpImPerDr5YmDbaf3+iHyfDxqN7 + LP3wTs5wMRxz5HjiQnaRrKsJvP322yjkC1b8L9IlcDvr6+s4dPjgjq7CGdqr165ajEb077SADfZK + jPPkqRNYXFiQWDMLxs3NpAtMy+zTo0PD+JmvfnVPnnaCIXPkBlYb1mtQtSGddOYgZGiBceWCw1qH + OeBnZnJC4co/e1zTFO72LVXVpjNeqfYVtg1L34YL1p4TqLoqYDeBgMa+s60iVi5xlK5xKnhLX1xq + rs7zPuIWHT8wikK2QG5vFmUeW8Uw0Tx+QSn8PHVoP1KpBA7uP4Brt6eQ53opcrmZevzB3KIQaA6S + pl1l6nY630H6/szcPPn92i2WtALtamfw0juFpHYQEHSd+NSNZCR+Oi7gWqGAP8/VXHjl6ZxwDC8H + xE9sevuERr0FxoH6Shm/VtWPjglAdyC89BZKrMV5+fk+9eJzcmLOjrJryNnST7/0HGKxbpRKRaGV + Z2o2rttiiOmOGp7rrsOJjbNnz9A5TAkFJBk7jdYSN0D39/eRwMxLpvbokcN0H8exubGJufl5nD97 + XuBo9uplinVvyPya3n2DhtacxuovtoNeeV5jev5DPJh/tilV0nYjEHoLmFW1XcXmRa3RulGXe1uG + 9PZiVg1ZLdN/3E4UK5vQX/3RV7By/z4GBwaRI/N6KbGCw+MjCAci+HBmBkPxQRzY/wzGh0dwamwE + Bw+PYm6WtOfBfVhdWUCU3IAqCbBUMik9hZu6ip/7/ItYWVpChrTuiVMn8X/8xjeQq5iP1oASevMw + 4t1dWLcbp5vGO1vMpoe+0BZQVrysm9ZrlmOedv2X9iaEHKxV5VVcj9F62qqwuoUw4+wt/zSDMJqa + miYFtillQex6MTHFmafPyEnZMuJXIBCWzyUYYONtqW0SVkxOTro3eOTIodp+ohMND9sxJcdIoD+f + uXBOSkWkUKZahocpZecKz84+mE3GIth6dkxEAiZ6IzlM9JbIPNxEfmMDyXwMFTPiLhqtHm+Q1Act + oh8boOS2XpFoCN95/R10h4PoJ7M7nSki1BXEGx/cQIxM+4WNBOZDpL1WVhAM30GQ1sBqLoOpOw8w + tbBIFlUJ2WJZ6OKfP38Cb125Rm53F/rJfN9MpiQAu5zKomSXHDzq1jm2w79E2v+Nt9/BfCJl127t + 7B74mKe7QhgLlrFRDiBHmp8t0B7apN2BCjbMEG7nKijKNR4SS6p++OcRGCFy+zgJ1Zgt1tLDy2Uc + /CMCQkFiTbW+Wu8lvLHVPRLUajuhk72xsPJN6M2C7YbwwGgFP/psAscPrePI/jJWji3hj16PYWXj + oB2AbvZsf8PzslsuAhPpfB4fCalpLVmhDYv6zOD4jYTLk/ZQ2kRedmbu5lICUsLJxZ5kccySEllj + IDs7VmUgAJfXz4ce4V3Eqs52rOt28EXr9LZWOF+uUCjhu3/9Nn75734Z/9tvfn0r/Ne6q9SFimlM + +snb4D7L8yTUh7qjErTvDnBmrIx4bxf+rwdJFE2jLpapHo8i3aF24LuN98QtMo0mr2eeecbvQnti + x63YsFULiEzVpibOe0y7EWx6bLMiTeU3LJS3LU2hybrTdmLLQCxdbIhPB9spg7tLITz41n781Mtj + uD3/LqZnDqNMGq15ranuKO70N/5FG4nrlo6Taze/tIhcUUlxptWeZ1jpUObbqygcnRxHqVxFIGhK + 8SS3y3Cb0kpyU77PECPJzSyG+/qQTmcw2N8v3ymVK+QKlqDNgBXTI4E32NuD9WRa8MxYRnIGiLn/ + opGQ1LxtMiqsrkXtaknf7flCEj8KhfDpV17An77+OuyW7aZyqp6Srpay8aRM6P7fT1cwGY7go80y + AmyNGtYRFfJAopk8NqvRWiDRrtmr2umaR2pe7upaNqdjGx/OB4vUwq5RDbWCqu0Vt/P+lt9pS2yr + fALWdMA762r2fOivMpcmvO2DwXY3VNVWnm5qPoTVjQMoViO1NowW9VhKAfpxSKtOcaiegFcwoHDm + 8CQODPYiQW4A9/FxMJX75jig2t/bh/ev3sBATwxjI0NkUVSQWl/DyKljWF5ex76RAXw4fR9njhzC + EH2HF3KumEcv/R01QlheXYVB7mYozDDDBYTp/JliCVGauwMTo9DkUsRISK2t0TnHxshCSyAejSIU + jSBPgqtUquA6uZ8C3riTRlbDwA8vf4CV1U23TquV8Pavd9UUnyRDc3tbKujJ2Swrl8pecCjKpt0h + 4CljtgOaFTziui69VydRD88tfZTjUN+lVdeGta2wj9rSJaxlA2/McFXCZM3NwKOGX+lAWEH7U4xP + 7FxawcTZhWVpmeF2mHzWqkIXgEHSEhuVTVRog+bzRTyYXSbBUZZAfZKECJMwsMvFiocp6dmy0hWy + NuiNXL5AExpAsVRCiEyw5Maa9AwODPZhbZXcJrK+8vQZu1QbJMi6u7qktoahlUP038rmmjSJRyNd + dsHuTkwGLbEHZkZSqk0QpMlqi5OgG+KSFKVrUMJySsPTvVDL9movt7T22mqarDCySvExbMFTuiNe + go+V4GobDNjeKVq7hIxwSYuWIVq62B2pWhAqpaop8CK6BfuzRdyodmn5bPP7+uMFkVslAXP55h3X + 5WlwqbVV13V9Zs4nvh0TWdtQ09fvPbALSTyb147dmHbfIX9Vz69Zm5rmYv1OFvAU5LolKXqtJgTs + gt6dSH+3uUDXz41uaRVLLR79+av7hvD3x/2VN0ZdHN3HuNaEZclNBNEXR0JGI/SwfsJ3t1b4ZHc6 + d777lVvzbBdLKd1KYFnFnU+PDeH0vh7L5SiXMNrTjb+4PoPZRKXFmDYJxe2ZMNkqdNt6VeoncGE2 + 4uGr+r3nE/zaDbQa/vPUh8+VbuJiedukGsfFYQZyReZusXI76Z9rKJ8B+snC6jdaeBV1OnDrS6uP + BeTvrpX134Swr+vwt4xhKSGMeLCeJheiInUeDCJ2O5git4Era0PbsnRqxak1SONmzbHtizh1WwvL + t7VV50tAu8WuLe6iHsS9I+orXTcenoxdy7HaQU3GQ7Asnd60ttKhJdbXdsaqPZuR8g7bFoJH11WO + Oka9RutjO8mE7akM+g9ZqF0LLV6XwVaxI57wRLGMRKlqCzDH8Qg3tWBk4jnuYRi+6mXnjNaaMl2o + lUZ2QdUEoUh3uG912043o60W1mhX+67bacCGtV71f+B+braIQnbgq6g2smxb0K9b2yTeKnI4dPY+ + lqA6wa68vfR18+l5PgelyC2m4J5B02r2U7rNM+jWecqq13UyW7umDSwiaIRLaoKi5N53u1HtpBbJ + ZoFrPH+d7uKyDGUqBEy/IH1SmsGbdZ88rPtyxr3E/AE2taDzE2y/gA13wjV0i5lRrqXSdeJTJLCC + tiFlJy8rWRjBGI73aPSHiwKr4hp4yu+7a1+VrK4TLe0GU/tcIaWNNkJINRXQHS9DL5+c0i2sQOW3 + LN3YXht5s+PZV+3veKuUrdKtrSfVfvnWqxjtJfmqj8Uou8mehdXgPvzb1+62L8PWXku10aK6vlpF + AdEabZaq8za3E9XtlATVswuEo1GpLcdZdyTsFApkHHB2NRQK+GZVNxGue+aq1ynNxlObbYeprj7A + 97RKN5ElrcbCw+ruKDUGRGDYo2p0nOygCKo0NgEzwAB+2i2F91kGulMU+ZpRHZo4ikpoAKZipEyy + eqbehapmETr9EgaGggL9qxH1xF90HciCZ5Erf+mEblMI6GaVnLup2yy6U2K2bc9/A65NUy/AEVaN + smBvdJTeVVDZrJvX7WRnfbSz9JzVNufSrtqb5p/bsBEhmmlY1Vb9dgWq+HA+gSx6ROfqLRjE985d + 1u0tMNVO0XUYtdLadnEbJ9XTJbPDa5ioRx/xK+B2a6PxfP7VbtT1iZp1a9Tw6UjVcB3/Hg1USii9 + 88eIPnURuu+IdEswVHHQ0hTazqbq5j13aitRrWvMgzZDs6HLqMzfRtepY6iQ7W/aFlQVXm5S3Yh6 + 0gCI58C6+Lui67Wb8glBwx+I9ky0lBU0TTXVuYm6Q8PHM8tmG7dOuS5VTXjt1TZTutNltpXa1dsS + WqrBItdtBKnpqzoxnDndrkerLcvGsF19rvqvdnLHDix2g+W+jXqgBre3uR1vZbe0T7CoLQyAWuzQ + Xp9ae/oplW9apA7cvkZNQnSCFWK2Da7pbYZklK73htoQIftCC83CMP5xNbkFKdQDc/UOAgOHRX5I + pXuXKiFnVGiP12hPtE//14SG2/KhahvbKxFCOoOqDgoZFI9o+KUvwkzcRxc2ECNXMKpZYAV9jDw+ + 60f7A9QKtTIJXV/2rzxZIFvgKhdvq344zIZAsHestd3U4nAh+ppomxjzyqdxtW+jK4/obGhVqEO4 + aNAKulXLv2rryfpQJVBPJFujkW9uGmjPUvYKK9V4075q5Ua69RrymdfSdQSUrruu4dZ5aY9Asfrm + jLYiKETjHlMFVJnIVxut3XZf2aBumPcGxdfWX9QWhr1nCH1Qvk2tfs/TKqM1sYy9lp1jDDcuq6X9 + ynAbvpUMk2FPk+mFDVfKD1XUsAf8K0O5rQy6aWzX+mW2FVb+oWsdz/SBebr1dcqFaatZY9oV3mCm + oIlBBCdP0aoq0dtFaVpTf/br/9kX0puLrzKzjGHWsmZK1TaKg/dkTa6BGpiM9VDVchFmKSsNmlqF + rJC6Z/8ZUhdTwOjhzyMQ7vVpD1NX4WC2C3mCCku1N0P7Lt//ABMnh9EzEJLRMUSs2EWTgF3gb93n + 3Vvr6DLj0Pl1hIWzWLuFi0rVpku5vH4OU7OJcjWA2NBJQUzlRhLTFsymtkRZQNstAh6YlMz6AkKB + Au0XUyB02L/mBW2QPSk49LYaFC2oTbtsQLk1U6YKWoSl3EtAY8CbVyB8hCTTaqkRsky7EdRakGSl + mBbJqViRynIfTEd42mQUjhB3wPBMWwMb3AyttYu4YdgyplwpIz7Gzx+2+SctRh0+h0B8MIehFHQp + F1k0tzKLoFGGrlRt4aOF0ILpwUvBsLTGaEYR4Geg38quTpfnNSxoPSV8iWFUmCWpVHFDKuOThxCN + D7iqU9fVW/FlCjRGJdsdDGizpvCkyLRWf+XUYXJDrWX1KL/L2SSQ6KwXa64NW2l6eQVoLI0uRCJx + uTlBUNWmHV2HHaettRhxJX4+t4kQf1NZnI/OsyhPSEM7c8jjTHNcqBQxNDSBeFfQhtMJYn5xhYa4 + ImsBzjrzWTDaj2DhUcrW45rSOaEqWVRyazR/6+Rm0X4J2mtUMVFHhE7tYJIpj1Vcc+y3IhjWqlnE + WLsuv/Kyddm8DCZqvAXW2Biu78YuId9OcCJaRbyUQ7GUty0fJTEoUzYEfSkQRbirhxZjANX8ktUZ + ZgsvsUtM3mybCKer6M7HBVEyF8qj3F9GiQbWoMljgZWjARqOV2gikrLk6BMkzQhGBgMY75tHITGF + cj6CfPUwAr2HaQHTJM+XcHRfEQPD68hWurCai2AqGYcqR/GFY6skmJLWhJNGLqzmYGRCKOR5YWRt + P9n02FiclQoiPvQTyKfH0NMzj9T6GzR5aZSNEAbCeYt4c7QfwcFDGKAFmVmbRi61QfdvIkj+s1SU + 5y3OPwQypOnTCPX24dyP/pwgCHzvG7+DQFcJi6GoELOO0DWHdZGOr7hToezxXSg/jbdvP4uJ8UF8 + +qxGVC2gWlqCLiSQTz6AUcnYQeoank2gDAz1nMf46VcQiA4huXAfd67/exjdadsi9aCD0iLI6whK + PWcxeuJHkFm+j43pv6TnTJGADqFUjdB2z9MYFlGoltAf+v/5utIYR9Kz/FT5vt222+2+j7l2rp1j + 7yPZWZZcS9CSJVEU/iD4QcQRBBKHokhIgJQgQpAIiviDooQIAiREWTaBJJtk793ZY3Zn5+g5enqm + e7rdt92+7apyVfF8X5XL7knCj57pw3ZVfd97PM/7vt/7drgWGsxQFmogJKfu2HQatlbl61pSWqtV + A4lIWAaGt8xd+V797BaUq3W3lECRE6dDcgK3MwRD42tDnzyFds5RnAAN1MzkIQQJ94n5MXPfR/HZ + P/xjrK2seGfLZrm3T3/icW5XH7GJpzNMP+otCxs1fq9ZODpp8nM6AzGQASRpO8Wxbcpn2dCx1qgj + GQxjNhmXBki4Jv8dTdmcTLjqAQQvFDrQwbYXVgiEA7y25jw3DYvS5vptl6Hv1hA7fhhmMMB9VqTs + CMbR8BExGC0Zy/EFU/x9YE/CqJdjMPkamA0puxqN+OGJIGIhZxKUaNsR1jQYndaepI7dQ+e27XVP + 8Y6/2/bPUjaBYun47EiKMscrdba41+JQfcO7X8dJEnxwj2T8yKsesPqU9P8rQbgjneghRMqGLY5a + 0PgKR+iM2uP/it/TVMs2HAN1ByoWvd79pm278+74Fc1hePoBRFOTaHU6KEzuRyo3B390CKtX3sT8 + C3/Hd3X650zFl06Sd66DzK24HF0uAEGw0UEty1c8EIER0+VRFKF3Mo7F/7d8cZRHD2EmJ3qOL+AH + jePYqp3BQ+YFxNSKt9Biwy1TxV+/MYuf3n4QpWYYLSOIE2kNU6m3SAu6CPFmCtGm9Ei2acnJ0aIV + s49ePp49Ab3ZQLsxDzUYodd+HN/+IgV4YwX3fugQTryvjWbtJflegeh8vP/hkQkxVgVqvY3hAgVv + NorlUgnj+QyM6hpW58/L1LMwbgJRWTT2aucSKjevwaivIxXMYp9FukIr3REtT3g/Fo22rQwUc/D3 + NzaS+MZ36cliB/FPX7oX994j/qJDb5Vx+/kvApXXJLpyYoIKglYEM8efQvyeT6BOZc3lxzB8FFT0 + Mprt56gEHS9+aEmvr8IYeZimew4zh+5Hd+4evECHshuLQE1OYH2Dxvbyv2N/8qZzj7SpRiCK/Wc+ + hcjQtOPXul3cfPccardeRthY4/po3P8IPJkRQt8hwi53MHTiNE796Z878xH5z4VvfB3lH/8PEHJC + ALZlewKpUgnEly8Y432GcOvWKhXVOa4sXrW9VZHnKlWf4lbdA9+7qOBCMYFaixjbUJCJB4H4KFIR + EoZOBSPRMtLRqifdLV706zfnsazpaGsGjXIXp8bnoBBJipKK0sZt3J0IIuHv0yfLcq4fSU8inJyV + cwUsvQ6zS0Njck81yqbVlubRJ/4hujTOz8M++w66DSo7nZlFAx2JFmDFkjSqGrQhE0ou48VNBQCY + PvYY9ICfu91ATEnB0nwSZYpX1LYW0dh4253X4SA2kUGs1WrIjgz3XG8vLNiPnvY+31a9sqG9w1ps + N+vvvNb2CdARpp5QBmlALRpKSyvxPrap0zVnKA2/oGpSl3xq0I0j214SzP4FJ+GUPfFcl87yutnx + I9xX6nC9iGRukutrIxKJk0m9gfz0SV4zCT/1dLe0gHA4g53iWZc59GPEfqF4su04/0+OH8TdT3ya + b4xjbXWBC5SnE0w7PblUVdI3tRczEgaID7AepEfd1BBbo8d4/H6Y6SiCtVeRwya9ih8lCqQlgu60 + qkKRWrSkGxN34d7pKqzrP8ZyhQ8xMo3Gqfvxylt+PKZcliOnei2Uu7zO+Z0YdrsjmB2L4PoqF9WX + Qz32m9BVHS9fXsCn5l7mZ19waZzzcEka2hefGUMmW8BdD0/xwWN49itNIrAwdchAdYcbZCryXJ3t + eqdwMomx6YOw/IJ6WfJ5O1oLBW4sgQURBZWMiibiCmLDBOWyqRAKEYplVGSRrYS7tjOBqEsPJb2F + bQ9UnAuKFOTGpBGPivFZFbz0egWF8SE5iVlpk6K2G7yW5TpDJ9YTi40if9+v4vzSJoW3yfuIIx2M + ory7g0CkV89ke3EMne+bPfgwMuPHMTycx7lri7Dv+wCiU5PwR2iQ37qO2oWYPODeb9FM3xqKwPJF + sbaxyueyUDhymtTHj8blryIRbhOZRYX5dKmh6ElPFEXPN/zBX4aRG8LCf3wLfipy+dZNKqQiv4IC + 2lumG6JSXeoqnISOEJ1DJBpHs1oZ4C9Oh1v57K4BXq0Bu+2I7GwhJoEp/EdNFJAdSyBClLV6+WUk + w/1IiU4BvU0kMkU0JwbStriPVcNAixvZ4vpFEmnKVt2Z3whH3oTJTGRnkeeajVBGqy0diSANpNbB + 9uYmVhdeofy3XIWVxB5GqYIwKW/hiSfRLG6gNP8O0kM5KIUphCYP4OJz/4JQNuOAXjc8UDUaOHv7 + XWxUFvDkkV+n002gqi7iysYlFJe3cH80g4ipello0VEjEso48iYOpHcVSSstN5HRWzYx9ahtEgHT + EfisFuW8L0MdgrRWh06ZOukXAkMEH4/2OhgFJQUUzsNUsgj6d+lASvwiGhfMwogi7q/LOJyYyg7Z + e8yxB3sLC3qdeZU9SY5ejDUaH4ZBg6XpHQksWvUVhCKzsP1iSK8BMBPP7A+dZgmZ2DQyI0fRqO1I + 2VQGSruFHvht12Zb7qHcrqHJhzC4wVqniYDpd+IhersfJHcRpkGhuDJJJftAGpGpY7jygU+iQw/8 + kclpHB36e9R3yyidJU3UEu7i+1An/TqU3kJnTWzYCZqyFCKbRaSngOXMQVSqO0haTS/2Y1H4fRTe + zzyxD2EYOD8MXF7qYHpsDJUaPSo3Utcijrd3o1pO7CeAWtlEo9yC2TmCxSs3kUyP4yO/dy++81fP + OrEqy/bmGkrBFRA+KLKn4m+a9KZRwv5Iqsmf19EN6DI5IeNNbqmCCOHMv1fkdWwE41m0gxPQibos + y8/73pX1JMqewLYw9BFs8t7CgS6q9Q28fW4JB/YR7gdNIkd6c6PudnTsRQy4LyK+tV7ETGYcb6yu + Y+HiBUS3iiiXL2J0ythbnmo76teubSAwdRrzF5dw9cY2du86gkqHwkoWtct1t5F0PKUbEzTlurXx + XvF5XK29g3xrDLNKAbmxKGqXTD5rTKIQwRAcJ0ejTKNm0uAUHnqIyIVCmSKl5p0ceOrXUL56DVd+ + /Cyidj/oaveDQ7JDpc9nIx6OoV2puhRMkePful0dQTvkyqaCXCqBJJ3PoX0FGuw25sWJfInU/LLN + juVYBC92Kicyce0fues0RoLD+Ifvf5XXIoLl53aIJkJwUZ/VM9gqakSZyegE5TqO7aaOrbqGUzM5 + 0kofqaxAoR03nunsjeWqQmB2HP6jJzFyXwQ7N66j/NLzCJ66F5H9R9x16r3eknJ3c2UJE5kDOJq7 + m44ojCX7R1hrX+VnTWOOBtNqVpzCWo/NOd+oboxOoCiTkLhL5B6Q066cEIDOr9ljj2J88ghef/67 + NA6biPod2dPoNppdn5ijhcbOFkaGkohYhhegb3dtNM04Py8lu9mq3RxKOzuYO3YG1bVb6JZ/Cr/P + oIPXnbbn/ghCZF7h6DDlmSiXTjYadsCJpjWhifgY9k6vKq0vIkB9FcxBoE8R89aaZa5rC5WtBTKh + KjqtdSI6yplBJiepo2ObZORcnG3uT65X0dU11Ctb/CkErUGqQfTkCzhjvTvtep/Uu/xe9CFvitjG + wzm8e+AAzt5oynKGcd7UkXxEjGl1Z/CpXm5tbMhCp7uA1bHfQJPUUyiLmBfqo6H02R1+L6BnW6I3 + aUz4xzAXaDhu4Qvfnsdvf2gfFlapVDd3MJUJ4sFpGsOyKYPRPYXoCdRQPoujD57Et77wjDSWT/3B + 0xg7GfemyNh3FHQ6aDfIjQ+RdpAOmCKo3IJi0FjTYwkkZdu6V+0v752LuFks8d59iI2dgJ05DW3x + dYQLkwj5ktDWnqOh3e3H0vgezQhhaaWBZj3GH2ys3lzA5feAXzqToBcqo0JFNA3FMY7uO0NDaWxu + XSLFvYpsy0RVyeEyBeP2yH3o6NcxGdikABiekAujcevNf8O5t95EaPgx1LQkSskytpURGgIa5i0d + MTMkPZ3dCwnQbG2XzuHi26+h7eP3zXcRi4wjnueeqKSc3fRAlsyhFiI6FyiMIH3oIK5+/6dEvz6k + jx3F3Ic/hO/97mckarEGKzp71evc3nhuAsWVDdm7fjBlL+h5lwJrWUHvHKRBqP3+Bw8jFVNQbbZx + 9txVItE2jE5AbJmH+BxK3I/n3FxdxrHTh1Bt1JCMjCJAOfAL8mn3aJTPdVo2EWSKXl+HpggH1ZZh + hDeWSrLdTrguJowb3qFy9NMwkn3EhrLYfe1V7mebdNRC/tgRMbbZMbi9MXWWU7IwmZ+AFgiiYmzg + 7K3nMFdI4kDgSUzcdRjNW5t05C+6yZafd2DNko7F8KeQLxzB2tI5RIO6h643V1aIKBvI5MYoX9y3 + 1m33hIlFpBZFtVIjeikhn447iRsKZFs30bKiGJ44hMbmiqSBaoioK51DYer90F9fhrVM9DVpwEwS + 0Migv0kkN0KDNQKVNFgZChMQDGFj5TqCBAvtxjYGz0lJurtb5PfrTgxcdfar3djgn+lcG23n52rR + Teru7QzTA0r+3kbLdHEkQTi2zzFYuoVMIU/qkpRvqpc3vaMb3uho0cakZEHnzW7PLCO2HYXZTOH0 + 1DUargphvg+G7vdGmCsk/qn0Bn7SPUlLeRijl57DqLEtQrqklhkcrekYibRkWlF4TomYCGMNGq1y + M4A/+/BRvHZ7HXfHFfzK+A6CaheXd1YRoOezrX5KtxcvWFssYuV8HU///iNYuLyIr33um3js4w9Q + 8Xwy8N1DMZbVr3VpWxFs4TCKGuG14QTiRZ/tAGH8WOcN/rzqoBLbydJVfFQmUsWC2ZGTj3fXtjE2 + fprer4R6eD9K9i6m7LPcxAYEghZDImyrjE+eSeMjDyVxezuEWxvb+NTTp/DwmTyWt5tIRT+G1Vf/ + Gb7uujdks7pdRDgxCkSzhOddvFfewa1aDXYsjp1uhnqiYn94xXEQLtRK+JpEPE3sf+gQXjq7RCPV + IK6icbhcRPPSDzCVuORmKB243eU3q6Qm9twydq52cNeDBVQmV3H1eh1hZZaGTvOanvXWWhNTpOfm + uGcB/PDzf4HR2RkcePLD+N8/+Rxu/Pd/Ee4rcsir/TNVhwFk8lN48+IttNv63gAuFVsjnYunUl7G + s9JoYL1cw9mLRYxlkzRoimyvY+mmh3Z7Qm3BmX0oRtrPTUzj9evvYIYORLTdaXc1Okwdca+HltIv + fRE98kkX/Z1VRMgu1HgcIaLmdFzEVQhLiUj6ldh2P7As7u37z6D24k/kRPP03HG0djoITNoDRQT9 + UPjs+DQqtPSNYh0fnPktHMwfhl8Jy3jN5ZtbLruwPVXbc6JBhGOo7Fqd+195FdGQr1+YLFDi1i2Y + tRuyq0pQZGd9Ll3jM7dbJeToXCam56jP6+KXMrPbJs0fnT5OutDzGj4ng69VUVu5gYJN1Jx4FLXO + JrYyJdptwRxaZDYtrtUu2WUbwWgMwQBdgd+PUCgnEZMzBkyV6xoIJvj6OtmnT2bqnQaUQSKtBkKB + qFwf09JkMkIhehSZ63A4LtmKAAmeI+63XOUm02O3apvklTn5MHtGjFsYOFvm1KSoRGSTWybKSR3b + o5tInWhimohhInIZjYpB5BAgSom6/N2Uvcn16gapXBdaNgx19iQ6xeuopjJYic5i6Py7OO5bldkl + KdPCCHV4X3zor7x4A7OpKNFVBX95Hx+k+BbqNVKkdIHeJoxlQV3lKjtTYgy9gbsfHUImk0Ug+S08 + +OQIjUUGL//n684wQBdeuxUpTgCdyrdTq+CqoZM6CRpsSJ7epTJG/HkkjLSbTu4jMpsGSKOHqFE4 + TG0eQ91FQu8nSO+G0V38NrEYjQm44aZjsCzJw1tId+eRiFUxtu9xHDeS2HfYj9dWX0CtVcZB0gI/ + UapNg6W4J3ubnRKWr75AgYihxs8pDj0OtCoYC66gyjVOqb47SrocgRcUv1TaQD4bxZmjU2i0Wzi/ + 3ESdiFgpvcf72fIwg4gZXKnsYmW0ix0++/LVFYTXw8iocTwRG0JA25DKZNv2QIZLoSElertyDdGR + ETz55S+TdvF32TSGDh/D1sJlp17L7le6yzif2UXx6lt45H0fx9fomSuVkjd/UlxDJ3qSZS5wslbC + Pz7z3Hk+D1G/soF4PITR8WHkckG0WrteMHlwEUTy5ZuvPMt96cqHOzA6h0Pj+2BkNazeuOIWM7ll + rGKttA4NXRXVnSqiu1S+SAZiilYilUTQbIsGZG6/G8VDANJvX70NXVnzDHk0GYdfCHuj0ut76gae + FZnI2FxdQCI9gftn70Otuom15QUPfdYqq/3ncONBPdmU3WLd0pJ4xOceQTO9AbaCQvl4f+LaznTt + gcJrS5dl29JoiLILkdl0o+YKkeP2yrxEtgGFrCLgOP1sOoTi6tsIdSsI7GxAPZ6DGpslraAu6Tto + lHdhNK+RDVC2ed1d/3n6LTIr2+/W3bkHuEQXjvx+VHe3SDdjRGJ5Oqk2DVYY5a1lsgpS0TANGp1P + OCjeq2J7cw3ZsQms3ToHmRFyJ1f53SIV+cHl5ffw/L/+EZFWin/0I5EpID28H4nsBBqlooTPKt8s + hU4Eb+jhpvnQ2pUNXKqQLqRbuDvRwTY9cnExiE4z5oweF4tsikRyACE9hCexiJff+y5ujz8Ia+5h + GA0NuYVreH96HeGAToGMy7ND4r7Uho6PETm82DiHxc1hBEjXlHoZtl5FaviANLDdyibRiOVSfUUa + hd2NWyhMV7kvGnlyDVukUg999BEu7gi2FwXXT3H7GgNloBZRSgvr6yu42JhBgUjkeIjQnPjvtdY+ + XG+dQpzQO2v2g4lCAJNkYXF6AGEuTNUvU/E7ay+jnX0/svnjSG48D6VLWiEUr0cNZA93BYnCfuSO + 3I+AP4rKblnGbo6kT6N5c4meZ5eGzYf+eFnSL3og/oFoDUhWL6OuhpBp17AvvETP48b8BlLZQtj9 + 9RUs/uhvYGfvgXJomusbwdSsHxcobNWmiYmo6gXqxdvWt7pYrnONu0E+bwxxPY68j+uOiNPhE13P + +wsvKSKel773LOZ/8EMaqSwufedZxPLDSJIi7Wxt8JncVPXA4RBroFxV2FnRfLCXLnd01UKn0/EU + UdSPnRhXEPSV6VD8qHd4H20N6wsvonabXt7qYCyhe0ZULEWYF3kklccikVKJClmnc7VqG1g//6LM + YibolCIxhxL3on9+u46E0kIibkIhms1PHqKnt7G2soTi8jnkhxQiBZ93SkGhLATmJqDX6lDLVe6/ + GJDRxVqLMlmswVx9B+GxjJu1dTNrpobl+ZeQogIn0zNYXXiV99Py8JdTc2S7KN6UDlK0ya5Wq8gW + ht0YreUhT3ug2CoU4BoFlYFGh7ZbWGvLWq5YSNB/yrzVpJNR5LP7qWdDckh0x3Molm15sS3Fr0E/ + FEJ3/xSNtWMuFMqQj4jJ7A6jTTm1ZYa3iS5BgqI2ZamCoMmCJckBJDSkIv6ULcyQwl5BMpFCo1rC + +NwxOai1Xlvn+ogBG2EZR261q/L9tfo6UfYoqqUb1C+nzlF55Wu/c6ZRW35eJ60SNEl1vaE6ENfp + hY19Pqf+SmZ4OuScWts7HtCgELTpBZIqrbxciIBnFUVQUAQ6Dz7yaaeeiQtmqVE07Di5c4AKaGMo + YEplcPpa+2UB5YXXf4jDQz4M+w25iC2FvN+MIZVKcwMUL75h0dBcK1dkqry+vULlqkvPM1i81ysz + zY2d5OdnaO2vQG9tyN92+Mz5sWOyHXTNF8Zt9QBihNDT8tSbzp+nUMEIqd06hu0irxPCdvGGvI5z + ANoZ3KqGRMtjC1FhpFUD7fgDCDVW4NOX3JhEv6jOGTIbRGL0CMIxbkqd9G1onALNe1g+C6W15I2s + tn9O2+A6ofO2MYRxIoKIT+vTArtfna64BlyRsN/GditKscrTGNiI2WVMpjS+VwSiSf9n7pZjw4xw + VNJdUbrhF7VUspjVlAWx1FC3Ej2AjZvz3DcdO1fK0De7Mq5iBwLSiAkqZlAQRd2MaCs/8uh+mHFH + hvzco7Ex0kuiYtUfRHLiOL70+b+lA+x6w2ILog/bXWlM7tvPzwj3Z16KgDw/sKmpkn7n4kJWSCfl + ffWzfdKwugorqsE1yk7d6MqT/kMije8l/hU34zWIy5xQgZAefzjpHCcjLRGTilSlNw9RRTCcQigc + 88ohZZkDjWi32YCaHZI1f47xVCViEFOnTKPuHPQV2VhZ8iI703unHO4cDaHrHZw8cQKRsHu/1Iv5 + a7cJBJou21G8o0qDsnXn7EevQNW2Bk5EuD3k7f7ZXdst+O4VIDvNIrG3xs/rkuQkg2T236Sx02r8 + 2pH1XD5Vl7IrjJSQlUAgiRhl28/93tleQiQSlYhRDYhxcNTF6o5EXrqwJ0J2iNhEcidJOl6tbvFS + Lbc+lHfxj5996kyzvkmDZbiKpOw5oGh5Rwfc+m/VGVRq8cNt0xg4pzB4dlrxApk9F2BQ6KNEVAEK + gerSKnugGK//AZa8cTHKfmvlGtLBIMJ+v/u5TrUrRH2OaGMjK5p9Eq3sNGqEk6RlnSphbdM7JrM3 + fucEJhXXg/TApWhjEUuOymI2p8jN6gcPRKFbr/JfcUYqiIGy7co6Qr6mU1/VQ07w9Y8w0UB0eyl8 + sQaq7RXbivhHL9XrYqIeHnIL9hzP2q/yVu44taPAra92X+DWIA8Enu2eAtjKHgTVC4B6lcYicM7n + D9GTyaI+ZfAz3Wndcp37h1dFUWhrZw0BtesgJvGZgu5TAC1RX2U713dOPijSCcqciHe+Tu2fxBFr + YvYqwt0dE9ejYmdHhJCHB+qsf8GRmV7bZGkAnAp6p2rcxt4+ZP3jQkqvrnrP8SllT+cBtbc3vSM4 + vcZboj4Qog9/yD2R4B1w7Z9r9Y6vOc+ltYk8FNOrq/OUXtl7FF5xY3DiB4MoUCh0IBTwCvl36ZiD + PsVzyHvkHD9n2oJyx9nJPR2YlTuOV1kDjQ8UZ4K6fcdh5zun4fTmBwpPZeqk7DXeeElUwsn971Ws + C9kSgELoqhc1FDReUTz98fo6uKdCPBvCdbPcPf8/AQYA5ArHvsIrNu0AAAAASUVORK5CYIJQSwME + FAAAAAgAYrlOUdBfzvrQDwAA0g8AAAsAAABpbWcvY2RuLnBuZ02XdzzV3x/HPy5XMnJtl4yUGddF + MiIje2V3cXGvvSqy+bqIK6OUa1wj84ZI172Rzb1W9ohEJQoZlT0qo363/vqdP845j/M45/14v99n + PV8plhaGbMwCzAAAsBkb6VkDAB0/rZ/BxEir+Q0qpWgNNEQfEWJz2yskHH3HE9DxuO3mKWp8E+3t + ae2J9ogMGvDUAAD2EGM9HduI998Lnc3OTvP0jWF2R9RRyZOXa56nvnp5cbHFPN82HS9zp1zVlySg + /Nz2w1aW4b1GP0/wbtdFxFdTYRnRmGruPgvX6kNsqGwvzobBYkrijhPdg4Ke4jgH3jA8dq6u6GUO + 1jnMa+Xb6HHsxBSVpDQ8275bHDza/gMpBvx/mVjQ4QGUoIKxFMOA0WROg5vj9VIJ7d4W8qr7jCc/ + 0+MH7usiiyA8nhZZHJVzJXzzCnBoclraV3oQPRBHBYAlegV+lHSRpdwvR8p6eoF57fj79g8QfsDM + P25sQ3KTGNY37z2+Uvqq5OGGOcxKgswUT0d9zMsf2IBdPufH2cW5o5luECGEofxdUja6WX4YJy+p + SIyJLYECF3+hnTQ1X7Y67G7nmUnc+O75MqJ/ZR8332rnkNPLhb9LBVBnPgtovZzyDRecWGMziaxr + aBaphfBeh2b2rigGM4LoZb+4/sCvfds3zH8YK9Pfe3gvRx/bC9ZGxT1oCozJ6XCkEH79tNHyIcwL + B9S9nALF0wFUv3gqYJk/MGBscoHzldYljNbU1JSVqKV6mK2Tk2lhYSGE/5IpSpwSewJofiTGlDir + F1bYDj7GQBsQCNUmgIk1EGqYfjb+CkM8nTYM0oOlAgn8TbqbySNdn4IE6o5efhVKqKqqGuh1rE9m + cYOnqi5ygK5QT2cYYMfNUjhDe52mNyuXl72qa2vvfQGxMObq4aW4dD1gaTcpJB+v9bD4qB7UpzM6 + qLirxDGSmIAZ5YUQ7KcRZeeHkv69OxMbT1V/351JZyolm3d99UM+QcGN5OTk6mP/YC6dYWIdHxBL + 4W3Ssd2KxrjqSX9oNr+d3PV2uP6NAghNJl3sAS3u/hqXEYVrex+y6JW1orQ23VWeXsuau3vCkpp2 + SaI1LZHozcQKt0fMcObBAoMX9IsdIMRxZOdmQlhwWj21CycPgOhZtZMTBaaTsJVj6fHOcjCORDBt + zAAhwbWnujwhl3jeZZkQQH6MP8F8/huEppzQGl4Z+y/v9iwMjIBaIlgHycRKygmyInIOiDRh/6bx + 8rWkgbTAezTPrBmJS4xj+nrQzPYjqH3aA4qgbbz/ZzUD+voTW6BKli/5rw2AZgw40WZ91b5UySxb + IgMwMK4OftqWVEP9Pa4x0Cbc0CkbjQIBwFmHNifwQL1oawZbDdCOH/B3tSicyptLzqkvNJLAO4dS + mHaYD2Fzw6c0ziMVvwlyb0UtHDfKb8iPucQelTucmjvIzMqzd+mpLP79YFlkdAV3y/9ca1H5/vcW + bh7MjzlNRxcLXRRSTKrt+JVC2fO0lNNBn9nYCZUrjt+kdyqrwGTJjqxRTIhWXocsg+GhC1+2tBJb + Al/tn5WV4kW5U/FBiaS91BEH63fB1os/krjWAsbcZLrLLh0uRBffT1lvguQ31YSWinlWEHx8fd/9 + eZ9yg9IctDiZNEb5uWBqBDAYsKPRaH4JNq6jGefDKGn9AbOGQBUWu1qIAAZ+dParrhruFLvwsefx + idYobilTw/kcnIyQNbssbJhxK4BwqvCjN0+4kXJalXJLgZFNmDvhjeEMKJdDV0lKb1kj30b//uvl + 0JxhCbfzQXl2X7ttXTC/PJ2/fVp8qAXzpfPPXyEyDZF62crbvljxVdwr1CKEumpPbofjJ/cCxQnL + EOJS5ose79mvYs1C52ABELM1uSxdj4Ovvp0zUQyrJkMujskatb9+1nJJOyKdbaL5tWpsuvLRGRlo + NTvDimGGKzhXidyiNQ3LqZQc4VmuL7DsuiRbJ3hXFDp8kbOn/EJAZ4ipmCI1hpeVwiSJOT502iNM + Y+ymmsOmfvquDgtGqvg6yb1WHB9tyBny++lkl8LSh6zmxh8LLuBIHl2XwzOS3plbS2iCSlJLxjJF + Rq14++4vfckdclsCj/RVvn0bTOdcmDzzbvBihJUei7kXIFOusPpsNdiRQeJWn6DL9widYG18cx2y + odGIxQrd+9iQ9jYTRjfFXbGRj+xORd5LSlogIwLuB7xJyIpYRo3erXqlLCOwUlYg2ZWwA7dgnHmQ + 8Dx079uK47OrYyUcMBwk7+qX2ZzwAa+E/frZtw5TahuSkwYuCyTzDzP1bg/E3nHDWdemo1dbI4Lr + BfxlMkYn1g2fGbguo/dk6K482tT3i15jePlnL7HaPeGqfGiiv8r60Va4950P1u1G1td5IAtdGKvr + yisI5EhuUJVGftOYRejKE+x0XFSH8ZPVWFdN61Azb3/NcrtRZGM5lXskLH18OV6jzqS5+pio9vNF + B1nHdK0G2tizm3N48/Ig3lXTqtf8LjXuRaL/8RtL9FjGTbBBXlZEToNxqaW2S2DZ1G+Kx6s3GmL/ + 3Xb3qaae0fgIKTvwzpf5rdFq8F2MZzccymDAxMLy6qlwWWnSlLINeJmfgXEGyzXvT5ibPmMbU8S+ + DoPrIhG2sAwwfQfr13yYPveIQBObKdjAGFD+imtJn1lzY3xoo5JPOcuKLI0kr/HN54XwkjxtwFna + xFJ3PdXkoYTVCNBi7HLmY9dwG4V3d0v55o8Y7FnHQU4/CLo+FXoZ1WwObp1SH4eSmvVlZdlvvPXB + iBN+bMVKtvNksBtc/Vk+zGX7DgfNQkfoWKDcyIi5fLi+kMjHdrv91Q/WW1Q1iyDpVpLU7erTvYXb + 3L9dPi2vkotjl09WjI1DiBBvlUHskWRqET3m0ZhTG4X/jNxeMsX509iMIyqxKcA32aCsb/y39eqj + ITBQcl74HFzJww3YeR1+RlAMjks2bXS2F4tLu5Ct7BSQXpfWo+M6Ra+yawO2KFTXr7xeDJNj5RnN + wXzJvnHnwx0bsJiXPa8kdqLgaIBVli+7hM/YZCGVZKtZK1cwYi2T/f7g9tXi640sl5X7h6R5ZvQn + uDZOK0Zcrr/V35bOScpy0EfABE8etrnEXMlxQM0MK3o+cmopHYFMG5UZuEnWCcJwGm+XXZR+s7fq + Z7cY+DEk7bbk4uouCE5MR31WgOXVXGrXN5oGArpnZ886t0eFTnZUVEgwMwx6Y2uePy8fHR10f/q7 + tLQ0AyGbE10FvTng4beveXJsYlCxWb/S++PqOymIYIMATPSDEIm+1NLHMOi1X2dgUgsHGWrVUsPm + /rwhT07c+cXMLo4ocd3+TSasvC3B7lw8T0hIyDjZva/omOiNCk+jLn3+r9Vgzna+tzFk6J7bATyW + /nNbu5Cux7CF0VQtoibwIzJ9Lv4jDuQOguSuf060DfZyVIwKCQVFDvShEMiw9fd220F+7nCv62Ft + VdMpF5g3qskeYhUnSrJtjAz7+/tJRfMBLIy3R3Ye2yH5lKhd/rAkd/hrnzeWP/qZWSTSaxtkNZ+C + ULxRDyPJs3ehJ19KsR1pKvKLOjLGDHbAMMrLK+nq0fe6F8VVF+Ym5uYswjdmyQ/SepDj11Cgq6Ud + 0EvcQrN2sm3LukRXStFFx3eNt0XajzZarzCbOQhK86ZtC4Zqb6p8Sxjd8Gkht/jSa3Ra5agZVXf8 + bHTdKflFT+gfq5hbC77d8UtCSDMqi+jcaiDy31ZnQ/HAqWQ8Hj8l3ybRg31+39Rg1mNyXbqF8mfF + rpCgsMoFSmAk8NACHOwsszZB7JBI3/XU+AZIHrPxSyDlGLXsITZC9qP5guDMs2+dY971/MFip2cH + aiZG975rHhtlU6VsGFnXO2oo0RfxHehy/SO918uWVN9bE+D6WNSFrmx0vJrv2z91Ie9wW98fzNo/ + 69ew+xZu7bY5dGuIz31vVuWKE8e1a9eIJAHT0/d9NVlkFb8r+gbh24TZ131ZX9MetRex7LOEyZWc + SlMmU3lNC46F9zqYsjM/Pe9YMz0gRG9reMqUqA41lwZWtGL7d5+UhxvveMw3J0nU4MF4DQQHOS++ + Ttf2xg2VmI3Z5m6Ljr47MM4jX1nFimG77XJ81Ze3ejBYt3Gng4+MeW1z5bkslgOTy3Q4cw+LKbhX + r9aNZdEvXjb+xsLO4PZfIn5h6xXpq/JSM+NLAlbGc83mwdtak47q+gMeE9u7VBPm+24tQvbHHpOy + 0DD8DhnKC4WZRl+WnxjRxQ0HjILPv6Ze4c3xPSdrPzY0WJswZc5r/tkHc9BK5MQLUPBhhgcT3W/D + 8v98pRCbVoQS2kzSc1XpgHqHFWF2Zex/3Fstt1nLRVy1gFdWIlspC6HrJ9dQcZ71U+BVlL/z1Ipx + 5boab7V9ctrtAujQn8CMOW3UbNoXaaV9ztxy8WjwD7U+k2ZbpnPF0UhxpvumOoNmJ2grBfV4LgZG + o3ghXpej7iV8yMb8NO3vcY0NHj/4x2QAmgbEJM3MzMwsowtmv1zbjBxoG2WMN7p5EMPECqjv+q3c + Ovy9e+pJi1eDPQJxt1O0Q5uJVaq7SapNdbvGjo9USU46s1mFubA5MWF9K3qpn6O79x/lPY3rXLyU + 5PgUidihEbk2WFXBs2JOgZ+XO7080IrGxhD+xoSsPM8Z6WQWGpR5rvIk6Ewr0Rz66PwkJ4dXPWQV + ImNtiPrTjPft1ZQpCPD7lLo76Xh4gvHz85vg9qcjoaiXWYXHzMNqEsMT+89yfcC0jrlOLIh1CtF0 + A71lnqKSzGCWqpcZh8Da7il3M1qo/KZXPb0oYmfNbmSw9ILeWJFqb2QJb//SOad4fuIVGPWSJhuq + dDPDY5inZTfsGZ42ru7KqnfreoymrhvnTVz9Jxx2pbiT2oa45N+rPMsyek0+bgxy6AGfDzoHp3qY + MES2pukbIWRkYfTgo5lCnMQZ+nAmEP2SqAXn3oV/XjWj+KquVwxkkBxpsCt8w0QAHf+XjakQtA6E + D0Qfh4ZxkNbCE2QAQBsF/CPWvwJMFA7QZAcABNB9fEMNyN/VGh4bmxweNpuSRDo7Z1eDmGtVeNOw + NPDgfXzo6e7BCWfbhu+njkj5uXFpND77UCVGz3c6Vxz2eNiPX5kMJuJPI+CArSTsGIK1EhSHctmb + idCSnsyiR5NTAaIw2lV6YYlUJZZKxJrj2RID9ZLNKDbvaejMLw5D995Ze7GleNjbrV62kE/weBhh + VNy0oSBZTy8iDP5kGZRn/+0WsjXs5sHqa8J/61rkJubontDhlG95Oe1yqLOs8LuwtF5xSXiqflmO + WsGbz1CxSFwMTSZUsatopscioGOr5c9Nif09hhY+TMmdAGH2AqZJ4alFa3Q4P4heOzIjZXxR/LrY + 0wep0HCTOL7/l7hxS8eucXTAOnWB8nH92ezfIWN9Cz2iLuru/wBQSwMEFAAAAAgAYrlOUfVPJ2ou + NwAAWg0BAA8AAABqcy9ib290c3RyYXAuanPtfX93G8et6P/6FCNH95IbU5Qct7eJElpHtpRb3edY + epbc3D5VbVfkStqE4rLcpWWlVj/7AzC/gNnZJSk7zr3nWKenMXdmMBgMBgNgMJitL9fX1JfqeVFU + ZTVLp+rt0/7T/n+o7nVVTXe2tq6y6sKW9YfFTYK1XxTTu1l+dV2pr7afPNmE//u9Or3Nqyqb9dTh + ZNjHSi/zYTYps5GaT0bZTFXXmfrh8FSN9WeosbW2ll+qbnU3zYpL9dP/nWezOzUYDFQHW1zmk2zU + SdQ/1xS0nRW3apLdqoPZrJh1Ow7dv3RK9V/p2/RkOMunlZpl/5jns6w00DrJ2v3a2uPL+WRY5cVE + dTc0vM68zBS0z4dV51v4/TadqbfZrMQ6A7XRv5z0f/oHAuiX03FedTuqk5xtn9tffYCrFOLeNa2g + UH2nvlL//u8WztkT/PJNot6/V7wWDO9JUA0+fcM/fYUtn9RaPlNfJRr9hxPEjfJJ/5v+E1XM1DVM + I87axbxS4+KWJiqduHpPaaj3a/ddDSD5dm1t60ucpY/yJ1hvR8H/T8ocp6r/U2k4Eas08OLWTzDQ + kga69YVvW2KTj4nhQ9gdWZ3WUImI59X1/IJQrm4vyi03iq2LcXGxdZOWAGrr5eGLg1cnB8nHRJ9W + 2cIVAB+2ttSLkxN1+nrv1cnh6eHRK3Xy5vj46DWM4uS6mFfwvx07D7e3t/2bAkY5yX+Z0agSDeGD + CA0gHJp+Mg8mo67lelym2RhW6KgYzm+ySdUfzrK0yg7GGf7qdhxdgWtdC4IFYA7eQp1X6Q0shoEB + qNSP2cXPeXXqulM7qnMbfIO2nZ6p/0PxC6sMf1DfI5uxmkeyHtUsBFBVxFtWQcN6H1TxXg/xEhZx + F8c5gaGpfBIZb+KGizIrG/fL6m6cnWGDc7UOTOLkra+pQHRU89lE/VNBjzsRqKb9vWlwz5EybS/T + MbAZMEb2DiTnMK8I2zz7WnWV6v+tr2WL5h3DW7AgrvrpOHt3kw6H6S1x17AsN8Xy1iI6u5mPYfYl + TQeeibqj+SzFf3H+GabjcUbVEDf3eYP4qrrOS/q00cV/Jn0gN3BVGfAC6wJAe5DVbJ6p+0T0dZEO + fxZIYQuchnXdLIG+oPOkD2vx6iqbdTf65Xw6LWZVn0lDmILEULjMqtP8JoP12LXwe8qNlFPfjIYI + vNEVGOhBRnqiUYi1pyeUMI41SExvawZkhvwBG2U2zNNxPyAdW3gX+WR0Cjv/ThQNHLBdDqNsnF3h + PC9VGzav0Rjq+eFmnKlxHBvdrF+lM9hNkn5e6pm2w1BZX0M4uvjJ/GvWT6fT8R3V6yloR6KnTAK+ + Vzjzn2ifhPUBBFh5i6Rmn3dH/7fK7rj38gA2wxcv92CX3D/4/vAV7ZJt+96a0SxHeXmTl7jrdM5G + aZVumg+DRzQhj847puIe/gRm4uICRINdrvhvkEjdzhBk6c8ghgycHq30/nBclJmTqASr/6eD1ye4 + l0PXxCkdX+R3+r/tv3m9d6qrPfn9tq8ynRVVgeq5hi3x4kJ1AxFQhLmRnK6ohNU7rEDqD3StflpV + oK8SHfQi7HARY6v7NdsA4HqWXXaSeh33T1Co7b/7s2w6TodZd6v/ZXd38MXZX/9Snn+5kWz1VAcs + DJhAnOup2Zz+wDcyGt00ncGKp8E5/DzOQIkMSEWCbz+7TOfjSkpN3bw/ziZX1bUfGAPr569E84LY + wgzO4GGB2F0iIzuFNmPkB2gJstY25MiBhDNIHWsUM5DpgdA2sGfZTfE2ezFOy7LbySd2Xtyc63Kr + bPmBAP1GWZUOr9XlrLhRGhpskmB3KOoSbb+JGo4zMCzmU4VzL2nQ1+27fhfUYxqxQRn0upIssS0M + Zt7CvU5LM57LdJTBXO/Kjt2+0LTTizEnvnpM9+g2LqxE7axZpUrQUK9WLmCOX775z8NXS0oYqTQf + j+dX+aRbTLnOw3SBfoY0rusBfA3LBWzkF8yXcmyKv5BSjkuZarmOhUm8Yg/0MQQ0ILOVSGW23oRB + MM4APQa0jDu4NCdXMHXY+kwXnPdR9elueEzvneBDjIvxyNrx1PmaVRlTI2H938CQTdTovwA1E7Q5 + I1P2NAw+Ta+O1IujV9/DpnTaMEGyz/6kAJiXILirUBs0jOywGyD6cT2OY7C/d7q3uXd8GOtea3zW + SmKbhltPNDub6TTn20hU6n8ypeZiXlUPMfx1u89qjf9bRa15/ub0FHb+4zfPAZOV1BtHLLPontM8 + BMoLybmeWc+ld1+BfNgwpVpryLiIpXLTRmsV/exdBVp+95/3PdNRH7Dce/Py9MRD923z8mWRjkBu + MEOPpINpa/UiqRgFgJ21MtawTgEHMMXNr36/3wmg+pUDRtpJBfuDoEaJX7jaNNICqAMLML0AW7Aj + zFFjjzo6ucK3KRXCdzRfYKeezivc2lQHSjroLbiubsYemBG7WJ9kshHZhI56DP3jwDpeZ8BKsNui + oQkFKIQn8zGooQ5AxxWC9ICvZ9DvedeqHcAw03l5rarC7P7jopjiLxDZxS0qWTcl/iznFzd5Fdq0 + G0jFd3fRbcp1RVsB4X9u0YPhc66xpTuK1RV7lR4+7jBsejvcVqxxEtr3rhSpkY5GWr0YJVotHYE0 + dYahytD7QbuagNTah3dL2E64WjayatAe9RbYoNoQSHpqO2nkzKq4uhpn0T2IXBZg8145Z0ZEBRYs + 6XVWbdho4INHRiSDZcNU0SY9mOATE9fAX+aw5C2Ds7nT1XFU024HhwXzhjM5AyoWnZq9z2sPr7Ph + z3iwkLCxBkQ3iOre+ymQ6W3mFFCjT9qvciYd5o4zwoqMK5pGQSheFO9qA2kcCfrwZP9e8bX9N49X + ttRz2IC8XYgxPHqLUWBTaJBJLCyv+FOBtX40tSwZAhqTIZjO8nQTzK+yJBzWl0Vi2VHfc9XL7pYr + KekfX0sPDW2up0c0db0cO7yu3VyBb2oad3HxE9i4HbSj9NfFKr7pQer4WvYYv5ndoxMhhFmvegaM + nm/mo2tRdmvGko0q2V3Wfm23BDSOTi3XPxX/C20Bo5FKY+C5ASMYYrE5MAg6XsoguLAq1QKLwGDR + ZhKENgGBk4aBQYxZBkKs/9XKdRDrvbh/lTj0oppojc46WTn3YClblPALJZNtg4XeDUKFprGeGGP2 + QUHPMwwHH/p29d5xhjw+eES7A+5JeLLaVtEKYKybRL07jtEMDS+BrGWEhupiPJ99HNpyhAMaSelF + uACUrb/Sv7r5JNnd2OpX2ABAwAgTN4BPZNoN01kBtsd4dePOtvxs3bm/lY50914fvTk5eLmqYWfF + 5wtD/odYdU12HWz4o3yYgjQtGxS+vp31TV+1E7UMsQ/zyxdP0zlOmilG48CXleOcFO1YWT6BKSPj + ql62oXWCaLuNvMpuStFfDdf+z9ndRZHORriryjGj/IDSUXE7QUlhx46mlbGFqL6pYnT8JNIFjZv2 + 0mvQU2e0ga93O8WkKubDa7B3ZrCp5xN/em7/Yd2bNdyM6CEUbxAr9B/P2rAkHByOYfNxlr7N2poP + 74Zj3pz2ccuEDVa7K46faPzH9raoVbPu7bTvqN9vb2/rc0Qaxo4lpP52a0JU5pn+bWd0x5pKEllv + cpmZix+f4La1RZvP+woMULA80q3cCWuS9/CfKzxx9257bFiCtBpeo4f/9jofMntqmAIXPP3DjlkM + sHV1k2/VBQD+WdT4xtSYQLdhjZHe6XZ4h8blHt0Nm4ZO8xkfeEbxTXzBGruEs7ZbksCZeH4wOzQf + uqI4thpsmRkRrgXWmf8qIdEJUuV6EcyJhHImdrQvuywjB/AR4sDUHoLkOITN5Z2gEcoTKVS1hBko + /G9fm6ddUAOu8/EI/g0SEws6tdN/0xDwgy4ILBKdC7S2yTP4fV/M9vNZNjThASy8wn7tKQOMORL0 + Fzs26pKPt+u71/Vv8/H4R4w/HDDAJMyQ3UiWCZBQsu2Nb/uHLCVb46RFWptpN/TRLgm1qZ4YoYWr + 0mHkWMdON0oCFzCg4XpnWzYmAyg2hl21+UTtqCeucs6mv8sRfKzhJOrfVB3PplnO/tF1ANvmtSrE + NE6Lkk9cdZ26ExIWEbPMnIqdsmFrJw72trijNmChnjXOCk4s1vgOJl2cXTrvmtnYE4O5II/fabNu + BysGW5AMzkECAI00Xe7pePguAwv2EbZ85HoN+Ilq815JzuAiRRHYrQsGwjgz4+bAdi3T7hi+6YWz + jH21TbBRBJaVurh9JQE5w2nTso9EP9gbZmbwoDUaEhT31yyMcOKtNNk0amz3CYX14k1hOVk8IU93 + xA6vMxjbEuvTqaeudXKAhB+lJz0XLT1RPdEVfu4pRFFEbzjddpk165sRzbSYoH/arSWyb5ieN0Kp + n5cvYJ6Nd51PnpenbOtBIEyow0IZZ5d6oZAt14kIMSPCHIUJ66h71JBYzEGgkyDoWYYH/6NTUs3Q + xEGAZ9vnrgKRnSIzeIwGfQ3kjl0mAuSO/Omi4Cwddvw/uRsivtQ8Ln5f89+WiA0JiEGarobkZs4a + DUbghYLEm3A1z3+twioed8eCh7a9c4oKmE5JSs7qOxYBSM4tzAAeyjfxpcmtz4KFkFbRyQ/nvn3W + o/Pdshs1BcI0ecOJCToJcy/RunDjIzcRL8LrD8XlJSjHP+YjkP2Ax2UxG2aA9+W4uLVVNVnYwZjF + PYn3Uy9n+hT+LRWCy/RADZ8zzpmWPa6n8/5PRT6hOx1J8zkNH42AZis2QGTNSZEIBAkrZoeeTYMx + MKLLmq1q/Xff4xrx/aJgpTazOXr4EqNGSLVgdsPimGhtVRWCgd43yZ4mJWuNOcmdL2zF05vf/vzG + iY34CY4Ijqj5OXocGhqui897eDepHkb0oMiEZsFGbD7uWKy07rH43IgJRH5yZAdRPzvyAOvoTOY3 + F9nMnyB15WjcGZIekgko0z/Om06amDqpwYZqvVtrsSMn571eU/IDX+K1YyfnLZcHTy8csICflzh8 + YsdPDvoyB1BD7/9dcATlsGk9hPKeZTp1+qMOsG8OLMYoX69wRteOLnHaWLcxypgsHwQYjSQm5yf+ + Mxos/NgGCzdEC+uzLeOu87usX7hCmW9ZvhaGXa187bKgalxd1g6vDZhKN6uiE+h82jGgQsZ2gphq + i4O2yigjLsAqCtBtEBx3KbdwNbImXJg3+xPbTysdH9fP1KgnPEjjTPYQGEDEOhjC7BY0zOJWR1Zi + /FBUI9mwcTEzgDV4ZHvDY8UFuwRbd3KfENNja/V8A8EqWi59ulO+YjxOp2X2gFM+0/LzKZ/7W+mU + 7+jly73jk4MPieJkZ35mMh525rc4mtPUEUqL5Zy2mM4NoxT6XoKoM8tFj87PUJAPHn3RUY+VVSnz + EfzoPDrvwUehYgd/zUDZbtIAmx9SejtMK7v+XNDZxv7gbkbHb9IuliF30Omx8fvHlHO9B4xGe7M8 + 3ZuMLEGtNcdnqSfJKTXrEDVNhsQMyQflaJ+TnbaGgzlbHD+Ye6qvGtXm3h3M6e6C4zVb27u5RmBE + TcrwcEJoEWmpjdbmKLlbLJcHKK7VrjLFFFqbWU9TEz7ldXHb7uCTrOFOZOpY5ZNO4I/xbvhy316j + Yd/cCA3zOA+ACWlkJ0bTdEI7Mz9EmvRU3zA83bnwTGHhu4OUujeHoQVo2FpeGTCUEgE7vI0HvU/6 + OydSEjmIJEUID7Xr7haYgX69ywYT04Fg6pL7toSLbEny8J3b1AFl45rcMBEKAlc0k7CnI7JDavCV + oPVG+6HLT0jD031h0NemiVnznDXOHOzz7rav60Mys3fAYSMdF+oPGIToaUVg1FkRaihwn3jCwP49 + HWdVPOw5TpUGtPSycFVqtMEb+JI4Hen9CLHcbsfBhcUiT08iTM0Ed+v9bEcDzYFap/TraDgDsCf5 + L/pe4TC9ycYvUjB0zzq6iNxddkzG3bXZSdrYqsFxZ4/ULT5hsEjcWdWylQhqC0zOts/P/MjO6/uW + F9rX4VHJYqHdGGkcl9pxUXVtTwU+iah6gJBoJi4rSBLvHv4jbZAtfBGXJ62ygBZVuzSohY6EQqa+ + VBdKmBrMDxQxK679B8kfXuqEB3DZKPt1pEcM9/je8MnkQcsyb7n9gr2etS1p1ANpu0Y1EMVx5zyi + CovwmWOrwte7M3TdiFoCduz6PKzdINFNBo/QHonAEoYJkhP9DvVLVnnPGjP8BMJcRdPGXc2uc9Pf + aHcACfR51vez4ubUHv9bID0H290vqU0+ZSBppnFTz4Lk3vBxNg8zDvLyaJpN9P242LSbi+aRSydM + UmggGu1Q8IjgbC97emqdt2oUQr7SvTiHiNM2MkDhQ/WOUlMzmo9BIyT8paL2Si7Tusc0WADuloB3 + JjuHxv+6o5pQDLcd1dS9Hg84qmHWFJ2x+DJrsOOXLRRY71F8mZsApnkS1pWnci0nN94WESc35vNq + JzfRO/4LD1es03BNyQ+K/9UOVyzRg8MVByzgwBUPVyz0pQ5XvKNt0eGKxWaJw5XGe/8Ot6ZLKHxv + id9CiS8LpkI0nb00p0iRxzcNQk0c9vC1Fx44yNXn1x7Wpna77t4Q7OJ8tS08/fi0vvTRrJjSjYCV + fem25eeECP5vFWf6/uuj4/2jH1899MoMJmTDOUBfaN9Oxqb9alM9GWlLHlO5Bm0TnxZq33yJOeR5 + cqgssugtNBtEavy5VqRa0PFEUVzXMM5nvRaZOPgt8zttfXG2t/n/0s1fzs2m5qH/GtmfeNe1TFBW + nfGOV3nfHSSPLbOCZ+r9+VK1o6DWH7LJvJT3RGgnN/c9KAL+qfCLbnQtlwXJkkBQ62lfTuGxG2dd + 7bEjsDVCvmBVwzDJWrwbdXYv1Jd61qYCVN/QmSJo4UJCdU404oolb9Po8OVhManSfFLa9ARn2+c9 + 5W5ahj23puGyvhy25sSY5dXnZTJzKbEkQsugQ5qaj72KpfHSBGSh1x5X4xFowVaqX05WtJrTEV0h + oinoYeG9275NftJTOy4PSsRt5Vivgeu0Kbdn7x40sZIGyBYYF062vcyXuvwFOrop4o5a3B3dSfr2 + Ip1twn9c6Dw3skEAQTc3xUUOpLzNFO5Jqd9GLrIhhfMTg+uMKiVgMOlULjOmA+V1vzAz7ih/K4MT + meuovkmJirA4slm1d1kh/3SFfU7lPCOhJ6wz6dceIBSWWGz2jOejL7aI+0zfqOZut/h6xBMJnxCt + lmJOOAIMO9Y6EwNcaoGK/UckO4qs2IV3Ede3uk+/fv+77fdf/eH9068Sd2/cXDJ8/35p+RpZwzFx + 0HC7PuuXVTE9hhGkV5Tatvs/R3wIYcH35PWB+uoPSKNY4QALg1TMskgknrFbdgMXWn3DOJZd1kRc + h/WDwawcomqnxvnOpKi6jmrJztu8zOFfKmXJp+xtwyARjpMTIFLmHbqjVg6F+cfvbdXnILcBa/xS + os8SsRahytOvkYK64TO8+xX+UdHmpvsNwnQ+jUH63baH9J2K3DCjosePOSQcrB/dv3Id7rbEnx3p + tnEe+vt5BCI2p87Wd/bHb+/7WiEZpBNSS+SDZAKNu46stPoUWSEtCs5xYz+IaQx9R84ol76jfQcs + mMHVfEcO+jK+o5G3CRdlizw+fvlndXqkTk73Xu3vvd73+B28PPjh4NXpySLGkri2RmW6QTAnU6gU + LG7hZQ2li6s5o2K7g8jH0gpdS9Zes0LLALHEDCuCMi2XhxUK2Haon8gPdVOM0gekbaFmnz1Q/m8V + D9QPR/t7q2VssRLuByT78nGbMibTyrxaPpWNi2J0F+xwA25rYHkkbiGsH0kFM8rTcXEVQI7eQSWO + 2tT1RZCEM5Q4iCCxS3lyXZftsk4BjJVP0vFzGMtxOorW0bEkYMvpuEBTZ5t1dDUpZtlzg9ELsthE + dH0tvhKN9SpbGIokiIAuCyjl1gOGoMcA++P1pitm8UgTimnX6bepT9aXPKO9txsssV5DIKgua4gC + 3d52NZ7vvfg/uDn9rTU3va5bixa1fNCcokV/Q7tKxpRqgK1ejb9JyyuiTlkeM2lI0RcElDYpVrDP + EEZT77Xw0Xjf7pZzkKMhM6sttJP1NEbunUrwdMTRzBe1PAF22GDzLGNjizb8OjEVUN61E7vIumyV + Y6a/2HcSTcyVoRcIt9W0rlsO02nGG86yMv8li0Y8MQXCZMbm9AufcKDvdF4mcsXg/EdSNRmB5zMi + aSWg3k08hojfBaVwGoIxn7ZDWPwACoObJLqfuChjGXDvnYrth2fXYKNdIR6aab6zzMcZpvAX9oWs + 6hLj1J1ssmI6BQ4ZnRZm6LR/aYMP3WroPtWKDzrabjC1R+6u2zOPloDpZTEtdiab9a5xClTZTkTT + dPTTvKz2iSO6YlyxXBpBf8vdx47jyhZMziw2qpNNCMz3lDrQFWnJEoiVyUPkinjeajcYm1EHYCy3 + qXksiuBTumjKZpFPXJPV74Y3Xae2ZjgXc77NPf8RD0dr3OD8ww+r9n3fuEHUQlXlGVHzUXv0sMJu + 70sK/fWPIPWZPrSUdBYRDZeXhmT5pB19Q/fIqyaWeRBUg5yXlRqlbFS0uxZx2W4HtWLChuD9kgY9 + cUGMpduaiKeCYLsPYG4Jt9vIuly4xH0bgXPBzkB9xlFIXM0xoWJ6hed3FYgG0JLzKlNUmbLOOxiT + CIiYblzbKsN4ckq1bXdPnxmMTxjbXOv7UKPCHZ4xuGf1wmyINZrS6mmPXbdrz/JXmJSyKWMT91pE + VIwF9BPebde31owjoxO50YWcaUQPWaMRv6iB4ummZcxSdONJePnFXw0iRhE9Urox/GYKCmMWG2cE + KA4ohLpgHG7ZNV5/C82EgGP9fCzW4by+JOWq0LtZVXooYo/0HHo0r1svDfX6xo3SH1kLujQuDI3g + cx+OE4/5Zh4EJ37tFxlGEdR23oFo7xexfu2DjYuMuHSS3+jXQxZtB0r/C0PSOw2mWbjoXZCI0MxH + xZ7rtGlvMmiticXIBrr08XPNYnNA8FjJdMOre33dGn3JWlwktNluy8r7iO0TkeFtzh5flcXncLFu + z6fMRqJ3leF8hgaMNfSDptFJNIchaZUPO6zXXRVuXP1Lo9H7SjutApmZI443kmDOFxkhUUZpsD7c + m6h6gciTec+du5IeDuoSZoEDvqQ+3+aO4oq9hWv11aZtrC5fwo0tkDsRKvFnZV9TpYYLR07EciHI + pt+9TYuZdf0AJJd+oJL6AXOkx/ZrzdRrK9bD+QoFtApp47ZhYPXqGvYvYHh81ggvdN1k1XUxKlU6 + oyCeEVqtWgdQmEb60lbTZyOxrZwpDM37VeA2aNh/eK1GzYBQOSyPGHaDuuTQDgx9r089a4x+6oPc + hf803v/rD4FFLFmnIASgu5fZZbWjjBKNYl0iA6wWQXE36o3HHbAnob9GTIyUiwJfXwn6Qn1D6jot + GsdCijQNZSES0oXaOPGXoLn8SEqnTYygVdB+Pplkesje5A8q4/kremiK2c+YdGYy0n4a2GuRfDU4 + GDB3ePC1UDUE37zO6KC7ka1gL3yO3QD0F8Rh2MCJqvpIIuD7+tRwU/2QVtf99KLsxiphMlG/ylUT + 3zBUSRHWbK97/y7ExwMKGMqss5ssLeezTCrB8XMBpio3zuuFOb0a4CusZXYIuhfTmYjfOoajNnXK + VArp2k566sk203LD07BwzPSAfJ/zJoIx3On0qBrtnP7QgEzPDeBxjGjtS6+dOos6jg27sb9w1sIe + 9e7wTt2CoL92k6MHs5+/5eSMKcrUwtUGBoPNFUPq8FRN68uOLpsGlU44SK0ydx2UJECDMaLviety + mwIDx+JBP7g/GGUF84iE/ZkTMtnlGotO0WfdH+vR255afFD38e/8SZdhy4U/eXL5UW771YKrrK3D + I6u0Vw7rfeCNvPoRJv7VUibi4YB9oit+8tkSmkUDcEFR2v3P/8KgLB2hIiOyftAwOIut8GCvhrhM + FNaN8bssCMHSGDz4wV6NT/OtPX8EufSVPVtC13sZT9fu3jwgu+JyeRQbLt7IK3u1C37W+Suv8bk1 + pnTUw45a3/rCRC4jKu6islqYYdFtYD7EOG27vmih6acFgrN29vQrlOjEHSL+131uPURBShWT8R38 + vMoxQsl4uGHXA3aHn3R9ADkRn6zAtEFzMFruMNCZoh2sC0HgGnrTmk7NPB1sqHBH35yh7w3u63u2 + xlsvVRpvw9qnvFpZFcW4yqerB7WZhlj9cFJO8xmYeBd3aAYqqzgoPYA+VCvvsPC/0hIo+v0Mdu/P + 0XDub5VouNOjo5enh8cflNvQbjOnegaXj5Cj62V23wkCxnzwXFiUTSi4PlZU6YzfsSJ6a8q+Gh28 + MOYj6uqPlukmvoiX5aBSGrbtuAwfIrkibcGGLg3hW7a0NSrLVqrFZWlvbo6J7H0QFu0MiMsOCvKp + sXbtlcod7UXVH6vsZoraA9T8DrRjRdrw4JEZ1SMFmmXmfz6L1NlMZ7PiFoq2oCxagaxVV4H+36Bk + BJx9CkyZxxV1WV5hekJrq49AybnbUeYFMXyCW4zDXDTM5Oje5tktOth2avdhATAq2KEjYMfEG96H + c+etE5x2weI6AX4ro3uWZUE+wRLQKcBjXLn4AXf6ANL1SH/rMg600CwpbG2rTbrvdO12A/ai783I + utF6SfAUuCvwuYuCp4oxTi8Oq+/u/NosjbXekthaxKttpL/ZyVbEPu4XsZH5Vcu9yY+b8WQ7nQxR + O/cmI9N1a29T1S9YV9fA/WQHHMA6gL3677bO362qdTMvK3UBoneaDfPLHPjg9jqbKGSkPB3nv6Db + w+UXIoZ4DL+LCe19xuNj0VPaalmv30Iya6kMJ9jmlimnY5RXynq7US/s0sUhYkrd2Jypf6vyzc1v + w+AynR/WVz7Lz2VYlang7gvXnmKPHCSJgQcPv1lKBie/9lqAiK/g78EbRNbRoE8nc9JpZdol0gIP + deJ9hrZ52XFXsfcY6fTPhDd06kCO9MPqzUDoVUYPBLanzlozVRxiwAIPoQ2hXAs9iXeDqD+wGxpU + OAOcI6NA3NGFBvK3BkOet8XQN79LmNnscTHeAeU2iJW5zN+d4u7RrW3BIn+YsQnirmRjHIQbbyvA + IzceDy/YDtqGzFDqJoEQdQZVPVm8pTLtkHR+xP0N9rt4wsEuhqAKWyQ6jluU91whnmkGhTEeMCT0 + Nx7apkLftY5RkNvabtMDXO/d15GfyDohGT86hqPcBOSqEt+5lfZzdtcD4ON5cF/d9nUGFTBeydYx + IPRn89WaaStRg1awZKGLn4KcIJg0DL7y/YsGwvcuu9awHljxCCU4AveGv5AAQUKRS5FM5NI4vcLu + 6uA5U4vJ7TqJsQJStOQvxaZHvC+JYOIvJcZWcTjDzlxGCyvRKciD1E7lXqQ952oa642gwWx1kzB5 + IegvVMitDOiEygQuwgzp+B2lnoCZ7vXZJ4xMz/TDzE8DODl3fbnCMa9q/bPxKFpvMpabKGvfkbWs + BoseVnJ0ipGCw6ah6mmNodOigJeHekJPYYqiksKpNrAY8YCMq48SU15CS9e/MhnMfywDQB032hc/ + L95PsnhRk2pavT5OKFy+gnvCUOoHrDmvz6246HATlYvOhAp9xEWHyCUCePOqI3yaObsx73708kK/ + hS+1Owbkp75o1/UPoxszedELp5mI18kn+8UN9e+SDdViLIrbSTbbbzgCDzQtqM8Pb+IR+DSp1HMQ + SBbGHLLPG9o3ZhxVU3n9Az4cjpj+8uZwvxsSz9/WcqSzaxHnSh8b5JS8HaElUSKy5CqYYGKWX2Sj + izvfJhSOlkmcoykxvbkwM3lxCAfj/E/KvWsmYLFyXMyGpTphZFOtOncxIBKUTao2eeJSSAwMRzWd + V8Vp8TOlqN36S7mLv3fhv1t5UOkYW0Ml10AfgDignGdc/USQwo/DHt44YDpZGh7yo79ujU2rGwss + 0wo1Vha4SQEuqsJbmds9NabYlm1MJQ+2PjrLOhfjAtN28dcK3bzVMMcuGsS3Pkbg/GSJ6vxumIGN + +EIEk9aqJZSfDerxvEfSXdS69ju6nb48G5MwhgMLdu+avfFi7po5IprHPcCoNJeOB5ax+Gl9rbKJ + 1gor8+CsGidIB0QxuzqOsYaoZL1g+/lNbBDSsefGr+JMR2vtoqiq4obOvIFEff0Tg4L5sJ7xjm2d + Xc2aCN6vL/4nO7J1TUeVvkG+KTv6TnRk6ux6LJfpSEeYuI70kY0bkZlVOaJb/dE9cLzciGxd0xH+ + ZCMyHckRmTq7HssFHfkpFEs/uGfFeSeedKy2tkWeMJCiQwr2HB0R2zLeehEUeUg9HHWPj7YnJlOK + B5AC4zuHZDfssacYhhyz9jT/Zm3DNvxHroNRKK7XfJj0j950cJcrtfjA5+jZc7wqBCcOfvAP13WI + g9O1qDFZAXT7tUb/9phfFIwt8b4hUzRF+RoqLo7vbTl7EoG9BmAYpVvXEuW8S0OoNvMihiLHxS+0 + I1t2u0gyU6jFYom8taW0/5DO+tMR/JpdwXbicgBGQyFBvxyO56AqwbZ6eZmBsTPMXK8awildz3Ah + gTSLFAWnizdRFrIQQN8Qo1FbW5LMMU3tGG4zfaBAsahk6r5KX5koD/X11jdOz85LKOg6FMHUYfgq + m1kjrIk4QVWBoEm0pUmq5fTjgQfGC0nkuUJs7xCnmB5dTY2KrMTL4DrCdZq/y8baZVba2mVhszVC + fSOn9JPQMH23OXBEMYdtFHMYWRZ7vqmHtGF66buWXacteq+r4W50Al3tMD4FZp6WMkbDzIq4o4JK + F8W70hB0KyRN0mO1tEpWq+ZDYWk5BQ70nqFlQi9OrzkUYhc7gFCaD/AKd0bHH7i+8EQJV1Q+IXvf + EJ24fESnSlgITcwtvbxCe9Ax55IK0UrqEAnNuoagX/TyINYHZiUzH7XnugH/8diuealUcKNf+4bH + FKlnd7g/mf1Zh5Jno30s59uclVOLdjrtDIbGejrDBeCLqDYdTnHsbQ344ZHNyz+BcpsPeVAe2CVQ + 573WibaiVgfNBJ7C02B4UwZwl6GkvlRfAd20ZJW60o7Hy9QyZH5cJ7PrV68yq5iG/XYY55CfhrNH + h3G4/m52CnFhnQa8h111/UCdEXgWQeK8x5Bo8Wtw2GK/Guku3GM7Ap64MUJouRvVKCnk8LXmaGMx + 1O+3gbDdJ0BZzZtbvo8Ez+P+rdMCi1bNjoFJVmOLy8Y5ChodN3rfjW67FH/BFo49UfPTZdImiTCP + TnImDD8M1KCnfeC/mgYgfzvnXYKeeFjiShYqPuS3xQS92vwgrjUx9c0jriVvWPZKqPHNmPeC8Jcn + RJjzx+Z2iFmfPsm4U5kCf7PULdetZ5yIEFj4DRlQNKn24n4cZsxHrvZGNd6Wu2r8MLc1ccUyeSrq + 88weAGpQi9s1YukfWVob/gBdmGnCnjINtkItXDnGsfaounmF1u4pO6JvZMabR4tJ+4+Mu80VURSx + jZ/ctBXXeQy6uyjf1qanYr2B+BEfrUBqtRG867ft4D0UO22nx2zjqb9L5ULKeZSf+xE+D+v34mxs + 9lDmW2QbNV5igcJsbDMyk1Lz/Gj/zx0Og0wIAgM12+5a0Sqi6sY/MdC85OcHdX8qSUFlNpsyXoa0 + d8P0TbAeas7IpnNgR1D1bpzR8y1piIvDUwEc6OFbT363/c1T07UZRxC0oL9ihAbhtWM+uOtg5ieK + 7p5B2NUxYt1VQlF/71nHks8o/qRREMV3Vc3hqe7Rp8iyVqAOEV7I0XPwT/Nrx4NrvBjnEkshjwT3 + s1wR69gnokrYEAqYhtl+Tgmf2RAMwXxuCvqA8R2WTr5If0Go0F1NvERnROPS8733HC3bV1Lo/xEr + anlfkFzKcRekm0nrH3xM/9Kj7SlrPDlfmy7WK2CLFFOutuKXe+leizska91K86H3kbu1XsPW0QrA + f3SfarjIvnm/W1/G3aJfbn2MfjkNiHeaGShqXn0YF3ErLrL4nfRcD/zhlv2orZfJtvxYR/y2xcPG + g1ZNqDDd7KxB3beqPA9GavfYI+5bNF/vcVA1Ey8IwyymB6OrzApGlGqek8OxbUbwMoKKgdQrkkEd + MG5ZAWTMRDRqr0D6uxiIivI10NVO6Nfe6HcM7o3SQUNrwEx0Y50qPi60Ns5nTaAexwqcYwKRNPvX + Q/BsAQ5jCJGUviGZ2ggnD1mGM8SAi4tg8lgz4rfalJvVHs658BCwaQ36js6rdo4QzQh6A8XG2tPY + AACGIvuqT244oOjcztgMai3lYehEp/DWXOwNMJETKPZuLZnaxGm7bUBK9yJLgbQQFYg5Y70Y6O3W + ghkA3kC0kaV901Ke3tvv5i5apg/jlf0s4yAt7s1jf3O4LzeOWQbWkh3/qFD6A7rS/vWvrnaygmpc + 3ACNvlRPtulPY397ja//+PxJAN2oec/vDkcWsrhUrb81IxhedBKvvHgvQhDKItwMLkLf3MERd4bd + eZB5RQNMticynl7eO5CXB/5uYcpLCBjzlcN/YQ6zdym50p+g1Nwcg80+tndY1juBR7pmlxnDu+kQ + qOZLCxRCMzpbj/+y9piOsgw8TFSlk7SosDqCKNq3uIgzECmq63DMCy7LAFoQEagvKxz46ovgrfPf + i+AKgOJWsgn3c14uk700iAbEXMVLxhV63gwCC9tDC7OVAwvV8ljxwMJAxEbGa2MJ+0OTTWy9/pUN + Mx4uSF8pRrvL+6Z9iMr04S8LeJR7dnMM8W6tPQjPaHctzpUR6I6z4q55ywicnyLi0aw8E/HoeJNC + B5dImY3pFQMXo/H37cvZCxyQzjEqJaaFH/GM3q8FFRS7uGk/W/FSK2BX4VyZTZiwJm/FrvhIUHPu + jE+TK8NeRo1ny1giBUYtAwY9+WiYKvrAtYh+bE6c4a/J8tQZhn8/wXPW9nb5mhK/Ff8Lc1/Yq+wy + +8WphSRZZZnXiMLel8qCYTFtyYPxaW72T4spasur3+w3DT8/WOP/Vrmif3x0fPSng9cf5Yr+sZ4K + tfQVfX3J3cxg2yV3/UQdY9ikfjXW9j7L/jHPZ1nJkkXogyBToeGmvC1ll+CF97Np0bKcQHpk/H68 + yVClR+wuGpoXN/UWqQ8r/FX0hjvzhkitd+blXfnrp0FbbXJh+fXTZxHY9nGa4DL9mr5lpjnh1dHp + wY5jmoP/Pj14tX/CKL0Uvww4vZ12sTTBXYskCkdcdRnY8njVJe9phrxh2bIOcOlT8dZzcR5V7I+o + bBSjBe/CKl28vpbr7PRczPxDT88DWO4Jo/4Q04aBHg3aplWh+jh7yZkJJaPncClkm0LIqEOtFeDq + VDdpToHbCoS+fhyXm7MBmnavduP3m7UYhO6vk7gBEczzrmnHiVQPC4jGBCgREXV48LULMEuHw2xa + 4Y1VdGS9zVMKf/r7Dizh6u7valpm81HhrhP3kCTXeIULxj4qLEBSxVzs4MWdjrmiICsAZtAu+97+ + b5lgIhYaEq117GWdBh5+0BGqs62v5AWShj6ullgnK3uc7KGVcDiFL24JTxNnpthNEfxztaTnKV6n + Zcgf3XEhHRbBdv6/zLawOsD/PNvCayfctjDT+wlsi6nfv/jvVtvCKtMv4juhZJWVbAsLeRnbYurU + wd/YttAHSOX0bnXrwjX9bF64v1XMi5MXr49evjw5/vPKloWQSDpb68n0rt2eCF67bH3oUs+scdQr + ngUJM+bJZnj9zEZM0I3ptoRJtmuuyzr8mbVQT6PkMplYGIEnX6dy1JFR5IjvT9K3apyrZ/YJcF2f + ToYYKmfnvlADaShM6eFz8+pX0xua5ihf+dD9CEEpB4/+gqGBbhmF76zAP4dZWYpkLyYq9xJsOOuU + 43W9WuGpGjfp6lRXNguJptGOerJdBya0lBM+5kXqkKRBLf86zBwdJN2k71hm57Bab1HUkA0Ub0Hc + UK/dUcvWiQhX1bT5gTLiE0X1h05Q4XlamuBVzgaC+VpYTxaVkspWkeTE7/LkA5hJTGfq7sYJz+Ia + xHBgNPZJwI4oN6MZRJmZRV/pzXotkDkGlNbMxFp20dY3afxZHqvsjlVdZeKJXilU0KglPHErfq2l + fnVgqe1Abf31i36YVHVD/9NfPbNqKDVi6i3Wpayw+rAwViJzjMoaZ2dU54zPA2g9JlrBU79HAz0/ + p1Ext7q7wdIvixnPUJD21EVCjxcS3inmXNtUF/gf36ZRVTX+esOv/em81Pl62A19U8XwLavyxFW5 + b12GRmI1LkMf6rcM69mzKbsfFD4CwANbtIZsbZBBJyx2MQIYuhMgN6P4XYeAAwHAhYIXP1IScOng + 6oi9aFDfn1zFPEj+IJBeH4hBBCfmcpPhyTzcxDwbeFL51pblOI7QVZey3emBnFm2MUfsmwq4xsV9 + Ucu0yrp5rW8BFOp7XL6zxCULVIwkoBZbPnx/ovM4OVrKZoNo24UQz9EXjtQOMj93a0Wg+swBDKp0 + 3WfgryfnqACSdguSE/RczHQUGa6um3A4kooeneAMM7YqbSuxLCuRdD5GU12DSX5LTb8Crf42CPS5 + xwZzm/ybIA0e0XmlBg/a3KPzXsfVDNpDSxSO9SYsHFyjS3tIbfPRr+uCkB7n/v6Pv/Knm3aSkAnt + q7ydPj4BhE/1bcKin3fqryO6zvU/3EwBkYoStx3o2QHh90giSDDuNGi4yyZ26qRO2SqDaZbiRmrD + Tm2I9WZS5eOYBt5Tnb5ANnyplBU6x4w3hFZ1zfz2zhlJaVv9w9wzNT8LNxG4p8Wbfr++r8Vb+9bf + 4b4o/hf6W7yDQXpcHO51LljG68L8Lr6HZTwvHuuF7xt4jNreOHC4iDc0x0U6EiuRP3QQW29G/kHN + wSPdCCRYsoBj9TAku4q09FChR9XcSwB+kj9dZvr04gFZ6dOLz+fW/m+l1PJ7z1dwKdm1fppexE6n + LcdB65/KYbljA/TMUfI+MGo6e56BrpRpXtory/xq4s4ktNyNuJIEVBM+uBxQHYEFTGVdGzKtOxS0 + p3SHCkumV7NbgtVawsOWjfnYSr0No/eYLX0+3pkUVVcqBwl7fYQpRFzaW/OVGfT11Ne1thEjl9Vx + /0Q11Pw7+ozJl/YZk/gjJkwR191aFQg1JxZUZ/d4eQuV6IXpW/KCXskG2rnTGmqwA60rlTIa4dEE + 3f1VkVvAICA6PWZ1sKd4djRZ7L3Be0Z1+zIJh2jz5rVDtKgzqFp02wKnijm07UEx2XCm0D+Zwkyq + 1vdSUPN3IJe47hu+beOVuEB/R+sgYFucyR5OTRKta3Q8++KKmf8k/shKnTDMvwBLD/NGugvSRHvm + bmmeTeb1kJStQXf5htqBhxMr33m5r4uMqJHknO8u4xp7mZWLFGMOkNBwdc1KeKak9qzTv7t72QMH + 0SBK6ZTrF7h9add0Zy1tbGC+1C53Y2bF9QhGutiaNcF1+0n2ruJzHto4Tcq/KXadCDmpQjosB4zi + K0LY8k0p4ARUqzhQlpcxezdNYdPHy+sUXO4cgLVUAA2m2Yf3i9HxMhekm1Xun+MpNuVDxfqJYpLb + NYZw7cKUNobtZcC0r10LBmH3FBiqtvrSlnGdsIut4kXkr/HB0jOyYE6CAS9O3lBfemwp7zYtmIZk + CrjOFiZSiGs+PiBDL1aJXT0vBA/HBk1yFZv8o1vjzbZ4PQQbhPwSDwnqTV7EQqcXuo9fJfw5vfDB + x6Bh879a2DPMXxDyjK39VCwyjHlPy4U4k86/wAzGnpsNYDtmCtz8I730HES52h4jb83hZ2Gv6ono + 6b3bO6/YG4JrZpWwhwRxtM3PCOqF3hMIrg5lmo/HETCfyIJOLy/zd6vb0NTssxHt/lYxove+//7w + v1eKzLArYQ+pvnygd8PDJAQlFhLhW3IlP+KLdQ5YGW+geYlxugg6oABLe20+eGdGrpcanBZAP8KU + k/nysiimDiobiU8R0/TqFnWnH5+rR1/MJ9N84sWqLJxifiyfViN4TE7g6eMnNPnjsRO67PXBycGp + 7q9DyOlVikknzb9Mwg3fpDHUwjyuVhmTRDsSJSoy8qIKzQ8ZJWFzeWj4p0hzc5hMKC08ZzX2XXi2 + bxI8aw2G12/MAaMByYNXC/26Frvg0MVjNJwnf5plZt8mFPH5+2tHYvhvn69NXxJ1PdSAmTmSycJq + eLju2OnnY8563w0cYXRChV3zCNqO68K5FSKAOJW+G4Rny3LqGiCzzIvifTM3SWzUbn3ooPnxOAch + 7VhANN9lFN4RY6wBcLMcABCj2zG8uWDS2bQO/Ly6adDJ2iUETR8OpMuH9jjE81k7nX1fbBnHXyOJ + LNBjKXPit9Vr0ikR6jEvqYtKobgziZRw4wg/c5+jo+pKC711lYsA7UDUcnZxD6/jPDZRrnnTiBKR + Pc6xcBPrqSfLdds4XeuSCjKup+6Cu7axgDFB2RAaIms3BLP4BUNVfW7ToIZZEK6G5uOAGdyiddF3 + /L1ui2avFi3qivj7IsZk0kNZ92edid2a45idsgyzcWBUg99DSDywCCFi7xrUYFokJNg20oVgHSlT + o/G5uCLcnlfckhv2KKAi/TPyepLeedwOJRmMklnrtKcd+UYIgTvVl8qMhADh2NVjgI1zE3/qXzsu + qyBLyGk41HrPPTh80dDqhb5LiVb9JZllk1gGaqAhCy/S9BjY2RAZz+zMcLncTURatwDVuAuTC9qI + N9ARgxXaIbsyd/RiqN8z05CNdOgyJyJC4PFP4dCaXuwxIpq5xAsX7O/2u+vYxmf9XCJYiJtEq8Vo + /NbxGZyQv0pshp1D7lEiLvkEMRl6CVinj2YO/hc6mLTJJl1MexoGn+HF8Reyz6VcTVZGLnA2aQza + 4i3isRZLRFUQBg8MqnA8NuDRFJY78JeNDB2IX+/f43OZbOZZoVRYE97OZukUwMT6DGCZTTAKq7Ib + pKxvsarHixCfM86Tbq7/D1BLAwQUAAAACABiuU5ROjrf2hImAAAEkAAAEwAAAGpzL2Jvb3RzdHJh + cC5taW4uanPlPVt728h17/kVJNalgSUIUXauoGF+Xtv56nazu117m69VlWQADEjIFMElIcmOyPz2 + njP3GQxIyUnz0heJGMz1zLmfM4Ozr4e/GHw9+KZp2l27JZvB7fPkefLrQbhs2016dragbS7fJUVz + HWHt183m87ZeLNvBs+n5+QT+/Grw4a5uW7qNB+/WRYKVvq0Lut7RcnCzLul20C7p4A/vPgxWvBhq + nP2irsIA31b1mpZBlrWfN7SpBlf/cUO3n6N2uW3uBmt6N3i73TbbMFCTfLob/Bu5Je+Lbb1pB1v6 + 8029pTvRLohm4+pmXbR1sw5JdB/c7OgAmtVFG8xuyXaQZySp1snVz1g72W1WdRsGgyC6mF7KpwQ6 + gcnlUPTi2WiUX5xfvvjdfn+eZVg0Gv0Of5xf4ptnly/O93ssfvnsS6c8uKXbHUx3cJ78LjkfNNvB + EqCLwMxv2sGquWPwI2tV73kQHUIBprh/tfLFIA+je1w6ycqmuLmm6zYptpS09O2K4lMYqE0OojjP + 7v9I8491+2FL1rsae0iDO6fk7boM4j80fzXrtOo3xbffm+8aq+mgceq2vd0cZhVAEmdfDGpYSgQb + c9vU5WA6zGAnd+3nFb0oLqMtbW+263tokubwfJjxguH5gW03vb5ZwYKtWWQKcjmHT5ENz+Mya5f1 + bkZC/BclMAsAz85ZuWoZ3UOj6SFiqEUzs3y/J2EZJbAZiwXdhjDXm82m2baJXmAC043kVAc72n6o + r2lz04Y0zqMYJ3CISWh06uskg+2NfS9GIxiU3uJ27za0qMkqcRaS3ef1uvwAdJf2TS8u6YouEHRH + awF6liuamhAVqyJhnrRkC5wkSuodh+o8T3iD7/Mr8WubkM1m9Zm9j6E6Q9NdlPK9Phyiw2NxXk8B + +0woKZYmKPmGi22OaVYkJWkJ7nVCYDot8AC633dKoSYSeMnbRXGAI68Xmn3loxG9yC+TgqxWYYHT + 5iM9vcCeJmW9u653uyzg3V0+jW08BHAh0oVBAazyYxAXDA2SYtXsKKBKmfzn2x/fv/v+uyxgnDqI + y+TDj6++e//uAxT++c1PP77CH9n5r6bwZrNt2gbnxdtbAylIFQCMRVLSFgGk8TVgTcpEwyPZ0uvm + loZ8RVTBrspoQtoWmrAV8s0G8FX7fajfLbe0CrByNRpV0NVmRQoaniVfh/Psq4s//c/u8usn0Vkc + BBEnpgX0X0UzAGcO62Bo/IZW5GbVArovkhVdL9oljLDIxOp2yLnFVLGGXAgy/Le3jM2xesaKgNkB + Topuf+CD0DKMsFux2tcrstuFQb0O+ohsARi8E9UqUtIgmi962EYReRlR6N3DKIWdgS0XwEYuxqY9 + 0z+zPNYPyetmDch4U7TNNivNF+sGXlWAT63JoCR96t6oYjlSThioqMDGKGJCNjUiZwfH/g+otDSo + tNT0CMKxbdYMpYImv6LQsUmEOZJvt7qg34IzmgopuG0WixWFxvmcJvwhjFKk4wRY8vsWtgumqQhZ + E1FcRvds1k8oF6QZUi8n2GaDdXawb/RTCxwyvD/ERfLm7e9f/fTth/fQklerd982pAQGAqLnMCs6 + 1K2bZPcrXvMDdJgG4iFJkgA71rsgp+yRbgEwH5KvQNkSUk5NnEG2Zni+uQHCmAe3ZBWkwbK9XoG0 + k2AHchxnAU4giNc3q1WWISWj3IKi0UhCWxXBOBf0ErA4NmQbwcl++mzuMqslOgTeOTchCM8pFsJG + GQBguxW6IESeR8qSEyMQG+M8BZBdlNpVQTR2wA9tTZIvJL97xToBSow5Ek4jG+AcYzIHaQnOJreh + rPiUkAWiZcBRcwfCgOudgrnJbbP7AG25VPs0C7Yw/QagwWa0CQOcEuxfKJ+LJS0+wo5HqA3AKpHl + 8S4SAvO9pYqvCxYmS2N7WAVWVSFKeed586kzPgzWmQDoa3aXmm3KLtUc7YocTu7wsTtCfKp74OCj + UWFIOFA9FlB+oCtgTs56mdAi25pMQPrsdtj/8PQAD5g45+gl5+h862fGb8nT+ZPF1AvrzWmuLjos + T7F10aHm6xZ+/kkiKCoraqRC8+ZC6negnWiY5C3wZhCkJTAPLZ9ZKeIgU49KxXxha3Q/yImeMgy/ + QHTKBJIDeaBO3V9NoSOrWXTUhgNfdwVQ2HnWPchXN9svhQdX3dTUnBXbmMAmEMRnf2I/wnodzZ+c + JS3Whx5gKdH/ibbbI0cLsm2g0xWTpH3iSvD/2CtpQdvKunrwPE+rZLeqS+pIYjWgRxavb65zujV7 + QQYLq0sXc3qxAFkCndagpW1BQKGE3hDoCtTW4nOBYtsnpYt+Kf0EOGFdECCunZfNqrlOdMXAkfBC + Q2cTKTOUYrwAl46SRZfIeRtFTzhXMEvqll7vjAIxTvKRfs4bsi1HI3umiNLwrmzu1okFXSloWXVR + I5ZmyxI4PoOzOQRbw2g0DINm3TY3xXIH+NyCsBkox4H8IVwHkW821zgBVKW3RybExhLT0a1WlNzS + I63YNotWfn3JZw39ejq1NCm5Eemv6POYTSQVAInvtmSTguiW0IbftrgXgMxMogShPTxjnGjfAv2Q + LSVnNSdoIlgC/Ft8R66BtO93d3UL1EmSu2VdgJQvCJD0899wFQV5FupZ0MXHGX/zO/5mDT2rNyXn + aSmn+QPp8jp71gxumcc8z4FFm/irpK8mMmhJtu/EY2i9tEnBaDM0+lTKlkR/UAZVd9bu4hKFluXt + N5JOEXNpANx3QDLv1iX9ZO2KyQ8FVcFosDlgCgLDWNarEn4DkeM7pfCwijAi9BaS/d6k0sg78O+b + 7Zt6S9mwxvhxbulv5iyR/ZRZgFsGFAg6yTQDBWq/D9Zcs0UtRSpLfDpcIZyco3pYSuhK6CDKRnI7 + hbmoOp9PztNzYOxhMabRv3T7nHWhlNCfwfJ2lVwLtNyRyti2b30Wa/PyVRxIKaCRnAR56Vv0fj99 + SebcEZSarHXush6wufGVzT8MKZijLCEgJNICQaNxVAsQPQANyctizvck5fCMHSiRyAET6+xBZDZ1 + dUUBGEYCA0bOoDZwEIxGPe49R9s85WmMNQsNYQIOoWcn6dxeK87Uo3laG+RuGmwQg6cLNljtF3TF + geSYv/jKsdE5SZzGQzR0BcV7aBv6oqjpWICJl5mk2nwerGiFuMKCI0Fcc08ykGzlsxU8iwTuy+j3 + Cszg6WX8UXuu2LJsvAYooSep/MDkS3oVl3Km6fLADEk/enyM4uFHr9uLCTJ7PtN4ISS8oJOO3qSM + 1c6LB5mZbL0roZlazRWDji66HKaKLqMZyJmVxzBlGuC1DbtHgU7ZUD6i67MB2Q6h5V3pKQGfx41M + mqoCmffHumyXMdWvl/DaeqKnww2VBcaLPF5eJldNvWYxrMgDDejUaiFf2A3j2sBB01tjDF13ceka + qG+KdpXXrelVxqIoDWmPy6Hyzd8hENfEVjOJFKoKVs55lmVuSxSYWU/S5JbPPqNbvTttdqtuheHt + xoak6RybLnQSep3ozIC2XegROtp8/vOx8p87LEdbeHzkhWXmVdK2o+JHBEzNmgxDbbB+gVpBFoUL + LTK4P4nZ8lW8gIbo2/dYlih3l9xj46qps163hAK5NsSDCz2hS7AfH9cClsAaxSS8A0bT3PHm6Fa0 + aIxIB90WZYkG3+XT6HgYaSZgUcSFhOWXBa5Yr6Aj5j04Uag3CieKoziheFpYRgcj9PPlQbKiWa3I + Zkc7boNSuw2K426D2ZAivnDfyGh0tls2d/slwFw6Q9AhKN8zXLMjcmoKVlCOOxJ6wnLKQ1A+0EPg + 8+ObK5QCUfChjLjOXTXJywvcqyz46uk4T+py/DS4jHurGhtutXgqxtMSyXYxaEsezRyhIPMHpaf/ + IEwgrksBx321rcmrdflaDC84sB0gsFbpmGdyA/nMRADl4bHK5yxWqa1z3gMzvM3wUgkSab2zjCzp + au+TyXcocQ3kn4sSsPYp09HsERD/zM7RrO9CW5pfnvEwSiiMo1gqnBz4Um/gT6bxuSFrxiFNe3QN + FoBABkRixtCHIUV/l7QIwjyjXmJkAVNrwpGYU2WoRLDSxGrXry9WoC9WPfqiPaWCcz8aB0umC8Vg + 9fgmyWJHKszLRlWbG0YzexqWpqDna2gKJqTQRTiNTO89/QQQLpn7fuoQq7/vMjjV3iY+rrIvTcQ5 + vQI22e4a6ABRCBcRBN7Bpj3qD9vRtb2lB4Y2Pi1W2h5LvmFcduEqakCRglzT1WsCyv5FsCu20F0Q + L6SuOEH1wmN2d1RW6ddZShffIwLfuH5rDNChL+pLUBYONsEuLVuvn2AfQK+aNpbS0noAbYCUGPpT + CCznTy92XxTuSgsMl2qb4V8Zn+qNxVnY5MVmhlA9+Hzu0kMXH/uJ4fwIMdAOMRzH4sdQSGCkqMBW + lbSD9UfMN+5F6EB82pfnJbGYfgEWp9SgLhdzu0FjrHZxDFHnnKumjNQD1GSsHpVg95kloUc5iLiB + 3q+usHKhOwRPx54uuEbCtcZOWL/QrhfUOmfHtY08BL2cyiB7hP4qd4V9bb1OV+JADyw+Lx4XaMBY + 0TmN+vGw6MH+ws7LkU1m1pMyHcWzL0FHvXuAWSm7PZmmozrtiWCau2yEMI3t4hKhxyItO1bcjKsX + bA8XWeXVS5bZYi6jvak0NWeFNB6XX24n+a2kWeGxk+IiK8DQ+Ori1eS/yeSvl8LQKHrtJzsnrcTW + BKpLHlOiLc71n3mZ5iq6YJpYYFxAq+fo4ucRH5gXWPs6nQ5TPP2GpRmxzWF/wNJyXFfcwUANZG82 + dM0TMEYjkUSIIyMFwcr9QarCDVKhx7lo1i2p17uQoi9SRd1h9lRx4KIrNstts8EAWcDssKIvv670 + E1ZQkdWu67USqzJc3HpUIQGscSM0vI1dKB9n6Jamoas6jmalZX7qEUtmfi6O5YSW3ZxQoEPVxyQn + xUd8wGwrh1jVOECsiyPJojYUDGMMmNWiY4stjkijDidAxYqyBLFE5pDFg1SlkykDQ3EAFx+xhwJQ + fbgAen5ocBksrcrIpFiT25xsJ/DPjIyEfTntZX1re0S7sI7A1NrRbfuqahGpQiMaLdNvI6Hde+mO + +dkkTpZd80rvxhLQovQrihwtZ5qoRH5Ij+gJQIJwX6kltfoIRNkF1lwOKjv+YCFCJ7hdMKX6LHz+ + 2/0vp/tnv9k/fxZJpini17BLD2UrDldjSNFN7i2SXdtsfoD5kgXh9BkPy5PYJ1gk5gP7sG8IdsCz + 3ww1E2bPiilLk8goQtuWqUhV1Nkb2EwjURpRRSJKMFjV6bppQzXXKL2tdzX8GhAMClEZGFH4CPh6 + E4yXbJq1lfx3ldUiFK2TrJ7/1pjh1csp/JlM4l9OzdIXtYqewtN4HP/tCnjuVTZFRz/9ObzqrgiN + K7EEpm7I2c2sJ6m3yGdLp1k4707rNKrb5SmdRnVqZB+frqKBPKia7bXh5SXsMIWLZ4fTXVYezhm5 + STgn24m6D2noIoq3n8eqTqibn5KHdoa/EnvXTUkwWWzRlyxGT3h9K8srxLuDIYxUsIVXiM4xDRhI + PF0wTx26jvE/erSPZH05aVpP8qb8nBlSA5+dWLyZIFbWZNUs/MFjNvUJr6HyR6RwMfO+du+RC5tu + WiC+ek1W38DgPxAra4x5XEDOsWihtJTrxbrZ0m9E168RPVUoTJpkqC+11HV2WFNFlQ4KUXw2pAw9 + zWNPdnaPxwm74OdDBEZI2+3heVnPWV7WN69e//ubH7//4c99B1nM1C0JXidHK0ZM6ORquXqNkxQk + 9oV7yVF/VekfiFbEzSywvMO5lGUMYWlX9gu8dvSG/OC6zyQ8aWQhC9JIj+ps4dRQYAjLfX0vkUfG + 6fEwgFvGKMBQizhqcEHJa9BdQTYq1r+lu/qvOvJvJvpxPimONBmLds868WJQX61sL4S4zEc0iU1n + A3JO2OnePDng+CFZs5vNsUZOpi6oFboTtJtKP7VNWSiPT1QioYdjenMGSp9Ph58VmhnvVG6aPNxk + vCMb2KDyQ4OT5SzLeMnwNRK84wPMaxqxkxBXN7v2DYMphnfNebhZCaXPu8gOPZUJXYPsLOjvWbKy + tPW7CmY/wtN5aeztiQSH0sNqpEKsQxKPSzlIH9qpQ/K2fxkQx38azeM8lkKy121sEjFo0H4nsj6m + Ioj9/CiBWspTVYkl1uv+CXXOuPF2PXQt3vbSmEvGqrKfjvsO1PU5QcXhusdEHxSf+QOOeNSJ24M5 + dg+hiyEmbZhK7gO2Qp9FMIu7Apg4EhhIN8Ojz5yByQxVA1wq51gzkh4RLlV/KbjtpTEk63jyFc5a + 2oMUxZ3d0dptlyX7lor2F5F2jCGY5RxTcxLuwhike8dz1sfJpm99cztHhFf2zJ1PkR1h/mkDUk9K + tNRoj7NyO/BwGoZh/uC2ozNwkPTLIiKEvEXelpwn/NzeKyYi2FHrUBWaGgPxYI32ucmldCCLw0r5 + 2Q2MyilLUpfP2iPqUaXtIfJO565CdoKL8P9pEKjgnh+x5UA6hO5jWVSHCNXMHuGZ4lsjWw6CMViU + SuBrpe0xKpiPtizdt6vjsOBYeMTe4KfxFXthXKi42aLSwqU9yCsw28CWLtyTJXJtc5eVJfwMlMFo + w0idtQTL08URV3FxMMhRXoa5dK9Vc6emX3DkvdLhmJUSpXkoThGqELSNTk80Hnlx3oxU8bQISyWy + KSrkWR6YY/N3SNATkFh8ISQWEhJiijabMxhlhy/Y+qrd0Hx3Iv+HXeTCWBgPnr/scy8nQDvwj9dy + OGwB4LrfADbV68W3tGpTvqlIhe9239/SbbVq7lhugThGYNvtwFdi0fpH7D3taz3sa97lqTa77k83 + 6UzdnUu3c9t47MKXS7KkXq8pnyDPLJGpE70ABpbwTXOzxqFfM1j/SAsMF5IsT1iS/OQPpF0mJN+x + Q89VGx38gMosd43YODaTF8TrN2Fl15TsbrbUkGfdo/L9iwZrbEffAb82rGaEbSCAOeFp/mCRT+Pz + qTDrXceOPW92W01ibsZ+H4hQjQc5jg8ck7Fn5T608S7yROe+1Th9u+DtgvCoAATeVSBbwsiAcBFM + 1FomovPA8lkwkQiSTF3kZEiCCTHRwj7WhK2RLQhei5l20EucW7nhbAYz/VNmhbMHX0o4f3Hayc17 + O3kKm3fXG7JXPhTfEWwZJC7dy1aICrQ6QXyWuXc0i9yO5AtVT4fwtfOXew7T4dlXIjKE8WNqJJbL + 08Po7MAoDglYvL1jR1fiCJftQbNd9n6fmGjpaqa2XwGHlqGYgGXRdwwh9PDofHauhPwTj2K3TbNq + 682RO01Cut8Pz0qA8rb5bOdKo7fAPmgtu/Ocs+5Nj/b40llWDQ8n4zH7TrKxUULXLOJllLT8HIlR + wg7a8itKjFPP0vVunpZ2K9VrvJ1NrQrn9XBfs+tIJuv6mkV90HvMyADHT6F76BoPIiOpp+hxodcb + VIPSpy+Abw0Yz8rULAbAsKh+fOmpMyHbbXMHr87gnbcCE6yqAvv7NBbIKU4mD8SlAW3driiK9JKu + yOd0GuMVLThNka5B2Zxva3qHWmF6r1YSIBNUmkA6dQ4II2yt8AlGiKRRI7dVOpsZHuSdoEnh5Myz + B+A33/PnUJ5AfCKnZ9sIshSD+kjov5ez8daK5t5inXNnT08YGJ3qEj7CldAZxcbFe8atEcJsU/AH + 2xf4cbDHA3FTg8Qg6wLJSwtCLUbcY7xyJt1rBP8iX/1lwCsPrkENHOTAffBet6qm5eBuSdcD3ERQ + keu/wg6DFan2ahwMmjW7g1FocnI+A85khnhbl7hmj9qbIlND9UWJLBooDg9Xk8lMnimiF9Ul6oUq + 6WgR9ZmrxtRiLwxs9woXOcIknEkzK7gm6xtg8kMY6F7E3uWtBou5cQkBWPnCzYbh904dduWArAOs + KujkN4fLcfDYObOR7eiG0WH9+A7ZNKWj7uBtwCniz74jK2b9+F6xFgFCze/QNuCUUtWfPiCvcZVm + oGchgXcehUdz2E4rwQW8p6O7czWG6YSehFqRo6xmbHA06l4cIt+E4ld2z0KE4ilG0SkfUOh7Fsnv + PexMW1o9GPTOunO1NE+5F5hPx/QAq9RQbZDbFhfkcpjhdQk5/MrKqDsvhlWem73ygcFs2BgGo5nn + KQa8LE9NpLUEAw/V5HnuJLIgtzO3I2O3LHjhMcIHjor3c8XWCkQ4hR0pEaz3QtFwlvFLcuZCa5NX + d1yyQ/UFaBybMHKyf8HMYi0LQ/vg7i6zJGN105AdhJcHYAupwmDfTl0okTQosM0pYJE5OZBUhfyn + a7sTxN54ZO/gDsTKoyiVFRwarXfvONQ+bG8sP4tk8gTvUjUlW6S8oALcRF6pOpzqq1StQRhD+v+M + iygrjiDjOc9+NXYijOQtBg9EMRzhNI4hK3sgjvEpu0gmIyy+jhmSCbfssXyIzjEaacVZWyqxDKmT + 56KE8gYhoWP2pZvkkbLVVWJyx+3X3IH++6bHG9XRz8Rle36LclhKz7FWikDzETYNumAXivn/9O5N + aCySe2Voq1aI59qZDV4zv6p7mkdneYJdV2zrnJb5Z11R7okyWDDxSfu5RRqBUIDkfmhBaPWh7Jy5 + v9jQntkNFB2Qpf52oFed/c9uTm7aZg7/z+oYMxeZYbqMZldAPMtsqdwNNfoXgCWjqYXAUXfPMtcl + lIJZg95A+FfWoHiCnRPkqwaUykNk3pfgp2BuV1vzVLbRvHLiKp0a/H4xnRRsGxF9p+94C54NZSE8 + bstHffK24X50QIlV1rkZ4tosEl5pwNArTlqYI9l0e7INqmgGOJA3bdtcAwYsR6OPCX8aX79sxM85 + gzs3dEUd+Dm5ftHg/7lsLq8xEVXYw3gFvbAjtOquE/ZP1MHfkxX0gz/mon26jO07K9bWHjJnw0at + 6zVZFSzoUH7PwBAu44/xKr6Wx4fwjugfJNaFm3jJQfxz1/dIDSY3o8dOTAZjyncrph3nhOCYhJ9z + BYEX0hNRF2AO3YhL1RNk+flxyQg/d+71sgHi5D/qeKhgWTQrXaSrzCJx2nChfd8ldw5fg8is1xNO + sOdTPM3TU4XhA6szq3ffke/CBfqlFizzmD1jwjhwgyk/d7UZZ4uY+/7HgODSo4vsUyAATi/W5gGq + gIvUdMOVmm2waMIWIw4YpGw2EWcjVjEPMyAcc7zL1bwxVoff6i6grrqAmgkaKkajqyHeax2yJWV8 + YdXkyqX//xRkyuM4tAQ9BRhYEecxMMxoxiloLsHBH1MBJkal4racM/i553SqTjAB+1jNn30tqJCO + 6xQfkLKr8VW8hpeBsRygXHMlwawUK1O5SYJZv0LfVXgd4+Iv1pfxqhNg0NUsl6FKwGXeL8HcC8U3 + mJvtV9Ovw/MJOcujcfAvgarC+ROriJKiE7QRgrUnDshRPVdAF1YsevZ5LqztdRO3C0lBgO60Ob/3 + GCaJNztdIkiIHadFsmYqdLMZ8H0Y4HQHIiR0IovMOJbE9f6hxa3YHSpCJMYG5zKuI+6qC95TsZqz + iWCspcvIO5cAFjyb28lh8ynjfvm3wPvWfXqU0nerbpy7J/urejj3LB+ZBCgdCT4PtLNn0vtxItY8 + C+WxUuaXZVqNcK0PpQJGzACMjKhNRH120q7/fdztXp0LEjU6BKJ1674r1TRRdLweUq+wsx6z3Mm0 + mglTD3lzmQXffP/mv/gpQ37Qh90U0xf85fd8U65HYMzCcv7Q+J69SKmIEFPG0GJ+YQeUcnKbYHL3 + 5hDJdNRybumNB+Cagp8hat/zuGJazntD1Sp3dr93YrbyBXSpE2wBcksclM9V53qxZxhTTFe/4AXQ + LsX16zPq5soXMcjj7p64OpHDZvVRDq35EQ4OLjpyMXgsxAmTLjmf6tmzSXH27CC1QbPdpDzaQCh+ + 3pGgUnn2zGw+KQ7pgyrKcQ4dMHiFpwcWnMfZ6DBTaTlaVRZbQAUG9YQi/FEDEUXB0P/itE6OJ+gY + Mu9xOkJik0h6rTm0q8lC4BcYU1KDkEXjcrZ8sWD6OUP8jP2eLNP6Jfs1XgiAIj3pCqp4UvOkHHGo + TOxJFX8UP8fVuJhdvVhwBYSTXMafJlfpRxhkq3o33kH/bLMmH+WJwgHt7Jufj7p340tfqgC1IhD7 + cLfLPvf70GPyohsEXs/Ff27U5sx8FUVdIgMb3jonUjYDMs7+9rfwnP76a65AEqDka4xi3y1rYJ6K + TUBrwUW++fwOEwv0hUPOcZTaSobUOAkv1G2eWMm5r0FGIEGtHmbayhAHBTvxIjPs8xfZ1g4doROt + hv8ALPqJFO3q8+AclRlQ32/paiD2ZBg4ch9GdcwPW+1z7tzlb43fQopwD62jjfEgaSe9Gp1CnbQV + HY+0q4sTl/31HRcmDyy9FW97W5lPxw8YWXf+4rdr8IT8A/2d8T/d0Qlq4Vx7NZOCp3k6BR4nZsHj + EGB0AD1xq7iIOG11Xe9zXSXVDZ194/kMPbnPlq9UIJBwl3J1Dr2TdvazlRAOyyYcxEIJfaPhIV5g + njMjQv5fq9/8mauJRGK0fFJhbJafbH/YQaD1zHyQGUXi0ZdTJF+dziqSfYq8on9ajsqm2TAP9z8o + R0V29w/LUeFJIqpbniTCL8LSUOvG2H/gDfS3+eROXO3wLpFjH+Yxlbi+/dWnY++NXBOZayfDsfLS + Aa6+Y5aHP/lEru5Y8omddLJ87rQVEhTeL5+/9PStzoraWSmHyCTchy1dVbfamvwtK/4BIeYvdQwY + UVzlsdfOAhtcD3UWOI31uVt9qbH2erOrjnwduwRQqLG4E1sPWvg9FF73xEAY3/4FsqExANJfQUWL + vszm1DdsK3B3TZ6jG6l0xtyvM5oaowK9X1XME1Fhrn5xdZEwdVEVuunof7/eI/UdU2gIUM/MByk0 + xKNPaMhXp4WG7PPLhEahP3h27BQ9N1neqrQwTAxjx2ytynNuGadu0pjJUvLuB9NkpkrmqMjiMFwQ + RKD14lUxg1U9eIk3bvB6zHLeZRcipsXr62d+2zRXmDqn8bmPVN1aZ62PZTXxEvSZ8V+7zWf3ayfb + pqC7nZUQtKUVCJql9EqJKp3Lo75QTuuZeCV1MRoVznd5jLlzYZwfEcYFCuOC36ebd6RjbiRactCn + 51PcT4vK35vQ7SMmC9ru2Y79nplm1+STkaXvVopPOH14rcienticboCbgaTIhPsc736azh6EYhYu + SRZogoCpm/Xuj4wuQv/q+eXPIKS5q0F/yM9GSsNRZZ36Z7zHoqMIgNc5x56b944JBNGp47mbZH72 + p68SI/UbLzeTvJh97FPe1VR1UrAvLiqGRMxZUcb08nK/58p0sgPFOrT1O8nJAA4TNOcP3VvTpNsP + yOlmx9OtEGqxPO9vlp9fspOL5q4LGuz3VvSC2b4ekU/C0CycfS4zT/VxMfENIj2H8kyjWKBKRuDr + kn4ok5GpdAsT9YYYrnL4T/4yk+kOg8UwC0lWXVTqBqFLmaLB+savYRLm01qAsv8CL4ezPmXRw0mZ + ERfyNFOiE0gJJpDCkNUFwe9pv8wo+yE+8Zxl+Dw+B6zAkfBXZy7Y0tlF+c6yy7uTy+2ZGfe1SuIY + P7Uv4n46ztm13eIyTKMav9pbvMdv+jKhxy90AJxf1YHv2wyzX5Ty0gf3lh99w5n9Bb1VbVxI5/sq + o3kzlQSELZkcaLH122fXHQ4hlvHTuq1XPrEbn/rIh6XkqInM7EepzagCS9XJ3ZenlR3dsz574977 + b0HGvK3J8zUA7EneiNz3KQDFOeXNlnmc/32fAvjSoyQk51+wdsosO/shF+UXXSoyr0l67AGMU/lj + 5gAxXt+pMP9mJa5VM+kkwhtKOjKKfSaLfTrDkVVlVvZ9PUPd9Ik3OkuiZHTr+XaPCDIU9jduUqjV + gsrJv4jgRFMZ8N3LUZgQM2OvMmvOV5uy2rg2alxagqJNh2GH/jgsu0mx/5rqpXlDr2Ssucl08OrU + KLYrLOOlurLGJBg9u3vc6NQISLNleWGQu41Ueo6nDYfEgd2qXBxn/DFoFUbEvWIfO/cyKbGXLwc2 + hoERcYK7cQPee5syzh1ZRe8V2rmHhX9BT5iRM2chDitnJXdyW9Cg7XgJ8J7+01Iof7gI+mJ4TNkl + RfID8wtgZ2pL1NeAlhnt/RzaQs22+032/X44NPrjhTKEMtMtl70fb68el21Qsc/Ud7IebCcxyWfy + h3IOk9zrGIbiBziFoZ/+rw55jlyKw45ShPC7xaMjH+XBefSeUeXb2/ksz9E2m5qJ0/if+OV4UlX1 + pwd/OJ7Xfox/+tin4h/4XfgnQuV0I4EiomM7HdgMDQjbX0zFs/0yNC1vQLK25+HN/1i3Syaovm2a + jfdwk3F1IuvWOgt6s97U5i2IG8zAkkkNhqlgDhn2aBg/vn3/9kMWsEEG7C9mJ4pfIg/COu8p3BDT + mMMw5Zpgx/PI04L6sgrMvTGtP2mMmYEnmXxitZHGHEpxXDGzxkTyhQk1aVIVL6nIhxuyj3/qFA9f + bdHjnI41vF9kFcsbGJ6nKrWXTEqwtMYLs1BkkPPsHLPzuM6Wc5qyXuIr+L1I85k94GhUQH9iorwM + 9Kx6fPUyg6F0SrEbf8WkCRMH7OB4B0csO9N8ceSTMQJTLDnFyX9mepQ9W5r3bOmsbxYikcMJ+vcT + kLlc47zGKeqNz323d3QTtzQM1RJs94ulcuvbYo76KBgjRUSo4D/fVkBx5YQzxYbqyHUTqzfRTPJf + lSyHp9+qDAYB/tr11lOWLsYm4CTme6tXrDM5T7eFQHjloUHCDxdA7xTYu3KdCCIYZsvonmO2Ji33 + oh2WB80SWwOVRyywbRwu58EkGOPVLhFQkVT48SColkj9H5q5gkZHrw+3WO7S5LfGeYC5XKxJdWGU + ds/hn6ChWqeb1sqaEkuNAzENdMUbiztYBxO8tMWSthaTfFKhbm9qSqyPmf4ptSUuuzz6En9xWmPi + vfU7CI64Avi6Tn4UUH9NIFJZ1pn8sd+D/BccUxR9w6DELiIVyfAcbk6FyGn2Ae9T020wB8x4pTQ9 + FGaWI2L2v1BLAQIUABQAAAAIAGK5TlFgPZ8JswcAAGMQAAAKAAAAAAAAAAAAAAC2gQAAAAAuZ2l0 + aWdub3JlUEsBAhQAFAAAAAgAYrlOURQcGZXZAwAA8QgAAAoAAAAAAAAAAAAAALaB2wcAAGluZGV4 + Lmh0bWxQSwECFAAUAAAACABiuU5RQcF3To8CAACfBAAABwAAAAAAAAAAAAAAtoHcCwAATElDRU5T + RVBLAQIUABQAAAAIAGK5TlE6odUzPAEAAGACAAAJAAAAAAAAAAAAAAC2gZAOAABSRUFETUUubWRQ + SwECFAAUAAAACABiuU5RdlmkGBELAAAUZgAAFwAAAAAAAAAAAAAAtoHzDwAAY3NzL2Jvb3RzdHJh + cC10aGVtZS5jc3NQSwECFAAUAAAACABiuU5RemQxg9MbAABaugAAGwAAAAAAAAAAAAAAtoE5GwAA + Y3NzL2Jvb3RzdHJhcC10aGVtZS5jc3MubWFwUEsBAhQAFAAAAAgAYrlOUeNsH2jGCgAAcVsAABsA + AAAAAAAAAAAAALaBRTcAAGNzcy9ib290c3RyYXAtdGhlbWUubWluLmNzc1BLAQIUABQAAAAIAGK5 + TlEbNBRnuwMAAJwVAAAfAAAAAAAAAAAAAAC2gURCAABjc3MvYm9vdHN0cmFwLXRoZW1lLm1pbi5j + c3MubWFwUEsBAhQAFAAAAAgAYrlOUUSntQxDUwAAojoCABEAAAAAAAAAAAAAALaBPEYAAGNzcy9i + b290c3RyYXAuY3NzUEsBAhQAFAAAAAgAYrlOUb1pWTx9JAEAa/AFABUAAAAAAAAAAAAAALaBrpkA + AGNzcy9ib290c3RyYXAuY3NzLm1hcFBLAQIUABQAAAAIAGK5TlFu6zj1EU0AAKzZAQAVAAAAAAAA + AAAAAAC2gV6+AQBjc3MvYm9vdHN0cmFwLm1pbi5jc3NQSwECFAAUAAAACABiuU5REv6C5KtLAACQ + 1AAAGQAAAAAAAAAAAAAAtoGiCwIAY3NzL2Jvb3RzdHJhcC5taW4uY3NzLm1hcFBLAQIUABQAAAAI + AGK5TlFYx7GcRk4AAJ9OAAAmAAAAAAAAAAAAAAC2gYRXAgBmb250cy9nbHlwaGljb25zLWhhbGZs + aW5ncy1yZWd1bGFyLmVvdFBLAQIUABQAAAAIAGK5TlF87sbJr2gAAMKoAQAmAAAAAAAAAAAAAAC2 + gQ6mAgBmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLnN2Z1BLAQIUABQAAAAIAGK5 + TlGaFzycRlsAAFyxAAAmAAAAAAAAAAAAAAC2gQEPAwBmb250cy9nbHlwaGljb25zLWhhbGZsaW5n + cy1yZWd1bGFyLnR0ZlBLAQIUABQAAAAIAGK5TlHqFHv1gloAAIBbAAAnAAAAAAAAAAAAAAC2gYtq + AwBmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLndvZmZQSwECFAAUAAAACABiuU5R + dujDYXZGAABsRgAAKAAAAAAAAAAAAAAAtoFSxQMAZm9udHMvZ2x5cGhpY29ucy1oYWxmbGluZ3Mt + cmVndWxhci53b2ZmMlBLAQIUABQAAAAIAGK5TlEPF/FMgNMAAGzTAAAUAAAAAAAAAAAAAAC2gQ4M + BABpbWcvYXp1cmUtcG9ydGFsLnBuZ1BLAQIUABQAAAAIAGK5TlHQX8760A8AANIPAAALAAAAAAAA + AAAAAAC2gcDfBABpbWcvY2RuLnBuZ1BLAQIUABQAAAAIAGK5TlH1TydqLjcAAFoNAQAPAAAAAAAA + AAAAAAC2gbnvBABqcy9ib290c3RyYXAuanNQSwECFAAUAAAACABiuU5ROjrf2hImAAAEkAAAEwAA + AAAAAAAAAAAAtoEUJwUAanMvYm9vdHN0cmFwLm1pbi5qc1BLBQYAAAAAFQAVAKwFAABXTQUAAAA= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '348953' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-statichtmlapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Oct 2020 06:11:48 GMT + expires: + - '-1' + location: + - https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-15_06-11-48Z + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=7adbf14d8e75f98367e830cf2e4b1f04857993258b74780366c7f67db243f6f5;Path=/;HttpOnly;Secure;Domain=up-statichtmlapp2qc4tdlz.scm.azurewebsites.net + - ARRAffinitySameSite=7adbf14d8e75f98367e830cf2e4b1f04857993258b74780366c7f67db243f6f5;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-statichtmlapp2qc4tdlz.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"14f94021e07e42e6b1cd2bad44a0c0ab","status":1,"status_text":"Building + and Deploying ''14f94021e07e42e6b1cd2bad44a0c0ab''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-10-15T06:11:49.133092Z","start_time":"2020-10-15T06:11:49.2580821Z","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":"up-statichtmlapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:51 GMT + expires: + - '-1' + location: + - https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=7adbf14d8e75f98367e830cf2e4b1f04857993258b74780366c7f67db243f6f5;Path=/;HttpOnly;Secure;Domain=up-statichtmlapp2qc4tdlz.scm.azurewebsites.net + - ARRAffinitySameSite=7adbf14d8e75f98367e830cf2e4b1f04857993258b74780366c7f67db243f6f5;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-statichtmlapp2qc4tdlz.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"14f94021e07e42e6b1cd2bad44a0c0ab","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"","received_time":"2020-10-15T06:11:49.133092Z","start_time":"2020-10-15T06:11:49.2580821Z","end_time":"2020-10-15T06:11:52.4924994Z","last_success_end_time":"2020-10-15T06:11:52.4924994Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-statichtmlapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '680' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 06:11:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=7adbf14d8e75f98367e830cf2e4b1f04857993258b74780366c7f67db243f6f5;Path=/;HttpOnly;Secure;Domain=up-statichtmlapp2qc4tdlz.scm.azurewebsites.net + - ARRAffinitySameSite=7adbf14d8e75f98367e830cf2e4b1f04857993258b74780366c7f67db243f6f5;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-statichtmlapp2qc4tdlz.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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --html + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-statichtmlapp000003","repositorySiteName":"up-statichtmlapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp000003.azurewebsites.net","up-statichtmlapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-statichtmlapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:39.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-statichtmlapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5375' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:53 GMT + etag: + - '"1D6A2BA0BC4B82B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-statichtmlapp000003","repositorySiteName":"up-statichtmlapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp000003.azurewebsites.net","up-statichtmlapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-statichtmlapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:39.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-statichtmlapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5375' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:54 GMT + etag: + - '"1D6A2BA0BC4B82B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-statichtmlapp000003","repositorySiteName":"up-statichtmlapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp000003.azurewebsites.net","up-statichtmlapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-statichtmlapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:11:39.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp000003","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.173.76.33","possibleInboundIpAddresses":"52.173.76.33","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-061.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","possibleOutboundIpAddresses":"52.173.76.33,52.165.157.71,52.165.164.201,52.176.148.33,52.176.145.195","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-statichtmlapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5375' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11:55 GMT + etag: + - '"1D6A2BA0BC4B82B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Thu, 15 Oct 2020 06:11: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 config show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/web","name":"up-statichtmlapp000003","type":"Microsoft.Web/sites/config","location":"Central + 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":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-statichtmlapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":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","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '3596' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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 appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + headers: + cache-control: + - no-cache + content-length: + - '390' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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 list + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-statichtmlapp000003/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"up-statichtmlapp000003","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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: + - appservice plan show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-statichtmlplan000002","name":"up-statichtmlplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":53785,"name":"up-statichtmlplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-061_53785","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 06:11: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py index 4fbbe334cb0..dfe50b88c44 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py @@ -323,52 +323,6 @@ def test_webapp_up_invalid_name(self, resource_group): import shutil shutil.rmtree(temp_dir) - @live_only() - @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) - def test_webapp_up_different_skus(self, resource_group): - webapp_name = self.create_random_name('up-different-skus', 40) - webapp_name_2 = self.create_random_name('up-different-skus-2', 40) - webapp_name_3 = self.create_random_name('up-different-skus-3', 40) - plan = self.create_random_name('up-different-skus-plan', 40) - plan_2 = self.create_random_name('up-different-skus-plan-2', 40) - - zip_file_name = os.path.join(TEST_DIR, 'python-hello-world-up.zip') - - # create a temp directory and unzip the code to this folder - import zipfile - import tempfile - temp_dir = tempfile.mkdtemp() - zip_ref = zipfile.ZipFile(zip_file_name, 'r') - zip_ref.extractall(temp_dir) - current_working_dir = os.getcwd() - - # change the working dir to the dir where the code has been extracted to - up_working_dir = os.path.join(temp_dir, 'python-docs-hello-world') - os.chdir(up_working_dir) - - result = self.cmd( - 'webapp up -n {} --sku S1 -g {} --plan {}'.format(webapp_name, resource_group, plan)).get_output_in_json() - self.assertTrue(result['name'] == webapp_name) - self.assertTrue(result['sku'].lower() == 'standard') - - # Creating an app with new ASP with free sku should work - result = self.cmd( - 'webapp up -n {} --sku F1 -g {} --plan {}'.format(webapp_name_2, resource_group, plan_2)).get_output_in_json() - self.assertTrue(result['name'] == webapp_name_2) - self.assertTrue(result['sku'].lower() == 'free') - - # Creating an app with existing ASP that isn't free should not work - from azure.cli.core.util import CLIError - with self.assertRaises(CLIError): - self.cmd('webapp up -n {} --sku F1 -g {} --plan {}'.format(webapp_name_3, resource_group, plan)) - - # cleanup - # switch back the working dir - os.chdir(current_working_dir) - # delete temp_dir - import shutil - shutil.rmtree(temp_dir) - @AllowLargeResponse() @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) def test_webapp_up_name_exists_not_in_subscription(self, resource_group): @@ -456,5 +410,249 @@ def test_webapp_up_name_exists_in_subscription(self, resource_group): shutil.rmtree(temp_dir) + @live_only() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) + def test_webapp_up_choose_os(self, resource_group): + plan = self.create_random_name('up-nodeplan', 24) + webapp_name = self.create_random_name('up-nodeapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'node-Express-up.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'myExpressApp') + os.chdir(up_working_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'premiumv2') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10.14') + self.assertTrue(result['os'].lower() == 'linux') + + # test the full E2E operation works + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # Verify app is created + # since we set local context, -n and -g are no longer required + self.cmd('webapp show', checks=[ + JMESPathCheck('name', webapp_name), + JMESPathCheck('httpsOnly', True), + JMESPathCheck('kind', 'app,linux'), + JMESPathCheck('resourceGroup', resource_group) + ]) + + self.cmd('webapp config show', checks=[ + JMESPathCheck('tags.cli', 'None') + ]) + + self.cmd('webapp config appsettings list', checks=[ + JMESPathCheck('[0].name', 'SCM_DO_BUILD_DURING_DEPLOYMENT'), + JMESPathCheck('[0].value', 'True') + ]) + + self.cmd('appservice plan show', checks=[ + JMESPathCheck('name', plan), + JMESPathCheck('sku.tier', 'PremiumV2'), + JMESPathCheck('sku.name', 'P1v2') + ]) + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) + + @live_only() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) + def test_webapp_up_choose_runtime(self, resource_group): + plan = self.create_random_name('up-pythonplan', 24) + webapp_name = self.create_random_name('up-pythonapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'python-hello-world-up.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'python-docs-hello-world') + os.chdir(up_working_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --runtime "PYTHON|3.6" --sku S1 --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'PYTHON|3.6') + self.assertTrue(result['os'].lower() == 'linux') + + # test the full E2E operation works + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --runtime "PYTHON|3.6" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # Verify app is created + # since we set local context, -n and -g are no longer required + self.cmd('webapp show', checks=[ + JMESPathCheck('name', webapp_name), + JMESPathCheck('httpsOnly', True), + JMESPathCheck('kind', 'app,linux'), + JMESPathCheck('resourceGroup', resource_group) + ]) + + self.cmd('webapp config show', checks=[ + JMESPathCheck('linuxFxVersion', result['runtime_version']), + JMESPathCheck('tags.cli', 'None') + ]) + + self.cmd('webapp config appsettings list', checks=[ + JMESPathCheck('[0].name', 'SCM_DO_BUILD_DURING_DEPLOYMENT'), + JMESPathCheck('[0].value', 'True') + ]) + + self.cmd('appservice plan show', checks=[ + JMESPathCheck('reserved', True), + JMESPathCheck('name', plan), + JMESPathCheck('sku.tier', 'Standard'), + JMESPathCheck('sku.name', 'S1') + ]) + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) + + @live_only() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) + def test_webapp_up_choose_os_and_runtime(self, resource_group): + plan = self.create_random_name('up-nodeplan', 24) + webapp_name = self.create_random_name('up-nodeapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'node-Express-up.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'myExpressApp') + os.chdir(up_working_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10-lts" --sku "S1" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10-lts') + self.assertTrue(result['os'].lower() == 'linux') + + # test the full E2E operation works + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10-lts" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # Verify app is created + # since we set local context, -n and -g are no longer required + self.cmd('webapp show', checks=[ + JMESPathCheck('name', webapp_name), + JMESPathCheck('httpsOnly', True), + JMESPathCheck('kind', 'app,linux'), + JMESPathCheck('resourceGroup', resource_group) + ]) + + self.cmd('webapp config show', checks=[ + JMESPathCheck('tags.cli', 'None') + ]) + + self.cmd('webapp config appsettings list', checks=[ + JMESPathCheck('[0].name', 'SCM_DO_BUILD_DURING_DEPLOYMENT'), + JMESPathCheck('[0].value', 'True') + ]) + + self.cmd('appservice plan show', checks=[ + JMESPathCheck('name', plan), + JMESPathCheck('sku.tier', 'Standard'), + JMESPathCheck('sku.name', 'S1') + ]) + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) + + @live_only() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) + def test_webapp_up_runtime_delimiters(self, resource_group): + plan = self.create_random_name('up-nodeplan', 24) + webapp_name = self.create_random_name('up-nodeapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'node-Express-up.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'myExpressApp') + os.chdir(up_working_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node 10.6" --sku "S1" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10.6') + self.assertTrue(result['os'].lower() == 'linux') + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node:10.1" --sku "S1" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10.1') + self.assertTrue(result['os'].lower() == 'linux') + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) + + if __name__ == '__main__': unittest.main() From 0ad5bc817e5ec65a4b9eddf744e77b8b0d488a32 Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Thu, 15 Oct 2020 16:54:39 -0700 Subject: [PATCH 5/7] Add webapp tests --- .../command_modules/appservice/_constants.py | 1 + .../cli/command_modules/appservice/custom.py | 11 +- .../recordings/test_download_win_web_log.yaml | 1057 ++++++++++------- .../latest/recordings/test_webapp_e2e.yaml | 1049 ++++++++++------ .../test_win_webapp_quick_create.yaml | 154 +-- .../test_win_webapp_quick_create_cd.yaml | 272 +++-- .../test_win_webapp_quick_create_runtime.yaml | 509 +++++--- .../tests/latest/test_webapp_commands.py | 4 +- .../tests/latest/test_webapp_up_commands.py | 1 - 9 files changed, 1969 insertions(+), 1089 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_constants.py b/src/azure-cli/azure/cli/command_modules/appservice/_constants.py index 7e0704f1259..6af26662f52 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_constants.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_constants.py @@ -5,6 +5,7 @@ import os NODE_VERSION_DEFAULT = "10.14" +NODE_EXACT_VERSION_DEFAULT = "10.14.1" NETCORE_VERSION_DEFAULT = "3.1" DOTNET_VERSION_DEFAULT = "4.7" PYTHON_VERSION_DEFAULT = "3.7" 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 599abaa7860..ec0367efc1f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -60,7 +60,7 @@ detect_os_form_src, get_current_stack_from_runtime) from ._constants import (FUNCTIONS_STACKS_API_JSON_PATHS, FUNCTIONS_STACKS_API_KEYS, FUNCTIONS_LINUX_RUNTIME_VERSION_REGEX, FUNCTIONS_WINDOWS_RUNTIME_VERSION_REGEX, - NODE_VERSION_DEFAULT, RUNTIME_STACKS, FUNCTIONS_NO_V2_REGIONS) + NODE_EXACT_VERSION_DEFAULT, RUNTIME_STACKS, FUNCTIONS_NO_V2_REGIONS) logger = get_logger(__name__) @@ -92,7 +92,7 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi if not plan_info: raise CLIError("The plan '{}' doesn't exist in the resource group '{}".format(plan, resource_group_name)) is_linux = plan_info.reserved - node_default_version = NODE_VERSION_DEFAULT + node_default_version = NODE_EXACT_VERSION_DEFAULT location = plan_info.location # This is to keep the existing appsettings for a newly created webapp on existing webapp name. name_validation = client.check_name_availability(name, 'Site') @@ -2536,7 +2536,8 @@ def __init__(self, cmd, client, linux=False): self._linux = linux self._stacks = [] - def remove_delimiters(self, runtime): + @staticmethod + def remove_delimiters(runtime): import re runtime = re.split('[| :]', runtime) # delimiters allowed: '|', ' ', ':' return '|'.join(filter(None, runtime)) @@ -3547,8 +3548,8 @@ def get_history_triggered_webjob(cmd, resource_group_name, name, webjob_name, sl return client.web_apps.list_triggered_web_job_history(resource_group_name, name, webjob_name) -def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku=None, os_type=None, runtime=None, dryrun=False, # pylint: disable=too-many-statements, - logs=False, launch_browser=False, html=False): +def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku=None, # pylint: disable=too-many-statements,too-many-branches + os_type=None, runtime=None, dryrun=False, logs=False, launch_browser=False, html=False): import os AppServicePlan = cmd.get_models('AppServicePlan') src_dir = os.getcwd() 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 e4c17c6287c..2147cfae3bb 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 @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:29:52Z"},"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-10-15T20:27:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:29:54 GMT + - Thu, 15 Oct 2020 20:27:11 GMT expires: - '-1' pragma: @@ -63,8 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:29:55 GMT + - Thu, 15 Oct 2020 20:27:12 GMT expires: - '-1' pragma: @@ -118,15 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:29:52Z"},"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-10-15T20:27:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:29:55 GMT + - Thu, 15 Oct 2020 20:27:12 GMT expires: - '-1' pragma: @@ -168,8 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":18829,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18929,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18929","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, 13 Oct 2020 17:30:07 GMT + - Thu, 15 Oct 2020 20:27:26 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -225,8 +225,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":18829,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18929,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18929","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, 13 Oct 2020 17:30:08 GMT + - Thu, 15 Oct 2020 20:27:27 GMT expires: - '-1' pragma: @@ -285,8 +285,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:30:08 GMT + - Thu, 15 Oct 2020 20:27:27 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -340,8 +340,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":18829,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18929,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18929","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, 13 Oct 2020 17:30:09 GMT + - Thu, 15 Oct 2020 20:27:28 GMT expires: - '-1' pragma: @@ -399,8 +399,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -416,7 +416,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:30:09 GMT + - Thu, 15 Oct 2020 20:27:28 GMT expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: - request: body: '{"location": "Japan West", "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": "10.14"}], + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: @@ -454,14 +454,14 @@ interactions: Connection: - keep-alive Content-Length: - - '543' + - '545' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -469,9 +469,9 @@ 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":"Japan - West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:30:16.1366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:27:35.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' headers: cache-control: - no-cache @@ -480,9 +480,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:30:34 GMT + - Thu, 15 Oct 2020 20:27:55 GMT etag: - - '"1D6A186841D2340"' + - '"1D6A3319EBBAE75"' expires: - '-1' pragma: @@ -506,6 +506,126 @@ interactions: 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-source-url -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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/metadata/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/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '316' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:27: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-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "app", "properties": {"CURRENT_STACK": "node"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '56' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-source-url -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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/config/metadata?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/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"CURRENT_STACK":"node"}}' + headers: + cache-control: + - no-cache + content-length: + - '338' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:27:56 GMT + etag: + - '"1D6A331AA77A0E0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: @@ -520,8 +640,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -529,7 +649,7 @@ 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":"Japan - West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:30:16.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:27:56.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' headers: cache-control: - no-cache @@ -538,9 +658,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:30:35 GMT + - Thu, 15 Oct 2020 20:27:57 GMT etag: - - '"1D6A186841D2340"' + - '"1D6A331AA77A0E0"' expires: - '-1' pragma: @@ -581,8 +701,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -599,9 +719,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:30:42 GMT + - Thu, 15 Oct 2020 20:28:06 GMT etag: - - '"1D6A18693C3964B"' + - '"1D6A331B099C200"' expires: - '-1' pragma: @@ -615,7 +735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -635,15 +755,15 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - 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":"2020-10-13T17:31:13.4589474 - https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-13_17-30-51Z"}}' + 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":"2020-10-15T20:28:41.1756734 + https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-15_20-28-17Z"}}' headers: cache-control: - no-cache @@ -652,9 +772,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:31:14 GMT + - Thu, 15 Oct 2020 20:28:40 GMT etag: - - '"1D6A18693C3964B"' + - '"1D6A331B099C200"' expires: - '-1' pragma: @@ -690,8 +810,63 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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":"Japan + 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":"2020-10-15T20:29:03.1538572 + https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-15_20-28-17Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '733' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:29:11 GMT + etag: + - '"1D6A331B099C200"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -706,9 +881,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:31:44 GMT + - Thu, 15 Oct 2020 20:29:41 GMT etag: - - '"1D6A18693C3964B"' + - '"1D6A331B099C200"' expires: - '-1' pragma: @@ -748,8 +923,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -758,19 +933,19 @@ interactions: body: string: @@ -782,7 +957,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:31:45 GMT + - Thu, 15 Oct 2020 20:29:43 GMT expires: - '-1' pragma: @@ -796,7 +971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -816,8 +991,8 @@ interactions: ParameterSetName: - -g -n --log-file User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -825,18 +1000,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":"Japan - West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:30:43.0766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:28:06.56","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5663' content-type: - application/json date: - - Tue, 13 Oct 2020 17:32:17 GMT + - Thu, 15 Oct 2020 20:30:14 GMT etag: - - '"1D6A18693C3964B"' + - '"1D6A331B099C200"' expires: - '-1' pragma: @@ -876,8 +1051,8 @@ interactions: ParameterSetName: - -g -n --log-file User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -886,19 +1061,19 @@ interactions: body: string: @@ -910,7 +1085,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:32:18 GMT + - Thu, 15 Oct 2020 20:30:16 GMT expires: - '-1' pragma: @@ -946,8 +1121,8 @@ interactions: ParameterSetName: - -g -n --log-file User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -955,7 +1130,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":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"WfZmaWjqMKQnnmvycCkh5qo12mdGtK87PomkQiz1waytgjCccql2QqTd4oSc","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:WfZmaWjqMKQnnmvycCkh5qo12mdGtK87PomkQiz1waytgjCccql2QqTd4oSc@webapp-win-log000002.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"lLDbsguyx1pfJZhDs26rZxPs71bilYwio8Gl8lYSTprl4exM8RjMlEtFMzkD","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:lLDbsguyx1pfJZhDs26rZxPs71bilYwio8Gl8lYSTprl4exM8RjMlEtFMzkD@webapp-win-log000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -964,7 +1139,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:32:20 GMT + - Thu, 15 Oct 2020 20:30:16 GMT expires: - '-1' pragma: @@ -982,7 +1157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -996,332 +1171,400 @@ interactions: response: body: string: !!binary | - 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 - 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/m8wOEG8f0HUEsHCHohM0npBAAA7gwAAFBLAwQUAAgACADbi01RAAAAAAAAAAAAAAAAJAAA - AGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRDYWNoZUtlebOw1DMysDC00DMxNzXRM+Dl0q1U - 0NXNy9dNyS/RTUktyMmvzE3NK1HQLVJQcrGKycjPTY0pzixJjSlKLcgHMvKLKpUUdPPRJBEai2NK - 8vNzioFqgIampAIpkO6AxJIMNC1I5vFyAQBQSwcIKCswaWcAAACWAAAAUEsDBBQAAAAAAAqMTVEA - AAAAAAAAAAAAAAAZAAAATG9nRmlsZXMva3VkdS9kZXBsb3ltZW50L1BLAwQUAAgACADUi01RAAAA - AAAAAAAAAAAAUwAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMC00MV82ZjBl - YjZfMDAxX1N0YXJ0dXBfUE9TVF9hcGktc2V0dGluZ3NfMHMueG1shY5NS8QwEIbvC/6Hcc4bm7Td - iqVdWNZLsfuBKeKtxG3UQJvGZnrw35sVhL0swpzm/XoKT9oBGep1iZLURLODZ/01a08InaLwjnnM - mQiXNOI+T3ieirsHkSAY60nZU7Bk71y/ZQjz1JcYKWcir4mM/fAIg6bPsSvxeJANAn274J/+FpwJ - Spyl6TJerhDkdtfKp+rYSlm3L5u6etw01WFfIg/aaWh+w/vRaoT1zQKguMTf9lrZgP869FCP5+l/ - +KN1ccsYdPOkyIw2B5ENHhgL1UV0br6u/wBQSwcIh2XG1dcAAAA4AQAAUEsDBBQACAAIANWLTVEA - AAAAAAAAAAAAAABPAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3LTMwLTQxXzZm - MGViNl8wMDJfUE9TVF9hcGktc2V0dGluZ3NfMjA0XzFzLnhtbJ1T227aQBB9r9R/2O5zZrGNMQHF - kVxCWlRuwqakj8YMsKnZdXfXSZqv75iWpmqEVFXap5kzl3P2zJV1WDEnXYkxH6lCH6TasQV+q9E6 - zja5o3jgBR749NqZ3+23vX7oi17kcSaVdbkqCBJtPVxHnNWmjHkrr2TLonPUy3J2QLfXm5jPZ2nG - mfteEd6cJlSSMkEUhhfBRYezgVYKCye1ivknxAqSUj7gMe5QORij2rl9U/ESy44d86oqZZE3pa17 - qxVnSU1zjXw+xmL+PrdCCM6GTxVNiLnveVBoRUvWNOCjthR7xDX1gUepoNS7+/yrtLvDNgiFLQ4i - f64NEsJKh1YoJH2WFg0kO9os5kmThhWu0yYPxMQZXZZoWj1PeKIrwh5nT3Cw8Is8NNQ7/sZft7td - 2AakcNhBH9Zt7MJlEPTCToR+lNN2d7BKViksFdIXbXADy8X4lc6D8Wg4zWA0b7iFIvA7wveF3436 - 4WUUNk2SxQLGsw8wuvn3wekoG8LNcD6efZkc21PtOZk4WyUpgW+T5TiDj/Tf02QyPI8/J+sd3Grz - mJuG6dxop2O+d64iLxGHqkrRPMgCX6VeirLSfkZjjzbyRdDUTVIYzMY3aZYsMhKIs+u3bxi7+tP/ - s9rtdON/g7bSypLw5w4gEJ1LsuvJzCc4nYOr7YC+qLka0vxnIMMnMshUN/ZubMxZQwFNzCeyMNrq - rYPRKG35ZJT/9sggL/Z4sl3MKyMf6HqPktlqig5+KxKSHdte2yc/tq6v3gGwTW2OV9Jn3sEyANLm - qtVI83c6CjonwA9QSwcI25uyT1kCAAA7BAAAUEsDBBQACAAIANWLTVEAAAAAAAAAAAAAAABWAAAA - TG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3LTMwLTQzXzZmMGViNl8wMDNfR0VUX2Fw - aS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWydk91u00AQhe+ReIdlrzv+j52GuJJJ09Zq2lSx - Q8ql40ySLY7X7K7b0qdnnBJAoCCE5Ks5M7Mzx98MtcGGGWEqjHlal3In6g2b4ZcWteFsVRiKe47n - gEufn7vRwHcGgW8F/ilnotamqEtKCdcOLkPOWlXF3C4aYWs0hnppOyt3+dcGOduh2cpVzC/HOWeG - QjFXh4caQYIXBsGJd9LjbCTrGksjZB3za8QGkko8UoukpRZKvBSv0odCW5bF2ZXUJuZPuCyaBp5E - DZXcPBSfhd7s1l5g6XJnFS+tQsrQwqC2aqTl5hoVJBusqTbpZFjgMut0oPeNklWFyj51LMeKrIDW - fYadhu8jQzdwz125Sz+KYO2RPUEPXVj6GEHf806DXohuWNDQ97BIFhnMayR/V7iC+Wxy1KTRJB3f - 5pDexdx1Astze5brWm4UDoJ+GHTNktkMJtNLSM//fYAszcdwPr6bTD/d7NtT7TG7OFskGSVfJPNJ - DlfTLL9NbsbH84/Zew8XUj0Vqtv4TkkjY741ptH7HZomQ/UoSvxD+lmUV/ojKr2HwLU8zs7evmFs - +Cux09ZsZEesQt3IWpPbf0G2T4AeuDukE8Cm1SP6Lx3nDmevgRyfiYrpNWfdnKhifiNKJbVcG0jT - zHaJiv8GYlSUWzwwFvNGiUe6s70vurlFAz/WDog93/Fdgq9DklCF7pZiTqBXotyfgf2gZf2eldtC - 0c3FrVlDnzP7bPgOgK1atU8aMGenGQBZOLQ7B3+Xg+igfwNQSwcIMm2G20ACAAATBAAAUEsDBBQA - CAAIANeLTVEAAAAAAAAAAAAAAABCAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3 - LTMwLTQ2XzZmMGViNl8wMDRfU2h1dGRvd25fMHMueG1sVcpBDsIgFEXRuYl7+DIuFSjQltSuwUQ3 - gAUjSUtr+cTti0OTO3rvDAn9Bhhw9hdy3dfJpwS3V0a3fiIBZ7HsgglGeam589Y0zEhdS9EQCDGh - jVMh+sn8QxPYgiteS1mJShHIG4al3IyZX7JWqmW96gjMNuHu39kn/COi7jvJ2p4TOI/DiVJwebcY - 1miA6yUBpePx8AVQSwcIFNyEYpUAAAC3AAAAUEsDBBQACAAIANmLTVEAAAAAAAAAAAAAAABaAAAA - TG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3LTMwLTUwXzZmMGViNl8wMDFfU3RhcnR1 - cF9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMHMueG1shY/BSsNAEIbvgu8wzrkx2zStELKFUksJ - RituEG9hbca6sNnE3Qno27sighcR5vR/wzfzl4FpBDZsSaJi7Xka4YHeJgqM0GmOcSYykczjLJr5 - VbEQxVJc5nmOYFxg7Y5xZfUi6HmFMHkrMdWjSQMxG3cKqTr2zcdICD3x69BJ3O8aBI6RRP9zaDQR - LHORz7JZ1KjtbatuqvtWqbp93NTV9aapDncSRWTfPom7dybvtN2b+On6/Ayg/F1ma0m7WOapt1AP - p/Bvm3RdXiQJdJPXbAZXgOgDJEk0l+mX+E/8CVBLBwjnWH0q3wAAAEQBAABQSwMEFAAIAAgA2YtN - UQAAAAAAAAAAAAAAAFYAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTNUMTctMzAtNTBf - NmYwZWI2XzAwMl9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbJ2T3W7aQBCF7yv1 - HbZ7nfE/JlAcySUkQSEhwqakl8YMsKntdXfXSZqn79gpadUKqarkq5kzszPH34y0wZoZYQqM+LTK - ZSmqHVvgtwa14WyTGYp7jueAS5+fuv2h7wx7jhWEDmei0iarcpKEWwfXIWeNKiJuZ7WwNRpDvbSd - 5GX6vUbOSjR7uYn45STlzFAo4urwUC0o0Quc4MQ7oTZjWVWYGyGriF8j1hAX4pFaxA21UOIle019 - yrRlWZxdSW0i/oTrrK7hSVRQyN1D9lXoXbn1AkvnpZW9NApJoYVBbVVIyy01Koh3WFFt3KZhheuk - zQO9b5QsClT2wLEcq28FA86eodTwc2ToBnY37trv92HrkT1BD11Y+9iHU88bBL0Q3TCjoe9hFa8S - WFZI/m5wA8vF7KhJ49l0cpvC9C7irhNYntuzXNdy++EwOA2Dtlm8WMBsfgnTc3LsHwdIpukEzid3 - s/mXm6491R6zi7NVnJD4Il7OUriaJ+ltfDM5rj9m7z1cSPWUqXbjOyWNjPjemFp3O9R1gupR5PhX - 6ldRWujPqHQHgWt5nJ29f8fY6Hdi543ZyZZYhbqWlSa3jyPbHxCyB+4OcgLYNHpM/6XlnASvgRSf - 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 - Lqq5RQ2/nu0b9DzHY4a9jkhDKqT94hjOK170W2A/KFF/JMUuk2blwlaXcEqJfTb5AEA2rexNY+Kx - vSIAJsOJ3UX4pz7yD/oPUEsHCEMHDrxAAgAAEwQAAFBLAwQUAAgACAD2i01RAAAAAAAAAAAAAAAA - VQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMS00NV82ZjBlYjZfMDEwX0dF - VF9hcGktc2V0dGluZ3MtYnJhbmNoXzIwMF8wcy54bWydk91O20AQhe8r9R22e834LyYhaYzkhgAR - gaDYaejlxhknSx2vu7sGytN3bJq2KgqqKvnKM3N298x3hsZixay0BUZ8UmZqJ8sNm+O3Go3lbC0s - /Q+8wAOfvk7q9wYdfxAeO51uwJksjRVlRi3d3MNVl7NaFxF3RSVdg9aSlnFXmlq2nO3QbtU64hfj - lDP7vaIpvT+nklQ4Dr3wKDg64WykyhIzK1UZ8SvECuJCPiBncU0SWj6Ll9InYRzH4exSGRvxR1yJ - qoJHWUKhNvfiqzSbXR6Ejsl2jniuNVKHkRaNUyK9bWFQQ7zBkmbjpgxLXCVNHeh8q1VRoHb7nuM5 - PSfsc/YEOwM/rwzNhT0M/WwlVtDLgwDCLA9A9MMcVqJ7su7mYb8jepzdwTJeJrAokexd4xoW8+kh - j0bTyfgmhcltxH0vdAL/2PF9x+91B+FJN2y04vkcprMLmJz9+/nJJB3D2fh2Ovty3crT7CG3OFvG - CTWfx4tpCpezJL2Jr8eH+w+5ewfnSj8K3Tz4ViurIr61tjLtG6oqQf0gM3xV+j2UFuYzatMy4DsE - 2+n7d4wN/+R1VKAo64rd7Qo2VRvSfoPXHq3CPR1+AGDrWrcEDZi3MwzgtfKsthvVJEGjqVRpiL03 - pPu0mT3Q+3YKhq3NiBbe5Mfj7OVHik+E2+yKs8YB1BG/lplWRuUWJpPE9Qm3/yZtJLIt7uGNeKXl - A+W3ddxUN2jhl6EhQd3xOj5R3bBOGYC0TSQlqJBZ6457b1T5kWVboSnLUW1zoGgetnDoNrv52+FO - sLf4B1BLBwj9kL5eVwIAAGsEAABQSwMEFAAIAAgACoxNUQAAAAAAAAAAAAAAAEcAAABMb2dGaWxl - cy9rdWR1L3RyYWNlLzIwMjAtMTAtMTNUMTctMzItMjBfNmYwZWI2XzAxMV9HRVRfZHVtcF9wZW5k - aW5nLnhtbIVSy27bMBC8F+g/sDyHDEXrURtWANVREqNKbFhKnfZGS2uHrUSxJBUj+frSLvoAArcA - T9yZ2RnsTK0DjZx0LaR4ruq+k2qHVvB9AOswaoTz/5xxRgL/RlWQTEZ8whl9H3OMpLJOqNpD4i2D - TYzRYNoUnzdDpzHqwD32TYqv8woj96w9zPwS1tIPopCFZ/ws8EqzXimonexVij8CaJK18gkwyuoa - tCO5d9Z4ZymWDShv99mPBi9v5Iv4yfogLKUUo5veuhTvYSO0JnupSNvvvopv0u66LQ+prTsqXgYD - HmGlA0sV+KAPZJ2tS3Kv4LAJGnK/Kn4HmRXz/K4i82WKgySkAU8ojxgNkmASsWgcHOjZakWKxTWZ - X6Z4nIjtKGKCbDcsIiGDhIgwFiSJRyyEmvFwlBw45bzKyWW+LBafb48LPPeUcYzWWenBV9l9UZGb - RVndZbf5afzpoFe92QtzyLg0vetT/OictscMWpdgnmQNr0Z/SFVrP4Gxx0sF1J/u4u0bhKZ/92jW - glCDRg9di4p+57X/06Pzi+k7QlAzmOMxJyiIO4sIeS39RerSGRCdL4zzTaAL5b/+tWDMQ4x+AFBL - BwhSx293vwEAAOcCAABQSwMEFAAIAAgA1ItNUQAAAAAAAAAAAAAAAEsAAABMb2dGaWxlcy9rdWR1 - L3RyYWNlL1JEMDAwM0ZGNUIxQjM0LTc4ZWU4ZTg5LTg5NDMtNGVjZS04YzQwLWY0NmViYjQ1ZTYx - Mi50eHQ1y0ELwiAYgOF70H/4foAxdVbgbdRFWttI6SqjpIS2mX4e+vdJELy3h5dTTjesVBu2lzWV - ggFoHCPmABf3zi4hgRxfEqox+Co5RD8/EoHJ4XO5Sxh6bQjgJzgJ8T8EX4TvhCCcbAnow9nqkxqs - 1q29Nq06Nkb1nQRa7DaZ39wts1uvvlBLBwgkNkmhgwAAAJEAAABQSwECFAAUAAgACADpi01RVf07 - dycAAAAoAAAAEgAAAAAAAAAAAAAAAAAAAAAAZGVwbG95bWVudHMvYWN0aXZlUEsBAhQAFAAIAAgA - 6YtNUUeVr2g7CAAAshgAADwAAAAAAAAAAAAAAAAAZwAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJh - OTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvbG9nLmxvZ1BLAQIUABQACAAIANyLTVFNPIm1 - MgAAADkAAAA9AAAAAAAAAAAAAAAAAAwJAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRjZWU1 - OTVlZTg4YzAxZWM3OTI0MmZmYjA3L21hbmlmZXN0UEsBAhQAFAAIAAgA6YtNUZ6kPJ5mAQAAvAIA - AD8AAAAAAAAAAAAAAAAAqQkAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj - MDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbFBLAQIUABQACAAIAOmLTVFjblSWngEAAP0CAAAXAAAA - AAAAAAAAAAAAAHwLAABkZXBsb3ltZW50cy9sYXRlc3QuanNvblBLAQIUABQAAAAAANmLTVEAAAAA - AAAAAAAAAAATAAAAAAAAAAAAAAAAAF8NAABkZXBsb3ltZW50cy9wZW5kaW5nUEsBAhQAFAAIAAgA - 1YtNUQwFZiRyAAAAjAAAABgAAAAAAAAAAAAAAAAAkA0AAGRlcGxveW1lbnRzL3NldHRpbmdzLnht - bFBLAQIUABQACAAIANuLTVF6ITNJ6QQAAO4MAAAcAAAAAAAAAAAAAAAAAEgOAABkZXBsb3ltZW50 - cy90b29scy9kZXBsb3kuY21kUEsBAhQAFAAIAAgA24tNUSgrMGlnAAAAlgAAACQAAAAAAAAAAAAA - AAAAexMAAGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRDYWNoZUtleVBLAQIUABQAAAAAAAqM - TVEAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAADQUAABMb2dGaWxlcy9rdWR1L2RlcGxveW1lbnQv - UEsBAhQAFAAIAAgA1ItNUYdlxtXXAAAAOAEAAFMAAAAAAAAAAAAAAAAAaxQAAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMC00MV82ZjBlYjZfMDAxX1N0YXJ0dXBfUE9TVF9hcGkt - c2V0dGluZ3NfMHMueG1sUEsBAhQAFAAIAAgA1YtNUdubsk9ZAgAAOwQAAE8AAAAAAAAAAAAAAAAA - wxUAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMC00MV82ZjBlYjZfMDAyX1BP - U1RfYXBpLXNldHRpbmdzXzIwNF8xcy54bWxQSwECFAAUAAgACADVi01RMm2G20ACAAATBAAAVgAA - AAAAAAAAAAAAAACZGAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3LTMwLTQzXzZm - MGViNl8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWxQSwECFAAUAAgACADX - i01RFNyEYpUAAAC3AAAAQgAAAAAAAAAAAAAAAABdGwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIw - LTEwLTEzVDE3LTMwLTQ2XzZmMGViNl8wMDRfU2h1dGRvd25fMHMueG1sUEsBAhQAFAAIAAgA2YtN - UedYfSrfAAAARAEAAFoAAAAAAAAAAAAAAAAAYhwAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0x - MC0xM1QxNy0zMC01MF82ZjBlYjZfMDAxX1N0YXJ0dXBfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBl - XzBzLnhtbFBLAQIUABQACAAIANmLTVHLjt0rQQIAABQEAABWAAAAAAAAAAAAAAAAAMkdAABMb2dG - aWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTNUMTctMzAtNTBfNmYwZWI2XzAwMl9HRVRfYXBpLXNl - dHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbFBLAQIUABQACAAIANmLTVF2ngY4zQIAAGUFAABJAAAA - AAAAAAAAAAAAAI4gAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTNUMTctMzAtNTBfNmYw - ZWI2XzAwM19QT1NUX2RlcGxveV8yMDJfMHMueG1sUEsBAhQAFAAIAAgA6YtNUYeloIDGAwAAqAsA - AFEAAAAAAAAAAAAAAAAA0iMAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMC01 - MF82ZjBlYjZfMDA0X0JhY2tncm91bmRfUE9TVF9kZXBsb3lfMjhzLnhtbFBLAQIUABQACAAIANmL - TVGj0nzj4AIAAM8GAABYAAAAAAAAAAAAAAAAABcoAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAt - MTAtMTNUMTctMzAtNTFfNmYwZWI2XzAwNV9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJf - MHMueG1sUEsBAhQAFAAIAAgA4YtNUbQ1sGhpAwAAWQgAAFgAAAAAAAAAAAAAAAAAfSsAAExvZ0Zp - bGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMS0wMl82ZjBlYjZfMDA2X0dFVF9hcGktZGVw - bG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACADmi01Rdg2fQhMDAABGBwAAWAAA - AAAAAAAAAAAAAABsLwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3LTMxLTEzXzZm - MGViNl8wMDdfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAI - AOeLTVFDBw68QAIAABMEAABVAAAAAAAAAAAAAAAAAAUzAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIw - MjAtMTAtMTNUMTctMzEtMTRfNmYwZWI2XzAwOF9HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBf - MHMueG1sUEsBAhQAFAAIAAgA9otNUf2Qvl5XAgAAawQAAFUAAAAAAAAAAAAAAAAAyDUAAExvZ0Zp - bGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xM1QxNy0zMS00NV82ZjBlYjZfMDEwX0dFVF9hcGktc2V0 - dGluZ3MtYnJhbmNoXzIwMF8wcy54bWxQSwECFAAUAAgACAAKjE1RUsdvd78BAADnAgAARwAAAAAA - AAAAAAAAAACiOAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTEzVDE3LTMyLTIwXzZmMGVi - Nl8wMTFfR0VUX2R1bXBfcGVuZGluZy54bWxQSwECFAAUAAgACADUi01RJDZJoYMAAACRAAAASwAA - AAAAAAAAAAAAAADWOgAATG9nRmlsZXMva3VkdS90cmFjZS9SRDAwMDNGRjVCMUIzNC03OGVlOGU4 - OS04OTQzLTRlY2UtOGM0MC1mNDZlYmI0NWU2MTIudHh0UEsFBgAAAAAZABkAqwoAANI7AAAAAA== + UEsDBBQACAAIAKijT1EAAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw + l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACACo + o09RAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj + 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 + 9XYRkEGutn5PB5Pjuut2xDbN8QzB5D3nxWMKJs/trvMBiGkaXdV25brK4BUSkcJFO8TtG4r3ExFM + n4fia5pUHgV3DY1w2aIyvT2PEwyvW/j31TgqlYzjtfvL58///c+/8ePP9aUrDmO755iTo6vlocOW + jEF8uKI05p74T+FOcE94GMzB/wpt6Y5s8OoJvrgUyzn/z7z+cNoheIVHlNu23G82h+MI/ODJE0MK + gi38sykK5Pzkif7XhQ+np3fPq/aVf/rMlRVapIrEVvnnfGOJtoUlOUt4nCojkqJ/+nwKKmZKiAQT + ycemWq1s/57f2PyQ49XlCnPWXWXvI0xXeM6uWv8WU7zCW6sqTRnj6V4WFi/5QuRkyU1O0pznPDE6 + xZn9xEt+71usZZJlOJjfjP9rMEaFLopYSSmKmGiVLwGgLMmEMv6/CvJlxpeG29Lb/h9QSwcIndlw + /lkIAAD2GAAAUEsDBBQACAAIAJCjT1EAAAAAAAAAAAAAAAA9AAAAZGVwbG95bWVudHMvY2M4NGZm + ZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdNNLzyzJTM/LL0rl5SpI + TM5OTE/VyyrOzwPyivKTU4uLobzi1KKy1CIgh5dLD6iFlwsAUEsHCE08ibUyAAAAOQAAAFBLAwQU + AAgACACoo09RAAAAAAAAAAAAAAAAPwAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5 + NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbI2SsW6DMBCG90p9B8QeMA4JEDlOl7Tdm6lL + 5ZiDWsIY2SZNnq1DH6mvUNcBRKUMRQy++//v96Hj+/OL7M6yCU6gjVDtNkwiFAbQclWKtt6Gva0W + ebij93ekhK5RFwmtdVUQEFFSzvO0ck+BWZGilAOsihVAnnOUAM8KnOKqOqKMxM7sIdbbd6Xppa9Z + W38spKksiYemN1xvAU2fhH3ujySeGjN+L5loxpAHKbhWRlU24kqOaVeLZyQYw2qgrCwD0x9L5ejW + nbpOaes+LB4N3t1pVWtHUBJPRy8Yy2xv6EvPuZNJPNQz7QBn67Cr4AsvNszYgdq35UFIoBhhtEjc + uzpgtMHFJllHy6IocpS+kvgG4IM0cBAnuBmRbzCKcrxe5cvfiD/WcURtb13uSLf0NMM4zRzpph98 + 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 + goheP9vbrkJtIg3Ch2BBg9QLpUK3aGtWrsNZSooyyWmRLymze+mrskTMPboDzXwURGPbm1qtNJNR + oYt7Kbhv1o5UpqZnEEF+9KfsXFwgJE3YknIQyhWOFRFkslAxthC1DBSsY+zNZmgu8N+Si2qc26Pq + boDTT0AlxO9YP5X3aun/Vr2mh/NdA0eG6bn8oml26AfY6SPgT7HqYWnq7M+2ZxW8zjYarYPz+4MR + WB+pnDfxhHqorNc0/m6JHJZBDjLUE2sEUZGRnNf8Hqgzwo7kqGdDB9oHZ1ZGU+yQP3IcvHeGPk6/ + Va83s7mBcOxTwb3cLtj3rdfeGI3oe3kGvR+LOKdZOy/CkOf5vMDhBvH9B1BLBwh6ITNJ6QQAAO4M + AABQSwMEFAAIAAgAjaNPUQAAAAAAAAAAAAAAACQAAABkZXBsb3ltZW50cy90b29scy9kZXBsb3lt + ZW50Q2FjaGVLZXmzsNQzMrAwtNAzMTc10TPg5dKtVNDVzcvXTckv0U1JLcjJr8xNzStR0C1SUHKx + isnIz02NKc4sSY0pSi3IBzLyiyqVFHTz0SQRGotjSvLzc4qBaoCGpqQCKZDugMSSDDQtSObxcgEA + UEsHCCgrMGlnAAAAlgAAAFBLAwQUAAAAAADJo09RAAAAAAAAAAAAAAAAGQAAAExvZ0ZpbGVzL2t1 + ZHUvZGVwbG95bWVudC9QSwMEFAAIAAgAgqNPUQAAAAAAAAAAAAAAAFMAAABMb2dGaWxlcy9rdWR1 + L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjgtMDVfZmU5NDBkXzAwMV9TdGFydHVwX1BPU1RfYXBpLXNl + dHRpbmdzXzBzLnhtbIWOTUvDQBCG74L/YZxz12y2aakhKZR6Cca2uEG8haUZdSHZrNnJwX/vVhC8 + iDCneb+eIjB5YMs9lajZTDx7eKKPmQIjdIbjW0klRRpv1SiZq00uV7fLZYZgXWDjztHySneZ7BDm + qS8xMd4mgZitewsIA/H72JV4OuoGgT999E8/C95GJUs3cqEWawS9f2z1Q3Vqta7b511d3e+a6ngo + UUbtPDTf4cPoCGF7fQVQ/Mbf92RcxH8ZeqjHy/Q//Mm2uBECunkybEeXQ7oeAggRq4vk0vy3/gVQ + SwcItACNHtYAAAA4AQAAUEsDBBQACAAIAIOjT1EAAAAAAAAAAAAAAABPAAAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDIwLTEwLTE1VDIwLTI4LTA1X2ZlOTQwZF8wMDJfUE9TVF9hcGktc2V0dGluZ3Nf + MjA0XzFzLnhtbJ1T227aQBB9r9R/2O5zxngd4wDCkVxCGhRuwqakj449gCuz6+6uE5qv79gpbdUI + qaq0TzNnLufsmaGxWDFb2BJDPpGZOhRyx1b4rUZjOctTS3HP9VwQ9LqJ5w683sDtOpf9HmeFNDaV + GUG22PfdnLNalyHvpFXRMWgt9TKcHdDuVR7y5SJOOLPfK8Lr04SqoIwveu6FdxFwNlJSYmYLJUN+ + j1hBVBZP2MYtSgtTlDu7p5VesW0saTumVVUWWdqUdr4aJTmLapqri5c2FvKPqXEch7PxsaIJIReu + C5mStGRNA+6UodgzPlIfeC4klGpX2OOL3AX6cHBMdnDSl1ojIUxh0TgSSZ+1QQ3RjjYLedSkYYOP + cZMHYmK1KkvUnb7ruM6V4/c5O8LBwE/y0FLPUsRurwciF1fgY96Hxz7m4ObdbeBte2lXCM4eYBNt + YlhLpC/KKb1eTd/oPJpOxvMEJsuGm+94ousI4YirYCC8XuA3XaLVCqaLTzC5IdH/cXI8ScZwM15O + F19mbX+qPacTZ5soJvBttJ4mcEcfPo9m4/P4c7o+wK3Sz6luqC61sirke2srMhNxqKoY9VOR4ZvU + 76KkNJ9Rm9ZHwvGaulkMo8X0Jk6iVUIKcXb9/h1jwz8PYFHbnWoOQKOplDTki3MXEDiuSx48ufkE + p3uwtRnRHzVnQ5q/BhI8kkPmqvF341nOGgqoQz4rMq2M2lqYTOKOIKf8t0lGabbHk+9CXuniic63 + lcxUc7TwSxGf/HjpXgoyZOd6+AGA5bVuz2TARHAwDIDEGXYabf7OB55/AvwAUEsHCAn+hxtdAgAA + PQQAAFBLAwQUAAgACACDo09RAAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAy + MC0xMC0xNVQyMC0yOC0wNl9mZTk0MGRfMDAzX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBf + MHMueG1snZNRb5tADMffJ+073O65Bo6ShGShEkvTNmraVIEs3SMFJ7kJOHZ3tF0//Uy6rNOmSNMk + nvy3ffafn8fGYsOstCVGfFbnqpL1li3xW4vGclZkluK+53sg6Oulvjfyw5HXdwZhnzNZG5vVOaVs + cBh4BWetLiPuZo10DVpLvYyb5FX6vUHOKrQ7VUT8cppyZikUcX14qJEkBCL0TvwTajxRdY25laqO + +DViA3EpH6lF3FILLV+yV+lTZhzH4exKGRvxJ3zImgaeZA2l2kr7/FJv+7qqHJNXTvbSaqQMIy0a + p0ZabmVQQ7zFmmrjToY1PiSdDvS+1aosUbtDz/GcgRMMOXuGysDPkWE/cJ4h9sIQRCEGEGAxhIch + FuAVvU3f34RZTwjO7mEdrxNY1Uj+FiSvlvOjJk3ms+ltCrO7iAsvcHzRc4RwxKA/En7YD7pu8XIJ + 88UlzM7Jsn+cIJmlUzif3s0XX272/an2mF+creOEki/i1TyFq0WS3sY30+P5x/y9hwulnzLdrXyn + lVUR31nbmP0OTZOgfpQ5/iW9FaWl+Yza7CkQjs/Z2ft3jI1/R3bR2q3qkNVoGlUbYuQ4s6EI38A7 + pBPBtjUT+jEd6B5nr4EUnwmLxTVn3ZyoI34jc62M2liYzRJXEBb/TcQky3d4gCzijZaPdGh7X0xz + ixZ+rR0QfKfeqSD6OiaJVeiOKeJEeinz/R24X42qP7J8l2k6uqi1G6A93bPxBwBWtHqfNGKiVxkG + QB6O3c7CP/VgcNB/AFBLBwjBCGBQQQIAABUEAABQSwMEFAAIAAgAhKNPUQAAAAAAAAAAAAAAAFYA + AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjgtMDlfZmU5NDBkXzAwNF9HRVRf + YXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbJ2TUW+bQAzH3yftO9zuuQaOkoRkoRJL0zVq + 2lSBLN0jBSe5CTh2d7RdP/1MuqzTpkzTJJ78t332n5/HxmLDrLQlRnxW56qS9ZYt8WuLxnJWZJbi + vud7IOjrpb438sORN3TCYMCZrI3N6pxSNjgMvIKzVpcRd7NGugatpV7GTfIq/dYgZxXanSoi/nGa + cmYpFHF9eKiRJAQi9E78kz5nE1XXmFup6ohfITYQl/KBWsQttdDyOXuRPmTGcRzOLpWxEX/E+6xp + 4FHWUKqttE/P9bavq8oxeeVkz61GyjDSonFqpOVWBjXEW6ypNu5kWON90ulA71utyhK1O/Qczxk4 + wZCzJ6gM/BgZ9gPnGWIvDEEUYgABFkO4H2IBXtHb9P1NmPWE4OwO1vE6gVWN5G9B8mo5P2rSZD6b + 3qQwu4248ALHFz1HCEcM+iPhh/2g6xYvlzBffITZOVn2jxMks3QK59Pb+eLz9b4/1R7zi7N1nFDy + Rbyap3C5SNKb+Hp6PP+Yv3dwofRjpruVb7WyKuI7axuz36FpEtQPMsc/pNeitDSfUJs9BcLxOTt7 + +4ax8a/ILlq7VR2yGk2jakOM/IXZ/ukreId0Iti2ZkI/pgPd4+wlkOITYbG44qybE3XEr2WulVEb + C7NZ4grC4r+JmGT5Dg+QRbzR8oEObe+LaW7Qws+1A4Lv1DsVRF/HJLEK3TFFnEgvZb6/A/eLUfV7 + lu8yTUcXtXYDIWfu2fgdACtavU8aMa8yDIAsHLudg7/Lon/QvwNQSwcIxO4XzUECAAAUBAAAUEsD + BBQACAAIAIajT1EAAAAAAAAAAAAAAABCAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTE1 + VDIwLTI4LTEzX2ZlOTQwZF8wMDVfU2h1dGRvd25fMHMueG1sVYtBDsIgEEX3Jt5hZF3qQKlS0vYM + JnoBUjCStLSWIV5fXJq81fvv94n8BhRo9gO77evkU4L7K5NbP5GBs1S8RIlcFNqHRCO1EU2tRMsg + xEQ2TiV5+k6hY7AFNzAlNFay0gzyRmEpM6L5oWtRfniVDGabaPfv7BP9JU3dXrRsVcfgPPYnzsHl + 3VJYowFcEnA+Hg9fUEsHCAx3AYmTAAAAtgAAAFBLAwQUAAgACACIo09RAAAAAAAAAAAAAAAAWgAA + AExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xNVQyMC0yOC0xN19mZTk0MGRfMDAxX1N0YXJ0 + dXBfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzBzLnhtbH2PTUvEMBCG74L/YZzz1qa1W7ulWVjW + ZSnWD0wRbyVs4xpo05hMQf+9EVkQD8Kc3md4Zt7Kk7JAmgbFUZB0NFt4Uu+z8oTQSwpxylIWJWGW + bcrKtCiT68urfIWgjSdpDmHlVa0y1iPMbuAYS6tjr4i0OfpYHMb20yqEUdHb1HPc71oEChFHdzpk + dQDLIssW6SJHENu7TtzWj50QTfe8aeqbTVs/3HNkgf34OO4+SDkjh70On67PzwCq32W2g5ImlHkZ + B2imo/+3TZEhxOvqIoqgn50kPZkS2OghioK5ir/Ff3GSn/gXUEsHCN5A7UPmAAAARQEAAFBLAwQU + AAgACACIo09RAAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xNVQy + MC0yOC0xN19mZTk0MGRfMDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMueG1snZNb + b5tAEIXfK/U/bPc5AyzB15pI1HESFCeODK7TRwJjeytg6e6S26/v4NRt1cpSVYmnPWdnZw7fTIzF + hllpSwx5XOeqkvWWLfFbi8ZyVmSWzn3P90DQ10t9b+wPx2LgBJ7HmayNzeqcLBscBV7BWavLkLtZ + I12D1lIt4yZ5lb40yFmFdqeKkF/OUs4sHYVcHx5qJAm9YRCc+Cd9zqaqrjG3UtUhv0ZsICrlI5WI + Wiqh5Wv2Jn3KjOM4nF0pY0P+hA9Z08CTrKFUW2mfX+ttX1eVY/LKyV5bjeQw0qJxaqThVgY1RFus + 6W7UybDGh6TTgd63WpUlanfkOZ5D8444e4bKwI+WoWs4yDPE3nAIohADCLAYwcMIC/CK3qbvb4ZZ + TwjO7mEdrRNY1Uj5FiSvlvOjIU3n8ew2hfgu5MILHF/0HCEcMeiPhT/sB121aLmE+eIS4vN/7yCJ + 0xmcz+7miy83+/p091henK2jhMwX0WqewtUiSW+jm9lx/7F87+FC6adMdyPfaWVVyHfWNmY/Q9Mk + qB9ljn9Jvy6lpfmM2uwpEI7P2dn7d4xNfkd20dqt6pDVaBpVG2LkOLODgPI7gHewE8G2NVP6MR3o + BPXbQYrPhMXimrOuT9Qhv5G5VkZtLMRx4grC4r+JmGb5Dg+QhbzR8pEWbZ+LaW7Rws+xA4Lv1DsV + RF/HJLEK3TKFnEgvZb7fA/erUfVHlu8yTUsXtnYDQ87cs8kHAFa0em8aM68yDIAinLhdgn/Kp0Fw + MHwHUEsHCKZekElAAgAAFQQAAFBLAwQUAAgACACJo09RAAAAAAAAAAAAAAAASQAAAExvZ0ZpbGVz + L2t1ZHUvdHJhY2UvMjAyMC0xMC0xNVQyMC0yOC0xN19mZTk0MGRfMDAzX1BPU1RfZGVwbG95XzIw + Ml8wcy54bWyVVE1T2zAQvXem/0HVoafKtozz2RjGhQCZBsiQpKG9dBx7STS1JVWSIfDru04IMEA6 + 7YxO+6V9b/dtzzrQxAlXQEwHMlOlkAtyCb8rsI6SPHVoD4MwYBxfYxIG3bDd5S2v1eGUCGldKjMM + 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 + ZXMva3VkdS90cmFjZS8yMDIwLTEwLTE1VDIwLTI4LTQxX2ZlOTQwZF8wMDdfR0VUX2FwaS1zZXR0 + aW5ncy1icmFuY2hfMjAwXzBzLnhtbJ2T227TQBCG75F4h2WvOz7FOTjElUyaUqtpU8UOKZeOPUkW + OV6zu25Ln56xSygCBSEkX+38c/r9zUQbrJkRpsSQx1UuD6LasSV+bVAbzorM0LvneA649PVTzxl7 + o7HvWp7nciYqbbIqJ8kWA98pOGtUGXI7q4Wt0Riqpe2NIsmeswOavSxC/nGWcma+1ZSljn1qQYH+ + yPfPvDPX42wqqwpzI2QV8mvEGqJSPCBnUUM1lHjOXkIfMm1ZFmdXUpuQP+Imq2t4FBWUcifM03O1 + G6jDwdL5wcqeG4Wk0MKgtiqk5VYaFUQ7rCg3asOwxk3SxoH6GyXLEpUdOJZjDS0/4OwJDhp+zAwv + EweYD3sDGGx7ffALZwiZuykgcwajvhsEReHQ0PewjtYJrCokfwssYLWcnzJpOo9ntynEdyF3Hd/y + 3L7lupY7HIx96tPWipZLmC8+QnzROvZv/ZM4ncHF7G6++HzTlafcU25xto4SEl9Gq3kKV4skvY1u + Zqf1p9y9h0upHjPVLnynpJEh3xtT626Huk5QPYgc/wi9JqWl/oRKdwwQb5ydv33D2ORXYBeN2ckW + WIW6lpUms/9CbK/3yt1RTvyaRk/pt7SYO5y9PKT4RFAsrjlr50QV8huRK6nl1kAcJ7ZLUPw3D9Ms + 3+MRsZDXSjzQmXW+6PoWDfxc2yf0ek7PJfZaIolUSLvDIc5LkXdXYH/RsnrP8n2m6OTCxmxhxJl9 + PnkHwIpGdaIxcw6aAZCFE7t18PewFxzj3wFQSwcIa2+udz4CAAASBAAAUEsDBBQACAAIAJmjT1EA + AAAAAAAAAAAAAABYAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTE1VDIwLTI4LTUxX2Zl + OTQwZF8wMDhfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbK2VTXPbNhCG753p + f0Bw6CnglyiRUsx0GFmxNZU/RqJrt5cOBK5kdEiCAUDb8a/vkrYiJbaUTCccnrDLxYvFvg+PjIWa + WGkLSOi0EqqU1ZrM4VMDxlKSc4vrgRd4zMe3nwXeKIhHfd8JBgNKZGUsrwSmrGAYejkljS4S6vJa + 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 + L1JEMDAwM0ZGNTFFMUYzLWJkZTU1MjhjLTU3NGEtNGEzYS1iMzE4LTI5MzYyODgxYmIyZi50eHQ1 + y0EKwjAQQNG94B3mAJFOg5WSXdFNsLbFBLeh2KAB28ZksvD2BkH4u8fnyHFX5irNUfBaYAWgaAyU + PFztO9lIDFJ4CShG74poidzyiAxmS891EjD0SjOgj7cCwn/wLsu+rJFxdmCgjhejznIwSrXm1rTy + 1GjZdwIw233Wv7lbF7vdfAFQSwcIyeLUx4QAAACRAAAAUEsBAhQAFAAIAAgAqKNPUVX9O3cnAAAA + KAAAABIAAAAAAAAAAAAAAAAAAAAAAGRlcGxveW1lbnRzL2FjdGl2ZVBLAQIUABQACAAIAKijT1Gd + 2XD+WQgAAPYYAAA8AAAAAAAAAAAAAAAAAGcAAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRj + ZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L2xvZy5sb2dQSwECFAAUAAgACACQo09RTTyJtTIAAAA5 + AAAAPQAAAAAAAAAAAAAAAAAqCQAAZGVwbG95bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1ZWU4 + OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdFBLAQIUABQACAAIAKijT1GDUAgFZwEAALwCAAA/AAAA + AAAAAAAAAAAAAMcJAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3 + OTI0MmZmYjA3L3N0YXR1cy54bWxQSwECFAAUAAgACACoo09R06jLKZ4BAAD9AgAAFwAAAAAAAAAA + AAAAAACbCwAAZGVwbG95bWVudHMvbGF0ZXN0Lmpzb25QSwECFAAUAAAAAACIo09RAAAAAAAAAAAA + AAAAEwAAAAAAAAAAAAAAAAB+DQAAZGVwbG95bWVudHMvcGVuZGluZ1BLAQIUABQACAAIAIKjT1EM + BWYkcgAAAIwAAAAYAAAAAAAAAAAAAAAAAK8NAABkZXBsb3ltZW50cy9zZXR0aW5ncy54bWxQSwEC + FAAUAAgACACNo09ReiEzSekEAADuDAAAHAAAAAAAAAAAAAAAAABnDgAAZGVwbG95bWVudHMvdG9v + bHMvZGVwbG95LmNtZFBLAQIUABQACAAIAI2jT1EoKzBpZwAAAJYAAAAkAAAAAAAAAAAAAAAAAJoT + AABkZXBsb3ltZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXlQSwECFAAUAAAAAADJo09RAAAA + AAAAAAAAAAAAGQAAAAAAAAAAAAAAAABTFAAATG9nRmlsZXMva3VkdS9kZXBsb3ltZW50L1BLAQIU + ABQACAAIAIKjT1G0AI0e1gAAADgBAABTAAAAAAAAAAAAAAAAAIoUAABMb2dGaWxlcy9rdWR1L3Ry + YWNlLzIwMjAtMTAtMTVUMjAtMjgtMDVfZmU5NDBkXzAwMV9TdGFydHVwX1BPU1RfYXBpLXNldHRp + bmdzXzBzLnhtbFBLAQIUABQACAAIAIOjT1EJ/ocbXQIAAD0EAABPAAAAAAAAAAAAAAAAAOEVAABM + b2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjgtMDVfZmU5NDBkXzAwMl9QT1NUX2Fw + aS1zZXR0aW5nc18yMDRfMXMueG1sUEsBAhQAFAAIAAgAg6NPUcEIYFBBAgAAFQQAAFYAAAAAAAAA + AAAAAAAAuxgAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xNVQyMC0yOC0wNl9mZTk0MGRf + MDAzX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMueG1sUEsBAhQAFAAIAAgAhKNPUcTu + F81BAgAAFAQAAFYAAAAAAAAAAAAAAAAAgBsAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0x + NVQyMC0yOC0wOV9mZTk0MGRfMDA0X0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMueG1s + UEsBAhQAFAAIAAgAhqNPUQx3AYmTAAAAtgAAAEIAAAAAAAAAAAAAAAAARR4AAExvZ0ZpbGVzL2t1 + ZHUvdHJhY2UvMjAyMC0xMC0xNVQyMC0yOC0xM19mZTk0MGRfMDA1X1NodXRkb3duXzBzLnhtbFBL + AQIUABQACAAIAIijT1HeQO1D5gAAAEUBAABaAAAAAAAAAAAAAAAAAEgfAABMb2dGaWxlcy9rdWR1 + L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjgtMTdfZmU5NDBkXzAwMV9TdGFydHVwX0dFVF9hcGktc2V0 + dGluZ3MtU2NtVHlwZV8wcy54bWxQSwECFAAUAAgACACIo09Rpl6QSUACAAAVBAAAVgAAAAAAAAAA + AAAAAAC2IAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTE1VDIwLTI4LTE3X2ZlOTQwZF8w + MDJfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWxQSwECFAAUAAgACACJo09Rv0Ns + vsoCAABmBQAASQAAAAAAAAAAAAAAAAB6IwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTEwLTE1 + VDIwLTI4LTE3X2ZlOTQwZF8wMDNfUE9TVF9kZXBsb3lfMjAyXzBzLnhtbFBLAQIUABQACAAIAKij + T1HzoR/UyQMAAKgLAABRAAAAAAAAAAAAAAAAALsmAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAt + MTAtMTVUMjAtMjgtMTdfZmU5NDBkXzAwNF9CYWNrZ3JvdW5kX1BPU1RfZGVwbG95XzU5cy54bWxQ + SwECFAAUAAgACACJo09RhyrANeQCAADRBgAAWAAAAAAAAAAAAAAAAAADKwAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDIwLTEwLTE1VDIwLTI4LTE4X2ZlOTQwZF8wMDVfR0VUX2FwaS1kZXBsb3ltZW50 + cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIAJSjT1H4LTh6dAMAAF0IAABYAAAAAAAAAAAA + AAAAAG0uAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjgtNDBfZmU5NDBkXzAw + Nl9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMXMueG1sUEsBAhQAFAAIAAgAlKNPUWtv + rnc+AgAAEgQAAFUAAAAAAAAAAAAAAAAAZzIAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0x + NVQyMC0yOC00MV9mZTk0MGRfMDA3X0dFVF9hcGktc2V0dGluZ3MtYnJhbmNoXzIwMF8wcy54bWxQ + SwECFAAUAAgACACZo09RaRlJiQ8DAABGBwAAWAAAAAAAAAAAAAAAAAAoNQAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDIwLTEwLTE1VDIwLTI4LTUxX2ZlOTQwZF8wMDhfR0VUX2FwaS1kZXBsb3ltZW50 + cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIAKGjT1EfLT4JFgMAAEkHAABYAAAAAAAAAAAA + AAAAAL04AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjktMDJfZmU5NDBkXzAw + OV9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMXMueG1sUEsBAhQAFAAIAAgApaNPURNM + dhpAAgAAEwQAAFUAAAAAAAAAAAAAAAAAWTwAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0x + NVQyMC0yOS0xMV9mZTk0MGRfMDEwX0dFVF9hcGktc2V0dGluZ3MtYnJhbmNoXzIwMF8wcy54bWxQ + SwECFAAUAAgACACmo09R8T3xcA8DAABHBwAAWAAAAAAAAAAAAAAAAAAcPwAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDIwLTEwLTE1VDIwLTI5LTEzX2ZlOTQwZF8wMTFfR0VUX2FwaS1kZXBsb3ltZW50 + cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIALWjT1EIuECaVAIAAGwEAABVAAAAAAAAAAAA + AAAAALFCAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMTAtMTVUMjAtMjktNDJfZmU5NDBkXzAx + M19HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1sUEsBAhQAFAAIAAgAyaNPUc+hjga9 + AQAA5QIAAEcAAAAAAAAAAAAAAAAAiEUAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0xMC0xNVQy + MC0zMC0xOF9mZTk0MGRfMDE0X0dFVF9kdW1wX3BlbmRpbmcueG1sUEsBAhQAFAAIAAgAgqNPUcni + 1MeEAAAAkQAAAEsAAAAAAAAAAAAAAAAAukcAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvUkQwMDAzRkY1 + MUUxRjMtYmRlNTUyOGMtNTc0YS00YTNhLWIzMTgtMjkzNjI4ODFiYjJmLnR4dFBLBQYAAAAAHQAd + AL4MAAC3SAAAAAA= headers: cache-control: - no-cache content-disposition: - - attachment; filename=dump-10-13-17-32-20.zip + - attachment; filename=dump-10-15-20-30-18.zip content-type: - application/zip date: - - Tue, 13 Oct 2020 17:32:20 GMT + - Thu, 15 Oct 2020 20:30:17 GMT expires: - '-1' pragma: @@ -1329,8 +1572,8 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=6f0eb6f3ca0caaa98cb47e00a643a1a299f5f53a14aa0e8e29700c686cf97948;Path=/;HttpOnly;Secure;Domain=webapp-win-logjakisgmf24.scm.azurewebsites.net - - ARRAffinitySameSite=6f0eb6f3ca0caaa98cb47e00a643a1a299f5f53a14aa0e8e29700c686cf97948;Path=/;HttpOnly;SameSite=None;Secure;Domain=webapp-win-logjakisgmf24.scm.azurewebsites.net + - ARRAffinity=fe940d4421f27d18c4493f7be9b6b6fb44f3badf575e94964358afabb996d40b;Path=/;HttpOnly;Secure;Domain=webapp-win-logitxzng6rmm.scm.azurewebsites.net + - ARRAffinitySameSite=fe940d4421f27d18c4493f7be9b6b6fb44f3badf575e94964358afabb996d40b;Path=/;HttpOnly;SameSite=None;Secure;Domain=webapp-win-logitxzng6rmm.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_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml index 7bed15db289..94ce71cc11b 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,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:21:34Z"},"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-10-15T20:40:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:21:36 GMT + - Thu, 15 Oct 2020 20:40:04 GMT expires: - '-1' pragma: @@ -63,8 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:21:37 GMT + - Thu, 15 Oct 2020 20:40:04 GMT expires: - '-1' pragma: @@ -118,15 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:21:34Z"},"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-10-15T20:40:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:21:38 GMT + - Thu, 15 Oct 2020 20:40:04 GMT expires: - '-1' pragma: @@ -168,8 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14442","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, 13 Oct 2020 17:21:51 GMT + - Thu, 15 Oct 2020 20:40:19 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18820","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}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14442","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: - - Tue, 13 Oct 2020 17:21:52 GMT + - Thu, 15 Oct 2020 20:40:20 GMT expires: - '-1' pragma: @@ -280,15 +280,15 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:21:34Z"},"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-10-15T20:40:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:21:52 GMT + - Thu, 15 Oct 2020 20:40:20 GMT expires: - '-1' pragma: @@ -330,8 +330,8 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -347,7 +347,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:21:53 GMT + - Thu, 15 Oct 2020 20:40:21 GMT expires: - '-1' pragma: @@ -385,15 +385,15 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:21:34Z"},"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-10-15T20:40:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -402,7 +402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:21:53 GMT + - Thu, 15 Oct 2020 20:40:21 GMT expires: - '-1' pragma: @@ -435,16 +435,16 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: - 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":"japanwest","properties":{"serverFarmId":18820,"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-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","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":"japanwest","properties":{"serverFarmId":14442,"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-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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: - - Tue, 13 Oct 2020 17:22:00 GMT + - Thu, 15 Oct 2020 20:40:29 GMT expires: - '-1' pragma: @@ -491,8 +491,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","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}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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: - - Tue, 13 Oct 2020 17:22:01 GMT + - Thu, 15 Oct 2020 20:40:29 GMT expires: - '-1' pragma: @@ -546,8 +546,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","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}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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: - - Tue, 13 Oct 2020 17:22:02 GMT + - Thu, 15 Oct 2020 20:40:31 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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: - - Tue, 13 Oct 2020 17:22:03 GMT + - Thu, 15 Oct 2020 20:40:31 GMT expires: - '-1' pragma: @@ -656,8 +656,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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: - - Tue, 13 Oct 2020 17:22:04 GMT + - Thu, 15 Oct 2020 20:40:33 GMT expires: - '-1' pragma: @@ -716,8 +716,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -733,7 +733,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:04 GMT + - Thu, 15 Oct 2020 20:40:34 GMT expires: - '-1' pragma: @@ -771,8 +771,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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: - - Tue, 13 Oct 2020 17:22:06 GMT + - Thu, 15 Oct 2020 20:40:35 GMT expires: - '-1' pragma: @@ -830,8 +830,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -847,7 +847,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:06 GMT + - Thu, 15 Oct 2020 20:40:35 GMT expires: - '-1' pragma: @@ -872,7 +872,7 @@ interactions: - request: body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: @@ -885,14 +885,14 @@ interactions: Connection: - keep-alive Content-Length: - - '543' + - '545' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -900,20 +900,20 @@ 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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:14.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:40:42.2533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5868' + - '5894' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:32 GMT + - Thu, 15 Oct 2020 20:41:02 GMT etag: - - '"1D6A18564EBB6E0"' + - '"1D6A333738899C0"' expires: - '-1' pragma: @@ -955,8 +955,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -965,17 +965,17 @@ interactions: body: string: @@ -987,7 +987,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:22:33 GMT + - Thu, 15 Oct 2020 20:41:02 GMT expires: - '-1' pragma: @@ -1021,8 +1021,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1030,8 +1030,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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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 @@ -1040,7 +1040,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:34 GMT + - Thu, 15 Oct 2020 20:41:03 GMT expires: - '-1' pragma: @@ -1081,8 +1081,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1098,7 +1098,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:35 GMT + - Thu, 15 Oct 2020 20:41:03 GMT expires: - '-1' pragma: @@ -1116,7 +1116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1136,8 +1136,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1145,8 +1145,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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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 @@ -1155,7 +1155,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:36 GMT + - Thu, 15 Oct 2020 20:41:04 GMT expires: - '-1' pragma: @@ -1195,8 +1195,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1213,7 +1213,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:36 GMT + - Thu, 15 Oct 2020 20:41:04 GMT expires: - '-1' pragma: @@ -1249,36 +1249,115 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo/providers/Microsoft.Web/sites/cli-funcapp-nwrqw5aidudj","name":"cli-funcapp-nwrqw5aidudj","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrqw5aidudj","state":"Running","hostNames":["cli-funcapp-nwrqw5aidudj.azurewebsites.net"],"webSpace":"clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo-JapanWestwebspace","selfLink":"https://waws-prod-os1-001.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo-JapanWestwebspace/sites/cli-funcapp-nwrqw5aidudj","repositorySiteName":"cli-funcapp-nwrqw5aidudj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrqw5aidudj.azurewebsites.net","cli-funcapp-nwrqw5aidudj.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrqw5aidudj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrqw5aidudj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:01.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrqw5aidudj","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"138.91.16.18","possibleInboundIpAddresses":"138.91.16.18,40.74.100.134","ftpUsername":"cli-funcapp-nwrqw5aidudj\\$cli-funcapp-nwrqw5aidudj","ftpsHostName":"ftps://waws-prod-os1-001.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"138.91.17.178,138.91.17.193,138.91.17.229,138.91.17.24","possibleOutboundIpAddresses":"138.91.17.178,138.91.17.193,138.91.17.229,138.91.17.24,104.46.224.164,104.46.224.222,104.46.228.81,104.46.228.202,104.46.224.181,138.91.16.18,40.74.100.134","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-001","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo","defaultHostName":"cli-funcapp-nwrqw5aidudj.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u/providers/Microsoft.Web/sites/cli-funcapp-nwrxkykztrc4","name":"cli-funcapp-nwrxkykztrc4","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrxkykztrc4","state":"Running","hostNames":["cli-funcapp-nwrxkykztrc4.azurewebsites.net"],"webSpace":"clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u-JapanWestwebspace","selfLink":"https://waws-prod-os1-005.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u-JapanWestwebspace/sites/cli-funcapp-nwrxkykztrc4","repositorySiteName":"cli-funcapp-nwrxkykztrc4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrxkykztrc4.azurewebsites.net","cli-funcapp-nwrxkykztrc4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrxkykztrc4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrxkykztrc4.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:03.8966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrxkykztrc4","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"104.214.137.236","possibleInboundIpAddresses":"104.214.137.236,40.74.100.135","ftpUsername":"cli-funcapp-nwrxkykztrc4\\$cli-funcapp-nwrxkykztrc4","ftpsHostName":"ftps://waws-prod-os1-005.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"138.91.28.31,138.91.26.124,138.91.26.192,138.91.28.65","possibleOutboundIpAddresses":"138.91.28.31,138.91.26.124,138.91.26.192,138.91.28.65,40.74.112.158,40.74.112.169,40.74.112.181,40.74.112.230,52.175.150.245,104.214.137.236,40.74.100.135","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-005","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u","defaultHostName":"cli-funcapp-nwrxkykztrc4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/sites/cli-funcapp-nwrbofuimyzk","name":"cli-funcapp-nwrbofuimyzk","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrbofuimyzk","state":"Running","hostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net"],"webSpace":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace","selfLink":"https://waws-prod-os1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace/sites/cli-funcapp-nwrbofuimyzk","repositorySiteName":"cli-funcapp-nwrbofuimyzk","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net","cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:35:43.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrbofuimyzk","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.175.158.219","possibleInboundIpAddresses":"52.175.158.219,40.74.100.133","ftpUsername":"cli-funcapp-nwrbofuimyzk\\$cli-funcapp-nwrbofuimyzk","ftpsHostName":"ftps://waws-prod-os1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135","possibleOutboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135,104.46.236.70,104.215.17.186,104.215.17.210,104.215.19.221,104.215.23.198,52.175.158.219,40.74.100.133","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx","defaultHostName":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y/providers/Microsoft.Web/sites/cli-funcapp-nwrpjusgukis","name":"cli-funcapp-nwrpjusgukis","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrpjusgukis","state":"Running","hostNames":["cli-funcapp-nwrpjusgukis.azurewebsites.net"],"webSpace":"clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y-JapanWestwebspace","selfLink":"https://waws-prod-os1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y-JapanWestwebspace/sites/cli-funcapp-nwrpjusgukis","repositorySiteName":"cli-funcapp-nwrpjusgukis","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrpjusgukis.azurewebsites.net","cli-funcapp-nwrpjusgukis.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrpjusgukis.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrpjusgukis.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:05.3433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrpjusgukis","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.175.158.219","possibleInboundIpAddresses":"52.175.158.219,40.74.100.133","ftpUsername":"cli-funcapp-nwrpjusgukis\\$cli-funcapp-nwrpjusgukis","ftpsHostName":"ftps://waws-prod-os1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135","possibleOutboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135,104.46.236.70,104.215.17.186,104.215.17.210,104.215.19.221,104.215.23.198,52.175.158.219,40.74.100.133","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y","defaultHostName":"cli-funcapp-nwrpjusgukis.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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":[],"csrs":[],"cers":null,"siteMode":"Limited","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":"Dedicated","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-10-13T17:22:14.99","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgttu6qpvqawbnaj7ppjlxe6x5rtffharoati6op6s2pthq7dey2gk4j5txdmsufqaj/providers/Microsoft.Web/sites/cli-webapp-nwrulcqyt6bw2","name":"cli-webapp-nwrulcqyt6bw2","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"cli-webapp-nwrulcqyt6bw2","state":"Running","hostNames":["cli-webapp-nwrulcqyt6bw2.azurewebsites.net"],"webSpace":"clitest.rgttu6qpvqawbnaj7ppjlxe6x5rtffharoati6op6s2pthq7dey2gk4j5txdmsufqaj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgttu6qpvqawbnaj7ppjlxe6x5rtffharoati6op6s2pthq7dey2gk4j5txdmsufqaj-JapanWestwebspace/sites/cli-webapp-nwrulcqyt6bw2","repositorySiteName":"cli-webapp-nwrulcqyt6bw2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwrulcqyt6bw2.azurewebsites.net","cli-webapp-nwrulcqyt6bw2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-webapp-nwrulcqyt6bw2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwrulcqyt6bw2.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.rgttu6qpvqawbnaj7ppjlxe6x5rtffharoati6op6s2pthq7dey2gk4j5txdmsufqaj/providers/Microsoft.Web/serverfarms/cli-plan-nwr24fin7hl4fi6","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:24.0966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwrulcqyt6bw2","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"cli-webapp-nwrulcqyt6bw2\\$cli-webapp-nwrulcqyt6bw2","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgttu6qpvqawbnaj7ppjlxe6x5rtffharoati6op6s2pthq7dey2gk4j5txdmsufqaj","defaultHostName":"cli-webapp-nwrulcqyt6bw2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz/providers/Microsoft.Web/sites/cli-funcapp-nwrgug4rdu6e","name":"cli-funcapp-nwrgug4rdu6e","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrgug4rdu6e","state":"Running","hostNames":[],"webSpace":"clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz-JapanWestwebspace/sites/cli-funcapp-nwrgug4rdu6e","repositorySiteName":"cli-funcapp-nwrgug4rdu6e","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrgug4rdu6e.azurewebsites.net","cli-funcapp-nwrgug4rdu6e.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrgug4rdu6e.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrgug4rdu6e.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:09.44","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrgug4rdu6e","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-funcapp-nwrgug4rdu6e\\$cli-funcapp-nwrgug4rdu6e","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz","defaultHostName":"cli-funcapp-nwrgug4rdu6e.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/sites/delete-me-weboyiqvj7rzdf","name":"delete-me-weboyiqvj7rzdf","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"delete-me-weboyiqvj7rzdf","state":"Running","hostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net"],"webSpace":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace/sites/delete-me-weboyiqvj7rzdf","repositorySiteName":"delete-me-weboyiqvj7rzdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net","delete-me-weboyiqvj7rzdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"delete-me-weboyiqvj7rzdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-weboyiqvj7rzdf.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.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/serverfarms/delete-me-planjxjoseu3lq","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T04:22:40.5","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"delete-me-weboyiqvj7rzdf","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"delete-me-weboyiqvj7rzdf\\$delete-me-weboyiqvj7rzdf","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f","defaultHostName":"delete-me-weboyiqvj7rzdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/sisirap-test-app-multicontainer","name":"sisirap-test-app-multicontainer","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East - US","properties":{"name":"sisirap-test-app-multicontainer","state":"Running","hostNames":["sisirap-test-app-multicontainer.azurewebsites.net"],"webSpace":"sisirap-RG-EastUSwebspace","selfLink":"https://waws-prod-blu-191.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap-RG-EastUSwebspace/sites/sisirap-test-app-multicontainer","repositorySiteName":"sisirap-test-app-multicontainer","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-test-app-multicontainer.azurewebsites.net","sisirap-test-app-multicontainer.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-test-app-multicontainer.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-app-multicontainer.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/sisirap-RG/providers/Microsoft.Web/serverfarms/sisirap-test-multicontainet","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T01:03:41.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-test-app-multicontainer","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.104.3","possibleInboundIpAddresses":"20.49.104.3","ftpUsername":"sisirap-test-app-multicontainer\\$sisirap-test-app-multicontainer","ftpsHostName":"ftps://waws-prod-blu-191.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225","possibleOutboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225,52.149.246.34,52.179.115.42,52.179.118.77,52.191.94.124,52.224.89.255,52.224.92.113,52.226.52.76,52.226.52.105,52.226.52.106,52.226.53.47,52.226.53.100,52.226.54.47","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-191","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap-RG","defaultHostName":"sisirap-test-app-multicontainer.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/sites/webapp-quick-linuxg6637p","name":"webapp-quick-linuxg6637p","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Canada - Central","properties":{"name":"webapp-quick-linuxg6637p","state":"Running","hostNames":["webapp-quick-linuxg6637p.azurewebsites.net"],"webSpace":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace","selfLink":"https://waws-prod-yt1-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace/sites/webapp-quick-linuxg6637p","repositorySiteName":"webapp-quick-linuxg6637p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linuxg6637p.azurewebsites.net","webapp-quick-linuxg6637p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quick-linuxg6637p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linuxg6637p.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.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/serverfarms/plan-quick-linuxo2y6abh3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-09T01:44:41.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-linuxg6637p","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"13.71.170.130","possibleInboundIpAddresses":"13.71.170.130","ftpUsername":"webapp-quick-linuxg6637p\\$webapp-quick-linuxg6637p","ftpsHostName":"ftps://waws-prod-yt1-019.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27","possibleOutboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27,40.85.254.37,40.85.219.45,40.85.223.56,52.228.42.60,52.228.42.28","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-yt1-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz","defaultHostName":"webapp-quick-linuxg6637p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp","name":"cliTestApp","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cliTestApp","state":"Running","hostNames":["lol.sisiraptestdomains.com","adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","test.sisiraptestdomains.com","hi.sisiraptestdomains.com","clitestapp.azurewebsites.net"],"webSpace":"cliTestApp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cliTestApp-CentralUSwebspace/sites/cliTestApp","repositorySiteName":"cliTestApp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","hi.sisiraptestdomains.com","lol.sisiraptestdomains.com","test.sisiraptestdomains.com","clitestapp.azurewebsites.net","clitestapp.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"adsec.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"foo.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hi.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"lol.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.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/cliTestApp/providers/Microsoft.Web/serverfarms/sisirap-testAsp3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T21:08:35.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cliTestApp","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":true,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.173.249.137","possibleInboundIpAddresses":"52.173.249.137","ftpUsername":"cliTestApp\\$cliTestApp","ftpsHostName":"ftps://waws-prod-dm1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28","possibleOutboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28,52.173.202.202,52.173.200.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cliTestApp","defaultHostName":"clitestapp.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","type":"Microsoft.Web/sites","kind":"app","location":"North - Central US","tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"properties":{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","state":"Running","hostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net"],"webSpace":"cleanupservice-NorthCentralUSwebspace","selfLink":"https://waws-prod-ch1-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cleanupservice-NorthCentralUSwebspace/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","repositorySiteName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","cln9106d9e7-97c4-4a8f-beae-c49b4977560a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.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/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T22:56:10.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.240.149.243","possibleInboundIpAddresses":"52.240.149.243","ftpUsername":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a\\$cln9106d9e7-97c4-4a8f-beae-c49b4977560a","ftpsHostName":"ftps://waws-prod-ch1-037.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224","possibleOutboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224,52.240.148.114,52.240.148.110,52.240.148.107","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ch1-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"resourceGroup":"cleanupservice","defaultHostName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d5ff1e04-850a-486e-8614-5c9fbaaf4326"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '69966' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf50","name":"asdfsdf50","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf50","state":"Running","hostNames":["asdfsdf50.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf50","repositorySiteName":"asdfsdf50","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf50.azurewebsites.net","asdfsdf50.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf50.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf50.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:25:13.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf50","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf50\\$asdfsdf50","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf50.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf21","name":"asdfsdf21","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf21","state":"Running","hostNames":["asdfsdf21.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf21","repositorySiteName":"asdfsdf21","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf21.azurewebsites.net","asdfsdf21.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf21.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf21.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:55.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf21","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf21\\$asdfsdf21","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf21.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf111","name":"asdfsdf111","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf111","state":"Running","hostNames":["asdfsdf111.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf111","repositorySiteName":"asdfsdf111","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf111.azurewebsites.net","asdfsdf111.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf111.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf111.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:14:36.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf111","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf111\\$asdfsdf111","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf111.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf28","name":"asdfsdf28","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf28","state":"Running","hostNames":["asdfsdf28.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf28","repositorySiteName":"asdfsdf28","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf28.azurewebsites.net","asdfsdf28.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.6"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf28.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf28.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T22:09:43.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf28","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf28\\$asdfsdf28","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf28.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf6","name":"asdfsdf6","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf6","state":"Running","hostNames":["asdfsdf6.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf6","repositorySiteName":"asdfsdf6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf6.azurewebsites.net","asdfsdf6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf6.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:05:37.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf6","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf6\\$asdfsdf6","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf59","name":"asdfsdf59","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf59","state":"Running","hostNames":["asdfsdf59.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf59","repositorySiteName":"asdfsdf59","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf59.azurewebsites.net","asdfsdf59.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf59.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf59.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:43:10.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf59","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf59\\$asdfsdf59","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf59.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf5","name":"asdfsdf5","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf5","state":"Running","hostNames":["asdfsdf5.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf5","repositorySiteName":"asdfsdf5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf5.azurewebsites.net","asdfsdf5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf5.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:59:21.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf5","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf5\\$asdfsdf5","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf160","name":"asdfsdf160","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf160","state":"Running","hostNames":["asdfsdf160.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf160","repositorySiteName":"asdfsdf160","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf160.azurewebsites.net","asdfsdf160.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf160.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf160.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T18:09:35.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf160","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf160\\$asdfsdf160","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf160.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf57","name":"asdfsdf57","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf57","state":"Running","hostNames":["asdfsdf57.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf57","repositorySiteName":"asdfsdf57","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf57.azurewebsites.net","asdfsdf57.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf57.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf57.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:26.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf57","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf57\\$asdfsdf57","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf57.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf30","name":"asdfsdf30","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf30","state":"Running","hostNames":["asdfsdf30.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf30","repositorySiteName":"asdfsdf30","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf30.azurewebsites.net","asdfsdf30.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf30.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf30.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T23:25:37.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf30","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf30\\$asdfsdf30","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf30.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf54","name":"asdfsdf54","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf54","state":"Running","hostNames":["asdfsdf54.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf54","repositorySiteName":"asdfsdf54","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf54.azurewebsites.net","asdfsdf54.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf54.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf54.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:27:07.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf54","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf54\\$asdfsdf54","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf54.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf52","name":"asdfsdf52","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf52","state":"Running","hostNames":["asdfsdf52.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf52","repositorySiteName":"asdfsdf52","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf52.azurewebsites.net","asdfsdf52.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf52.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf52.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:34:47.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf52","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf52\\$asdfsdf52","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf52.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf112","name":"asdfsdf112","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf112","state":"Running","hostNames":["asdfsdf112.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf112","repositorySiteName":"asdfsdf112","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf112.azurewebsites.net","asdfsdf112.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf112.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf112.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:21:31.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf112","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf112\\$asdfsdf112","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf112.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf85","name":"asdfsdf85","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf85","state":"Running","hostNames":["asdfsdf85.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf85","repositorySiteName":"asdfsdf85","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf85.azurewebsites.net","asdfsdf85.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf85.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf85.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:39:46.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf85","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf85\\$asdfsdf85","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf85.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf","name":"asdfsdf","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf","state":"Running","hostNames":["asdfsdf.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf","repositorySiteName":"asdfsdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf.azurewebsites.net","asdfsdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.7"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:21:18.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf\\$asdfsdf","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf42","name":"asdfsdf42","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf42","state":"Running","hostNames":["asdfsdf42.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf42","repositorySiteName":"asdfsdf42","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf42.azurewebsites.net","asdfsdf42.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf42.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf42.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:38:19.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf42","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf42\\$asdfsdf42","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf42.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf27","name":"asdfsdf27","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf27","state":"Running","hostNames":["asdfsdf27.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf27","repositorySiteName":"asdfsdf27","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf27.azurewebsites.net","asdfsdf27.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf27.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf27.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:32:39.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf27","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf27\\$asdfsdf27","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf27.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf43","name":"asdfsdf43","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf43","state":"Running","hostNames":["asdfsdf43.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf43","repositorySiteName":"asdfsdf43","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf43.azurewebsites.net","asdfsdf43.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf43.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf43.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:45:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf43","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf43\\$asdfsdf43","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf43.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf80","name":"asdfsdf80","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf80","state":"Running","hostNames":["asdfsdf80.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf80","repositorySiteName":"asdfsdf80","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf80.azurewebsites.net","asdfsdf80.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf80.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf80.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:14:27.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf80","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf80\\$asdfsdf80","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf80.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf19","name":"asdfsdf19","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf19","state":"Running","hostNames":["asdfsdf19.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf19","repositorySiteName":"asdfsdf19","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf19.azurewebsites.net","asdfsdf19.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf19.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf19.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:42:05.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf19","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf19\\$asdfsdf19","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf19.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf113","name":"asdfsdf113","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf113","state":"Running","hostNames":["asdfsdf113.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf113","repositorySiteName":"asdfsdf113","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf113.azurewebsites.net","asdfsdf113.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf113.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf113.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:20:12.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf113","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf113\\$asdfsdf113","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf113.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf4","name":"asdfsdf4","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf4","state":"Running","hostNames":["asdfsdf4.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf4","repositorySiteName":"asdfsdf4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf4.azurewebsites.net","asdfsdf4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf4.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:56:33.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf4","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf4\\$asdfsdf4","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf7","name":"asdfsdf7","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf7","state":"Running","hostNames":["asdfsdf7.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf7","repositorySiteName":"asdfsdf7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf7.azurewebsites.net","asdfsdf7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf7.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:34:13.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf7","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf7\\$asdfsdf7","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf58","name":"asdfsdf58","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf58","state":"Running","hostNames":["asdfsdf58.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf58","repositorySiteName":"asdfsdf58","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf58.azurewebsites.net","asdfsdf58.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf58.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf58.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:38:46.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf58","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf58\\$asdfsdf58","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf58.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf92","name":"asdfsdf92","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf92","state":"Running","hostNames":["asdfsdf92.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf92","repositorySiteName":"asdfsdf92","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf92.azurewebsites.net","asdfsdf92.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf92.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf92.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:59:33.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf92","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf92\\$asdfsdf92","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf92.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf11","name":"asdfsdf11","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf11","state":"Running","hostNames":["asdfsdf11.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf11","repositorySiteName":"asdfsdf11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf11.azurewebsites.net","asdfsdf11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf11.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:55:20.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf11\\$asdfsdf11","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf3","name":"asdfsdf3","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf3","state":"Running","hostNames":["asdfsdf3.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf3","repositorySiteName":"asdfsdf3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf3.azurewebsites.net","asdfsdf3.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf3.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:53:08.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf3","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf3\\$asdfsdf3","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf13","name":"asdfsdf13","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf13","state":"Running","hostNames":["asdfsdf13.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf13","repositorySiteName":"asdfsdf13","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf13.azurewebsites.net","asdfsdf13.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf13.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf13.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:06.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf13","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf13\\$asdfsdf13","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf13.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf25","name":"asdfsdf25","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf25","state":"Running","hostNames":["asdfsdf25.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf25","repositorySiteName":"asdfsdf25","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf25.azurewebsites.net","asdfsdf25.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf25.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf25.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:26:57.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf25","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf25\\$asdfsdf25","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf25.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf2","name":"asdfsdf2","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf2","state":"Running","hostNames":["asdfsdf2.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf2","repositorySiteName":"asdfsdf2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf2.azurewebsites.net","asdfsdf2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf2.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:45:20.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf2","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf2\\$asdfsdf2","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf55","name":"asdfsdf55","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf55","state":"Running","hostNames":["asdfsdf55.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf55","repositorySiteName":"asdfsdf55","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf55.azurewebsites.net","asdfsdf55.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf55.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf55.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:32:32.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf55","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf55\\$asdfsdf55","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf55.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf40","name":"asdfsdf40","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf40","state":"Running","hostNames":["asdfsdf40.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf40","repositorySiteName":"asdfsdf40","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf40.azurewebsites.net","asdfsdf40.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf40.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf40.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:20:03.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf40","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf40\\$asdfsdf40","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf40.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf12","name":"asdfsdf12","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf12","state":"Running","hostNames":["asdfsdf12.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf12","repositorySiteName":"asdfsdf12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf12.azurewebsites.net","asdfsdf12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf12.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:08:25.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf12\\$asdfsdf12","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf16","name":"asdfsdf16","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf16","state":"Running","hostNames":["asdfsdf16.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf16","repositorySiteName":"asdfsdf16","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf16.azurewebsites.net","asdfsdf16.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf16.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf16.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T03:04:00.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf16","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf16\\$asdfsdf16","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf16.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf56","name":"asdfsdf56","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf56","state":"Running","hostNames":["asdfsdf56.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf56","repositorySiteName":"asdfsdf56","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf56.azurewebsites.net","asdfsdf56.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf56.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf56.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:40.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf56","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf56\\$asdfsdf56","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf56.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf22","name":"asdfsdf22","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf22","state":"Running","hostNames":["asdfsdf22.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf22","repositorySiteName":"asdfsdf22","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf22.azurewebsites.net","asdfsdf22.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf22.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf22.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:53:18.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf22","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf22\\$asdfsdf22","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf22.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf61","name":"asdfsdf61","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf61","state":"Running","hostNames":["asdfsdf61.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf61","repositorySiteName":"asdfsdf61","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf61.azurewebsites.net","asdfsdf61.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf61.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf61.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:07:53.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf61","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf61\\$asdfsdf61","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf61.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf90","name":"asdfsdf90","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf90","state":"Running","hostNames":["asdfsdf90.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf90","repositorySiteName":"asdfsdf90","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf90.azurewebsites.net","asdfsdf90.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf90.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf90.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:52:58.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf90","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf90\\$asdfsdf90","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf90.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf51","name":"asdfsdf51","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf51","state":"Running","hostNames":["asdfsdf51.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf51","repositorySiteName":"asdfsdf51","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf51.azurewebsites.net","asdfsdf51.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf51.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf51.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:19:44.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf51","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf51\\$asdfsdf51","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf51.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf114","name":"asdfsdf114","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf114","state":"Running","hostNames":["asdfsdf114.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf114","repositorySiteName":"asdfsdf114","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf114.azurewebsites.net","asdfsdf114.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf114.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf114.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:45.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf114","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf114\\$asdfsdf114","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf114.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf24","name":"asdfsdf24","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf24","state":"Running","hostNames":["asdfsdf24.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf24","repositorySiteName":"asdfsdf24","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf24.azurewebsites.net","asdfsdf24.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf24.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf24.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:18:42.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf24","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf24\\$asdfsdf24","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf24.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf15","name":"asdfsdf15","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf15","state":"Running","hostNames":["asdfsdf15.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf15","repositorySiteName":"asdfsdf15","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf15.azurewebsites.net","asdfsdf15.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf15.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf15.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:13:11.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf15","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf15\\$asdfsdf15","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf15.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf10","name":"asdfsdf10","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf10","state":"Running","hostNames":["asdfsdf10.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf10","repositorySiteName":"asdfsdf10","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf10.azurewebsites.net","asdfsdf10.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf10.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf10.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:04:58.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf10","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf10\\$asdfsdf10","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf10.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf60","name":"asdfsdf60","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf60","state":"Running","hostNames":["asdfsdf60.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf60","repositorySiteName":"asdfsdf60","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf60.azurewebsites.net","asdfsdf60.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf60.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf60.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:41:49.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf60","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf60\\$asdfsdf60","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf60.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf23","name":"asdfsdf23","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf23","state":"Running","hostNames":["asdfsdf23.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf23","repositorySiteName":"asdfsdf23","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf23.azurewebsites.net","asdfsdf23.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf23.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf23.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:15:03.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf23","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf23\\$asdfsdf23","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf23.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf14","name":"asdfsdf14","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf14","state":"Running","hostNames":["asdfsdf14.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf14","repositorySiteName":"asdfsdf14","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf14.azurewebsites.net","asdfsdf14.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf14.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf14.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:46.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf14","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf14\\$asdfsdf14","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf14.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf8","name":"asdfsdf8","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf8","state":"Running","hostNames":["asdfsdf8.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf8","repositorySiteName":"asdfsdf8","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf8.azurewebsites.net","asdfsdf8.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf8.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf8.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:37:40.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf8","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf8\\$asdfsdf8","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf8.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"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":"Japan + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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":[],"csrs":[],"cers":null,"siteMode":"Limited","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":"Dedicated","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-10-15T20:40:43.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '480880' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:22:38 GMT + - Thu, 15 Oct 2020 20:41:06 GMT expires: - '-1' pragma: @@ -1290,11 +1369,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - a953af86-6c07-4d6c-88cf-326713092394 - - 3095aaaf-80c8-4c87-bc4b-2e63b3a11d71 - - 42c41a26-a880-4805-aad3-313000c6c82d - - cfa22604-f765-486c-8b0c-dfcf2978c69a - - 47cb019a-4340-4baa-9914-ce2c220dd488 + - 6bf31c58-0443-4bc2-bcda-c6d5328451c8 + - 6c0bde2d-51a3-4fdf-b749-5ce4cb03b98b + - 518b53f4-8e2c-4918-b625-6fd4e1fe138a + - e8779a8a-71dd-4cca-acbf-a7165c83683c + - 0bf01ce1-e349-44fb-bc00-adf9e8111645 status: code: 200 message: OK @@ -1314,8 +1393,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1323,16 +1402,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' + West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1"}}' headers: cache-control: - no-cache content-length: - - '360' + - '362' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:40 GMT + - Thu, 15 Oct 2020 20:41:07 GMT expires: - '-1' pragma: @@ -1359,7 +1438,7 @@ interactions: - request: body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: @@ -1372,14 +1451,14 @@ interactions: Connection: - keep-alive Content-Length: - - '543' + - '545' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1387,20 +1466,20 @@ 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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:42.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:11.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5868' + - '5894' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:46 GMT + - Thu, 15 Oct 2020 20:41:16 GMT etag: - - '"1D6A18564EBB6E0"' + - '"1D6A333738899C0"' expires: - '-1' pragma: @@ -1442,8 +1521,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1452,17 +1531,17 @@ interactions: body: string: @@ -1474,7 +1553,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:22:47 GMT + - Thu, 15 Oct 2020 20:41:17 GMT expires: - '-1' pragma: @@ -1508,8 +1587,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1517,16 +1596,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:42.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}],"nextLink":null,"id":null}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:11.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '5708' + - '5734' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:48 GMT + - Thu, 15 Oct 2020 20:41:19 GMT expires: - '-1' pragma: @@ -1562,8 +1641,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1571,18 +1650,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:42.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:11.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:48 GMT + - Thu, 15 Oct 2020 20:41:19 GMT etag: - - '"1D6A1857581BA0B"' + - '"1D6A333844C63AB"' expires: - '-1' pragma: @@ -1618,8 +1697,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1627,18 +1706,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:42.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:11.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:50 GMT + - Thu, 15 Oct 2020 20:41:20 GMT etag: - - '"1D6A1857581BA0B"' + - '"1D6A333844C63AB"' expires: - '-1' pragma: @@ -1678,8 +1757,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1688,17 +1767,17 @@ interactions: body: string: @@ -1710,7 +1789,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:22:51 GMT + - Thu, 15 Oct 2020 20:41:21 GMT expires: - '-1' pragma: @@ -1744,8 +1823,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1753,18 +1832,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:42.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:11.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:52 GMT + - Thu, 15 Oct 2020 20:41:21 GMT etag: - - '"1D6A1857581BA0B"' + - '"1D6A333844C63AB"' expires: - '-1' pragma: @@ -1805,8 +1884,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1825,9 +1904,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:54 GMT + - Thu, 15 Oct 2020 20:41:23 GMT etag: - - '"1D6A1857581BA0B"' + - '"1D6A333844C63AB"' expires: - '-1' pragma: @@ -1865,24 +1944,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"panchagnula","publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + 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: - - '267' + - '258' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:54 GMT + - Thu, 15 Oct 2020 20:41:23 GMT expires: - '-1' pragma: @@ -1918,8 +1997,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1936,9 +2015,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:55 GMT + - Thu, 15 Oct 2020 20:41:25 GMT etag: - - '"1D6A1857C47A240"' + - '"1D6A3338BD6A04B"' expires: - '-1' pragma: @@ -1974,8 +2053,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1992,9 +2071,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:55 GMT + - Thu, 15 Oct 2020 20:41:26 GMT etag: - - '"1D6A1857C47A240"' + - '"1D6A3338BD6A04B"' expires: - '-1' pragma: @@ -2031,8 +2110,8 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2040,18 +2119,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:54.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:23.8766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5663' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:56 GMT + - Thu, 15 Oct 2020 20:41:27 GMT etag: - - '"1D6A1857C47A240"' + - '"1D6A3338BD6A04B"' expires: - '-1' pragma: @@ -2088,8 +2167,8 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2097,18 +2176,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:54.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:23.8766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5663' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:57 GMT + - Thu, 15 Oct 2020 20:41:28 GMT etag: - - '"1D6A1857C47A240"' + - '"1D6A3338BD6A04B"' expires: - '-1' pragma: @@ -2152,8 +2231,8 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -2170,9 +2249,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:59 GMT + - Thu, 15 Oct 2020 20:41:30 GMT etag: - - '"1D6A1857F14CC00"' + - '"1D6A3338FEA53CB"' expires: - '-1' pragma: @@ -2210,8 +2289,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2219,18 +2298,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:58.88","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:30.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5663' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:59 GMT + - Thu, 15 Oct 2020 20:41:31 GMT etag: - - '"1D6A1857F14CC00"' + - '"1D6A3338FEA53CB"' expires: - '-1' pragma: @@ -2266,8 +2345,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2284,7 +2363,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:01 GMT + - Thu, 15 Oct 2020 20:41:33 GMT expires: - '-1' pragma: @@ -2320,8 +2399,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2340,7 +2419,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:02 GMT + - Thu, 15 Oct 2020 20:41:34 GMT expires: - '-1' pragma: @@ -2380,8 +2459,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2390,17 +2469,17 @@ interactions: body: string: @@ -2412,7 +2491,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:23:03 GMT + - Thu, 15 Oct 2020 20:41:35 GMT expires: - '-1' pragma: @@ -2446,8 +2525,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2455,18 +2534,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:22:58.88","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:30.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5663' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:04 GMT + - Thu, 15 Oct 2020 20:41:36 GMT etag: - - '"1D6A1857F14CC00"' + - '"1D6A3338FEA53CB"' expires: - '-1' pragma: @@ -2504,8 +2583,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2519,7 +2598,7 @@ interactions: content-length: - '0' date: - - Tue, 13 Oct 2020 17:23:06 GMT + - Thu, 15 Oct 2020 20:41:37 GMT expires: - '-1' pragma: @@ -2553,8 +2632,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2562,18 +2641,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:06.1666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:37.9566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:07 GMT + - Thu, 15 Oct 2020 20:41:38 GMT etag: - - '"1D6A185836CA76B"' + - '"1D6A333943B104B"' expires: - '-1' pragma: @@ -2609,8 +2688,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2618,18 +2697,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:06.1666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:37.9566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:07 GMT + - Thu, 15 Oct 2020 20:41:40 GMT etag: - - '"1D6A185836CA76B"' + - '"1D6A333943B104B"' expires: - '-1' pragma: @@ -2669,8 +2748,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2679,17 +2758,17 @@ interactions: body: string: @@ -2701,7 +2780,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:23:07 GMT + - Thu, 15 Oct 2020 20:41:41 GMT expires: - '-1' pragma: @@ -2735,8 +2814,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2744,18 +2823,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:06.1666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:37.9566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:09 GMT + - Thu, 15 Oct 2020 20:41:41 GMT etag: - - '"1D6A185836CA76B"' + - '"1D6A333943B104B"' expires: - '-1' pragma: @@ -2793,8 +2872,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2808,7 +2887,7 @@ interactions: content-length: - '0' date: - - Tue, 13 Oct 2020 17:23:10 GMT + - Thu, 15 Oct 2020 20:41:43 GMT expires: - '-1' pragma: @@ -2842,8 +2921,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2851,18 +2930,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:10.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:43.78","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5689' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:10 GMT + - Thu, 15 Oct 2020 20:41:44 GMT etag: - - '"1D6A185860C0A6B"' + - '"1D6A33397B3A240"' expires: - '-1' pragma: @@ -2898,8 +2977,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2907,18 +2986,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:10.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:43.78","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5689' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:10 GMT + - Thu, 15 Oct 2020 20:41:45 GMT etag: - - '"1D6A185860C0A6B"' + - '"1D6A33397B3A240"' expires: - '-1' pragma: @@ -2958,8 +3037,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2968,17 +3047,17 @@ interactions: body: string: @@ -2990,7 +3069,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:23:12 GMT + - Thu, 15 Oct 2020 20:41:46 GMT expires: - '-1' pragma: @@ -3026,8 +3105,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -3035,7 +3114,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":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"gpoK0BtJFqD1ouLeEGSl8XfCujLuyuSjpYWKrmJv7L3Sz8CyM9c4sYm41ajo","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:gpoK0BtJFqD1ouLeEGSl8XfCujLuyuSjpYWKrmJv7L3Sz8CyM9c4sYm41ajo@webapp-e2e000002.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"eLFcaPhmanliAggYWPWBcec3uMjzoiieJvQAxZ8ccSyt7wBkkhaQeCAWkpbx","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:eLFcaPhmanliAggYWPWBcec3uMjzoiieJvQAxZ8ccSyt7wBkkhaQeCAWkpbx@webapp-e2e000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -3044,7 +3123,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:13 GMT + - Thu, 15 Oct 2020 20:41:46 GMT expires: - '-1' pragma: @@ -3082,8 +3161,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3091,18 +3170,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:10.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:43.78","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5689' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:14 GMT + - Thu, 15 Oct 2020 20:41:47 GMT etag: - - '"1D6A185860C0A6B"' + - '"1D6A33397B3A240"' expires: - '-1' pragma: @@ -3138,8 +3217,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3147,18 +3226,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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:10.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:43.78","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5689' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:15 GMT + - Thu, 15 Oct 2020 20:41:48 GMT etag: - - '"1D6A185860C0A6B"' + - '"1D6A33397B3A240"' expires: - '-1' pragma: @@ -3198,8 +3277,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -3208,17 +3287,17 @@ interactions: body: string: @@ -3230,7 +3309,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:23:16 GMT + - Thu, 15 Oct 2020 20:41:48 GMT expires: - '-1' pragma: @@ -3264,8 +3343,8 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3273,8 +3352,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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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 @@ -3283,7 +3362,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:17 GMT + - Thu, 15 Oct 2020 20:41:50 GMT expires: - '-1' pragma: @@ -3324,8 +3403,8 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -3341,7 +3420,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:17 GMT + - Thu, 15 Oct 2020 20:41:50 GMT expires: - '-1' pragma: @@ -3379,8 +3458,8 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3388,8 +3467,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":"Japan - West","properties":{"serverFarmId":18820,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","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-os1-011_18820","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14442,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","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-os1-013_14442","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 @@ -3398,7 +3477,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:18 GMT + - Thu, 15 Oct 2020 20:41:51 GMT expires: - '-1' pragma: @@ -3438,8 +3517,8 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -3456,7 +3535,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:19 GMT + - Thu, 15 Oct 2020 20:41:51 GMT expires: - '-1' pragma: @@ -3492,37 +3571,115 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u/providers/Microsoft.Web/sites/cli-funcapp-nwrxkykztrc4","name":"cli-funcapp-nwrxkykztrc4","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrxkykztrc4","state":"Running","hostNames":["cli-funcapp-nwrxkykztrc4.azurewebsites.net"],"webSpace":"clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u-JapanWestwebspace","selfLink":"https://waws-prod-os1-005.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u-JapanWestwebspace/sites/cli-funcapp-nwrxkykztrc4","repositorySiteName":"cli-funcapp-nwrxkykztrc4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrxkykztrc4.azurewebsites.net","cli-funcapp-nwrxkykztrc4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrxkykztrc4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrxkykztrc4.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:44.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrxkykztrc4","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"104.214.137.236","possibleInboundIpAddresses":"104.214.137.236,40.74.100.135","ftpUsername":"cli-funcapp-nwrxkykztrc4\\$cli-funcapp-nwrxkykztrc4","ftpsHostName":"ftps://waws-prod-os1-005.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"138.91.28.31,138.91.26.124,138.91.26.192,138.91.28.65","possibleOutboundIpAddresses":"138.91.28.31,138.91.26.124,138.91.26.192,138.91.28.65,40.74.112.158,40.74.112.169,40.74.112.181,40.74.112.230,52.175.150.245,104.214.137.236,40.74.100.135","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-005","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg244vwlpeu4tymj5vhshlpqopzkdpivfgcuo2o5ruj24ipwpvtunslci4oj54dpb4u","defaultHostName":"cli-funcapp-nwrxkykztrc4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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":[],"csrs":[],"cers":null,"siteMode":"Limited","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":"Dedicated","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-10-13T17:23:10.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsa5ts4p4zdwqlxeqsvfkxvh3t5x24l44pkfjylgarfcbfzpjozspursi74t2sw6xz/providers/Microsoft.Web/sites/webapp-quickyt3uou2bhmvz","name":"webapp-quickyt3uou2bhmvz","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"webapp-quickyt3uou2bhmvz","state":"Running","hostNames":[],"webSpace":"clitest.rgsa5ts4p4zdwqlxeqsvfkxvh3t5x24l44pkfjylgarfcbfzpjozspursi74t2sw6xz-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgsa5ts4p4zdwqlxeqsvfkxvh3t5x24l44pkfjylgarfcbfzpjozspursi74t2sw6xz-JapanWestwebspace/sites/webapp-quickyt3uou2bhmvz","repositorySiteName":"webapp-quickyt3uou2bhmvz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quickyt3uou2bhmvz.azurewebsites.net","webapp-quickyt3uou2bhmvz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quickyt3uou2bhmvz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quickyt3uou2bhmvz.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.rgsa5ts4p4zdwqlxeqsvfkxvh3t5x24l44pkfjylgarfcbfzpjozspursi74t2sw6xz/providers/Microsoft.Web/serverfarms/plan-quickgummvavxt4rlyn","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:23:19.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quickyt3uou2bhmvz","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quickyt3uou2bhmvz\\$webapp-quickyt3uou2bhmvz","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgsa5ts4p4zdwqlxeqsvfkxvh3t5x24l44pkfjylgarfcbfzpjozspursi74t2sw6xz","defaultHostName":"webapp-quickyt3uou2bhmvz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo/providers/Microsoft.Web/sites/cli-funcapp-nwrqw5aidudj","name":"cli-funcapp-nwrqw5aidudj","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrqw5aidudj","state":"Running","hostNames":["cli-funcapp-nwrqw5aidudj.azurewebsites.net"],"webSpace":"clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo-JapanWestwebspace","selfLink":"https://waws-prod-os1-001.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo-JapanWestwebspace/sites/cli-funcapp-nwrqw5aidudj","repositorySiteName":"cli-funcapp-nwrqw5aidudj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrqw5aidudj.azurewebsites.net","cli-funcapp-nwrqw5aidudj.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrqw5aidudj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrqw5aidudj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:42.097","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrqw5aidudj","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"138.91.16.18","possibleInboundIpAddresses":"138.91.16.18,40.74.100.134","ftpUsername":"cli-funcapp-nwrqw5aidudj\\$cli-funcapp-nwrqw5aidudj","ftpsHostName":"ftps://waws-prod-os1-001.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"138.91.17.178,138.91.17.193,138.91.17.229,138.91.17.24","possibleOutboundIpAddresses":"138.91.17.178,138.91.17.193,138.91.17.229,138.91.17.24,104.46.224.164,104.46.224.222,104.46.228.81,104.46.228.202,104.46.224.181,138.91.16.18,40.74.100.134","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-001","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgk2klwrkrthcisiob45kq5xipjoqp6h5jymplcsxwt2iruekyl4hvxzmu3ucp2elxo","defaultHostName":"cli-funcapp-nwrqw5aidudj.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/sites/cli-funcapp-nwrbofuimyzk","name":"cli-funcapp-nwrbofuimyzk","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrbofuimyzk","state":"Running","hostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net"],"webSpace":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace","selfLink":"https://waws-prod-os1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx-JapanWestwebspace/sites/cli-funcapp-nwrbofuimyzk","repositorySiteName":"cli-funcapp-nwrbofuimyzk","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrbofuimyzk.azurewebsites.net","cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrbofuimyzk.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:35:43.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrbofuimyzk","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.175.158.219","possibleInboundIpAddresses":"52.175.158.219,40.74.100.133","ftpUsername":"cli-funcapp-nwrbofuimyzk\\$cli-funcapp-nwrbofuimyzk","ftpsHostName":"ftps://waws-prod-os1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135","possibleOutboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135,104.46.236.70,104.215.17.186,104.215.17.210,104.215.19.221,104.215.23.198,52.175.158.219,40.74.100.133","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg2v5kkmsowt4djwqll3v4zixhegjach6734amtrydblniifbej2q5q6xpzwy7xnfzx","defaultHostName":"cli-funcapp-nwrbofuimyzk.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y/providers/Microsoft.Web/sites/cli-funcapp-nwrpjusgukis","name":"cli-funcapp-nwrpjusgukis","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrpjusgukis","state":"Running","hostNames":["cli-funcapp-nwrpjusgukis.azurewebsites.net"],"webSpace":"clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y-JapanWestwebspace","selfLink":"https://waws-prod-os1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y-JapanWestwebspace/sites/cli-funcapp-nwrpjusgukis","repositorySiteName":"cli-funcapp-nwrpjusgukis","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrpjusgukis.azurewebsites.net","cli-funcapp-nwrpjusgukis.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrpjusgukis.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrpjusgukis.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:59.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrpjusgukis","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.175.158.219","possibleInboundIpAddresses":"52.175.158.219,40.74.100.133","ftpUsername":"cli-funcapp-nwrpjusgukis\\$cli-funcapp-nwrpjusgukis","ftpsHostName":"ftps://waws-prod-os1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135","possibleOutboundIpAddresses":"52.175.152.216,52.175.157.34,52.175.154.127,52.175.153.135,104.46.236.70,104.215.17.186,104.215.17.210,104.215.19.221,104.215.23.198,52.175.158.219,40.74.100.133","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgaclljqph37zeom3g3ordi634ho5wrsc4x2l3563l7aq6a3734xs24qvryfyip7f5y","defaultHostName":"cli-funcapp-nwrpjusgukis.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz/providers/Microsoft.Web/sites/cli-funcapp-nwrgug4rdu6e","name":"cli-funcapp-nwrgug4rdu6e","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan - West","properties":{"name":"cli-funcapp-nwrgug4rdu6e","state":"Running","hostNames":["cli-funcapp-nwrgug4rdu6e.azurewebsites.net"],"webSpace":"clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz-JapanWestwebspace/sites/cli-funcapp-nwrgug4rdu6e","repositorySiteName":"cli-funcapp-nwrgug4rdu6e","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwrgug4rdu6e.azurewebsites.net","cli-funcapp-nwrgug4rdu6e.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-funcapp-nwrgug4rdu6e.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwrgug4rdu6e.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dynamic","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:22:56.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwrgug4rdu6e","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-funcapp-nwrgug4rdu6e\\$cli-funcapp-nwrgug4rdu6e","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg3xuzadk2xxkfmnexgwpk4bud3eilnlnw5nls57ez2adcbsxlnsv2q3timjg7in4sz","defaultHostName":"cli-funcapp-nwrgug4rdu6e.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglndkjbestv63yfnnvgczxt3xmorcumxndxuepm5lcjk7tcd56yudz72vtwttcaqlr/providers/Microsoft.Web/sites/cli-webapp-nwrgc4zyk64wq","name":"cli-webapp-nwrgc4zyk64wq","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"cli-webapp-nwrgc4zyk64wq","state":"Running","hostNames":["cli-webapp-nwrgc4zyk64wq.azurewebsites.net"],"webSpace":"clitest.rglndkjbestv63yfnnvgczxt3xmorcumxndxuepm5lcjk7tcd56yudz72vtwttcaqlr-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglndkjbestv63yfnnvgczxt3xmorcumxndxuepm5lcjk7tcd56yudz72vtwttcaqlr-JapanWestwebspace/sites/cli-webapp-nwrgc4zyk64wq","repositorySiteName":"cli-webapp-nwrgc4zyk64wq","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwrgc4zyk64wq.azurewebsites.net","cli-webapp-nwrgc4zyk64wq.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cli-webapp-nwrgc4zyk64wq.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwrgc4zyk64wq.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.rglndkjbestv63yfnnvgczxt3xmorcumxndxuepm5lcjk7tcd56yudz72vtwttcaqlr/providers/Microsoft.Web/serverfarms/cli-plan-nwrbibaaewpjjo4","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:23:20.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwrgc4zyk64wq","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwrgc4zyk64wq\\$cli-webapp-nwrgc4zyk64wq","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglndkjbestv63yfnnvgczxt3xmorcumxndxuepm5lcjk7tcd56yudz72vtwttcaqlr","defaultHostName":"cli-webapp-nwrgc4zyk64wq.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/sites/delete-me-weboyiqvj7rzdf","name":"delete-me-weboyiqvj7rzdf","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"delete-me-weboyiqvj7rzdf","state":"Running","hostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net"],"webSpace":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f-JapanWestwebspace/sites/delete-me-weboyiqvj7rzdf","repositorySiteName":"delete-me-weboyiqvj7rzdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-weboyiqvj7rzdf.azurewebsites.net","delete-me-weboyiqvj7rzdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"delete-me-weboyiqvj7rzdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-weboyiqvj7rzdf.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.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f/providers/Microsoft.Web/serverfarms/delete-me-planjxjoseu3lq","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T04:22:40.5","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"delete-me-weboyiqvj7rzdf","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"delete-me-weboyiqvj7rzdf\\$delete-me-weboyiqvj7rzdf","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgnsmwn6zdjnizvj6n77itnj4ypucudg2bzrwbmohfrddpdseaco6lzc56lzso4tq2f","defaultHostName":"delete-me-weboyiqvj7rzdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/sisirap-test-app-multicontainer","name":"sisirap-test-app-multicontainer","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East - US","properties":{"name":"sisirap-test-app-multicontainer","state":"Running","hostNames":["sisirap-test-app-multicontainer.azurewebsites.net"],"webSpace":"sisirap-RG-EastUSwebspace","selfLink":"https://waws-prod-blu-191.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap-RG-EastUSwebspace/sites/sisirap-test-app-multicontainer","repositorySiteName":"sisirap-test-app-multicontainer","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-test-app-multicontainer.azurewebsites.net","sisirap-test-app-multicontainer.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-test-app-multicontainer.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-app-multicontainer.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/sisirap-RG/providers/Microsoft.Web/serverfarms/sisirap-test-multicontainet","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T01:03:41.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-test-app-multicontainer","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.104.3","possibleInboundIpAddresses":"20.49.104.3","ftpUsername":"sisirap-test-app-multicontainer\\$sisirap-test-app-multicontainer","ftpsHostName":"ftps://waws-prod-blu-191.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225","possibleOutboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225,52.149.246.34,52.179.115.42,52.179.118.77,52.191.94.124,52.224.89.255,52.224.92.113,52.226.52.76,52.226.52.105,52.226.52.106,52.226.53.47,52.226.53.100,52.226.54.47","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-191","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap-RG","defaultHostName":"sisirap-test-app-multicontainer.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/sites/webapp-quick-linuxg6637p","name":"webapp-quick-linuxg6637p","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Canada - Central","properties":{"name":"webapp-quick-linuxg6637p","state":"Running","hostNames":["webapp-quick-linuxg6637p.azurewebsites.net"],"webSpace":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace","selfLink":"https://waws-prod-yt1-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz-CanadaCentralwebspace/sites/webapp-quick-linuxg6637p","repositorySiteName":"webapp-quick-linuxg6637p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linuxg6637p.azurewebsites.net","webapp-quick-linuxg6637p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quick-linuxg6637p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linuxg6637p.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.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz/providers/Microsoft.Web/serverfarms/plan-quick-linuxo2y6abh3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-09T01:44:41.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-linuxg6637p","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"13.71.170.130","possibleInboundIpAddresses":"13.71.170.130","ftpUsername":"webapp-quick-linuxg6637p\\$webapp-quick-linuxg6637p","ftpsHostName":"ftps://waws-prod-yt1-019.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27","possibleOutboundIpAddresses":"13.71.170.130,13.88.230.232,13.88.229.172,52.228.39.78,13.71.191.27,40.85.254.37,40.85.219.45,40.85.223.56,52.228.42.60,52.228.42.28","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-yt1-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgmglcrlepluwdj37kfrcrgaxkyzjibnyp4jrzrqdt6gfhxu32c27lmk6lz5er3edbz","defaultHostName":"webapp-quick-linuxg6637p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp","name":"cliTestApp","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cliTestApp","state":"Running","hostNames":["lol.sisiraptestdomains.com","adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","test.sisiraptestdomains.com","hi.sisiraptestdomains.com","clitestapp.azurewebsites.net"],"webSpace":"cliTestApp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cliTestApp-CentralUSwebspace/sites/cliTestApp","repositorySiteName":"cliTestApp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["adsec.sisiraptestdomains.com","foo.sisiraptestdomains.com","hi.sisiraptestdomains.com","lol.sisiraptestdomains.com","test.sisiraptestdomains.com","clitestapp.azurewebsites.net","clitestapp.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"adsec.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"foo.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hi.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"lol.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.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/cliTestApp/providers/Microsoft.Web/serverfarms/sisirap-testAsp3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T21:08:35.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cliTestApp","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":true,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.173.249.137","possibleInboundIpAddresses":"52.173.249.137","ftpUsername":"cliTestApp\\$cliTestApp","ftpsHostName":"ftps://waws-prod-dm1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28","possibleOutboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28,52.173.202.202,52.173.200.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cliTestApp","defaultHostName":"clitestapp.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","type":"Microsoft.Web/sites","kind":"app","location":"North - Central US","tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"properties":{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","state":"Running","hostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net"],"webSpace":"cleanupservice-NorthCentralUSwebspace","selfLink":"https://waws-prod-ch1-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cleanupservice-NorthCentralUSwebspace/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","repositorySiteName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","cln9106d9e7-97c4-4a8f-beae-c49b4977560a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.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/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-08T22:56:10.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.240.149.243","possibleInboundIpAddresses":"52.240.149.243","ftpUsername":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a\\$cln9106d9e7-97c4-4a8f-beae-c49b4977560a","ftpsHostName":"ftps://waws-prod-ch1-037.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224","possibleOutboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224,52.240.148.114,52.240.148.110,52.240.148.107","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ch1-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"resourceGroup":"cleanupservice","defaultHostName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d5ff1e04-850a-486e-8614-5c9fbaaf4326"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '75674' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf50","name":"asdfsdf50","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf50","state":"Running","hostNames":["asdfsdf50.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf50","repositorySiteName":"asdfsdf50","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf50.azurewebsites.net","asdfsdf50.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf50.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf50.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:25:13.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf50","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf50\\$asdfsdf50","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf50.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf21","name":"asdfsdf21","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf21","state":"Running","hostNames":["asdfsdf21.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf21","repositorySiteName":"asdfsdf21","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf21.azurewebsites.net","asdfsdf21.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf21.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf21.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:55.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf21","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf21\\$asdfsdf21","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf21.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf111","name":"asdfsdf111","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf111","state":"Running","hostNames":["asdfsdf111.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf111","repositorySiteName":"asdfsdf111","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf111.azurewebsites.net","asdfsdf111.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf111.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf111.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:14:36.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf111","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf111\\$asdfsdf111","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf111.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf28","name":"asdfsdf28","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf28","state":"Running","hostNames":["asdfsdf28.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf28","repositorySiteName":"asdfsdf28","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf28.azurewebsites.net","asdfsdf28.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.6"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf28.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf28.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T22:09:43.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf28","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf28\\$asdfsdf28","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf28.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf6","name":"asdfsdf6","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf6","state":"Running","hostNames":["asdfsdf6.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf6","repositorySiteName":"asdfsdf6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf6.azurewebsites.net","asdfsdf6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf6.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:05:37.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf6","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf6\\$asdfsdf6","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf59","name":"asdfsdf59","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf59","state":"Running","hostNames":["asdfsdf59.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf59","repositorySiteName":"asdfsdf59","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf59.azurewebsites.net","asdfsdf59.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf59.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf59.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:43:10.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf59","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf59\\$asdfsdf59","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf59.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf5","name":"asdfsdf5","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf5","state":"Running","hostNames":["asdfsdf5.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf5","repositorySiteName":"asdfsdf5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf5.azurewebsites.net","asdfsdf5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf5.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:59:21.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf5","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf5\\$asdfsdf5","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf160","name":"asdfsdf160","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf160","state":"Running","hostNames":["asdfsdf160.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf160","repositorySiteName":"asdfsdf160","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf160.azurewebsites.net","asdfsdf160.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf160.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf160.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T18:09:35.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf160","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf160\\$asdfsdf160","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf160.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf57","name":"asdfsdf57","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf57","state":"Running","hostNames":["asdfsdf57.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf57","repositorySiteName":"asdfsdf57","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf57.azurewebsites.net","asdfsdf57.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf57.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf57.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:26.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf57","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf57\\$asdfsdf57","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf57.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf30","name":"asdfsdf30","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf30","state":"Running","hostNames":["asdfsdf30.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf30","repositorySiteName":"asdfsdf30","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf30.azurewebsites.net","asdfsdf30.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf30.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf30.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T23:25:37.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf30","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf30\\$asdfsdf30","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf30.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf54","name":"asdfsdf54","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf54","state":"Running","hostNames":["asdfsdf54.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf54","repositorySiteName":"asdfsdf54","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf54.azurewebsites.net","asdfsdf54.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf54.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf54.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:27:07.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf54","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf54\\$asdfsdf54","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf54.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf52","name":"asdfsdf52","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf52","state":"Running","hostNames":["asdfsdf52.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf52","repositorySiteName":"asdfsdf52","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf52.azurewebsites.net","asdfsdf52.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf52.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf52.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:34:47.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf52","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf52\\$asdfsdf52","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf52.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf112","name":"asdfsdf112","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf112","state":"Running","hostNames":["asdfsdf112.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf112","repositorySiteName":"asdfsdf112","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf112.azurewebsites.net","asdfsdf112.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf112.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf112.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:21:31.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf112","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf112\\$asdfsdf112","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf112.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf85","name":"asdfsdf85","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf85","state":"Running","hostNames":["asdfsdf85.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf85","repositorySiteName":"asdfsdf85","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf85.azurewebsites.net","asdfsdf85.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf85.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf85.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:39:46.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf85","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf85\\$asdfsdf85","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf85.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf","name":"asdfsdf","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf","state":"Running","hostNames":["asdfsdf.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf","repositorySiteName":"asdfsdf","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf.azurewebsites.net","asdfsdf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"python|3.7"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:21:18.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf\\$asdfsdf","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf42","name":"asdfsdf42","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf42","state":"Running","hostNames":["asdfsdf42.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf42","repositorySiteName":"asdfsdf42","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf42.azurewebsites.net","asdfsdf42.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf42.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf42.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:38:19.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf42","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf42\\$asdfsdf42","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf42.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf27","name":"asdfsdf27","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf27","state":"Running","hostNames":["asdfsdf27.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf27","repositorySiteName":"asdfsdf27","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf27.azurewebsites.net","asdfsdf27.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf27.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf27.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:32:39.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf27","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf27\\$asdfsdf27","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf27.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf43","name":"asdfsdf43","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf43","state":"Running","hostNames":["asdfsdf43.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf43","repositorySiteName":"asdfsdf43","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf43.azurewebsites.net","asdfsdf43.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf43.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf43.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:45:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf43","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf43\\$asdfsdf43","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf43.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf80","name":"asdfsdf80","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf80","state":"Running","hostNames":["asdfsdf80.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf80","repositorySiteName":"asdfsdf80","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf80.azurewebsites.net","asdfsdf80.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf80.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf80.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:14:27.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf80","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf80\\$asdfsdf80","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf80.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf19","name":"asdfsdf19","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf19","state":"Running","hostNames":["asdfsdf19.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf19","repositorySiteName":"asdfsdf19","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf19.azurewebsites.net","asdfsdf19.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf19.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf19.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:42:05.0633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf19","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf19\\$asdfsdf19","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf19.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf113","name":"asdfsdf113","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf113","state":"Running","hostNames":["asdfsdf113.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf113","repositorySiteName":"asdfsdf113","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf113.azurewebsites.net","asdfsdf113.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf113.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf113.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:20:12.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf113","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf113\\$asdfsdf113","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf113.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf4","name":"asdfsdf4","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf4","state":"Running","hostNames":["asdfsdf4.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf4","repositorySiteName":"asdfsdf4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf4.azurewebsites.net","asdfsdf4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf4.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:56:33.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf4","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf4\\$asdfsdf4","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf7","name":"asdfsdf7","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf7","state":"Running","hostNames":["asdfsdf7.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf7","repositorySiteName":"asdfsdf7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf7.azurewebsites.net","asdfsdf7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf7.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:34:13.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf7","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf7\\$asdfsdf7","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf58","name":"asdfsdf58","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf58","state":"Running","hostNames":["asdfsdf58.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf58","repositorySiteName":"asdfsdf58","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf58.azurewebsites.net","asdfsdf58.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf58.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf58.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:38:46.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf58","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf58\\$asdfsdf58","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf58.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf92","name":"asdfsdf92","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf92","state":"Running","hostNames":["asdfsdf92.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf92","repositorySiteName":"asdfsdf92","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf92.azurewebsites.net","asdfsdf92.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf92.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf92.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:59:33.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf92","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf92\\$asdfsdf92","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf92.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf11","name":"asdfsdf11","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf11","state":"Running","hostNames":["asdfsdf11.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf11","repositorySiteName":"asdfsdf11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf11.azurewebsites.net","asdfsdf11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf11.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:55:20.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf11\\$asdfsdf11","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf3","name":"asdfsdf3","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf3","state":"Running","hostNames":["asdfsdf3.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf3","repositorySiteName":"asdfsdf3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf3.azurewebsites.net","asdfsdf3.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf3.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:53:08.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf3","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf3\\$asdfsdf3","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf13","name":"asdfsdf13","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf13","state":"Running","hostNames":["asdfsdf13.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf13","repositorySiteName":"asdfsdf13","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf13.azurewebsites.net","asdfsdf13.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf13.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf13.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:06.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf13","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf13\\$asdfsdf13","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf13.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf25","name":"asdfsdf25","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf25","state":"Running","hostNames":["asdfsdf25.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf25","repositorySiteName":"asdfsdf25","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf25.azurewebsites.net","asdfsdf25.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf25.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf25.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:26:57.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf25","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf25\\$asdfsdf25","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf25.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf2","name":"asdfsdf2","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf2","state":"Running","hostNames":["asdfsdf2.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf2","repositorySiteName":"asdfsdf2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf2.azurewebsites.net","asdfsdf2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf2.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T05:45:20.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf2","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf2\\$asdfsdf2","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf55","name":"asdfsdf55","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf55","state":"Running","hostNames":["asdfsdf55.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf55","repositorySiteName":"asdfsdf55","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf55.azurewebsites.net","asdfsdf55.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf55.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf55.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:32:32.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf55","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf55\\$asdfsdf55","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf55.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf40","name":"asdfsdf40","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf40","state":"Running","hostNames":["asdfsdf40.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf40","repositorySiteName":"asdfsdf40","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf40.azurewebsites.net","asdfsdf40.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf40.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf40.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:20:03.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf40","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf40\\$asdfsdf40","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf40.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf12","name":"asdfsdf12","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf12","state":"Running","hostNames":["asdfsdf12.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf12","repositorySiteName":"asdfsdf12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf12.azurewebsites.net","asdfsdf12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf12.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:08:25.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf12\\$asdfsdf12","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf16","name":"asdfsdf16","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf16","state":"Running","hostNames":["asdfsdf16.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf16","repositorySiteName":"asdfsdf16","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf16.azurewebsites.net","asdfsdf16.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf16.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf16.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T03:04:00.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf16","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf16\\$asdfsdf16","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf16.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf56","name":"asdfsdf56","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf56","state":"Running","hostNames":["asdfsdf56.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf56","repositorySiteName":"asdfsdf56","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf56.azurewebsites.net","asdfsdf56.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf56.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf56.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:37:40.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf56","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf56\\$asdfsdf56","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf56.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf22","name":"asdfsdf22","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf22","state":"Running","hostNames":["asdfsdf22.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf22","repositorySiteName":"asdfsdf22","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf22.azurewebsites.net","asdfsdf22.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf22.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf22.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:53:18.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf22","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf22\\$asdfsdf22","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf22.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf61","name":"asdfsdf61","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf61","state":"Running","hostNames":["asdfsdf61.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf61","repositorySiteName":"asdfsdf61","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf61.azurewebsites.net","asdfsdf61.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf61.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf61.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:07:53.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf61","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf61\\$asdfsdf61","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf61.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf90","name":"asdfsdf90","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf90","state":"Running","hostNames":["asdfsdf90.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf90","repositorySiteName":"asdfsdf90","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf90.azurewebsites.net","asdfsdf90.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf90.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf90.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T21:52:58.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf90","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf90\\$asdfsdf90","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf90.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf51","name":"asdfsdf51","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf51","state":"Running","hostNames":["asdfsdf51.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf51","repositorySiteName":"asdfsdf51","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf51.azurewebsites.net","asdfsdf51.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf51.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf51.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:19:44.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf51","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf51\\$asdfsdf51","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf51.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf114","name":"asdfsdf114","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf114","state":"Running","hostNames":["asdfsdf114.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf114","repositorySiteName":"asdfsdf114","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf114.azurewebsites.net","asdfsdf114.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf114.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf114.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:45.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf114","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf114\\$asdfsdf114","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf114.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf24","name":"asdfsdf24","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf24","state":"Running","hostNames":["asdfsdf24.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf24","repositorySiteName":"asdfsdf24","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf24.azurewebsites.net","asdfsdf24.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf24.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf24.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:18:42.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf24","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf24\\$asdfsdf24","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf24.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf15","name":"asdfsdf15","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf15","state":"Running","hostNames":["asdfsdf15.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf15","repositorySiteName":"asdfsdf15","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf15.azurewebsites.net","asdfsdf15.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf15.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf15.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:13:11.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf15","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf15\\$asdfsdf15","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf15.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf10","name":"asdfsdf10","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf10","state":"Running","hostNames":["asdfsdf10.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf10","repositorySiteName":"asdfsdf10","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf10.azurewebsites.net","asdfsdf10.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf10.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf10.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:04:58.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf10","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf10\\$asdfsdf10","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf10.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf60","name":"asdfsdf60","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf60","state":"Running","hostNames":["asdfsdf60.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf60","repositorySiteName":"asdfsdf60","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf60.azurewebsites.net","asdfsdf60.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf60.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf60.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T19:41:49.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf60","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf60\\$asdfsdf60","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf60.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf23","name":"asdfsdf23","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf23","state":"Running","hostNames":["asdfsdf23.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf23","repositorySiteName":"asdfsdf23","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf23.azurewebsites.net","asdfsdf23.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf23.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf23.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:15:03.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf23","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf23\\$asdfsdf23","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf23.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf14","name":"asdfsdf14","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf14","state":"Running","hostNames":["asdfsdf14.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf14","repositorySiteName":"asdfsdf14","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf14.azurewebsites.net","asdfsdf14.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf14.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf14.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T07:10:46.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf14","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf14\\$asdfsdf14","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf14.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf8","name":"asdfsdf8","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf8","state":"Running","hostNames":["asdfsdf8.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf8","repositorySiteName":"asdfsdf8","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf8.azurewebsites.net","asdfsdf8.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf8.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf8.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T06:37:40.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf8","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf8\\$asdfsdf8","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf8.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"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":"Japan + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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":[],"csrs":[],"cers":null,"siteMode":"Limited","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":"Dedicated","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-10-15T20:41:43.78","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '480881' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:23:28 GMT + - Thu, 15 Oct 2020 20:41:54 GMT expires: - '-1' pragma: @@ -3534,11 +3691,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - d2b68771-7fa1-49d6-98b6-9974729c6dcc - - e0774b0e-5afe-4eda-a789-1d56279fa8cf - - 5daed10a-aa94-47fa-a30f-a09aabf8465b - - 723d013a-5d08-4cf7-b448-158e77628052 - - d0772f14-ffd9-4ab5-978d-81206fd0efef + - 2ebf7093-c12f-4033-a6af-674c3dfc8913 + - 1dad0bf5-dd55-48f1-be06-1b0d336459d8 + - ca680049-706b-44f5-b204-48cb2f0e5599 + - 676ad5bc-3fdd-44f9-b9ad-23a90436a5e4 + - 9f04bfa5-af46-4fc6-bc94-82f289d48fb4 status: code: 200 message: OK @@ -3558,8 +3715,8 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -3567,16 +3724,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' + West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}' headers: cache-control: - no-cache content-length: - - '401' + - '403' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:30 GMT + - Thu, 15 Oct 2020 20:41:55 GMT expires: - '-1' pragma: @@ -3604,9 +3761,9 @@ interactions: body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "phpVersion": "7.3", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", - "value": "10.14"}, {"name": "WEBSITE_HTTPLOGGING_RETENTION_DAYS", "value": "3"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, - "httpsOnly": false}}' + "value": "10.14.1"}, {"name": "WEBSITE_HTTPLOGGING_RETENTION_DAYS", "value": + "3"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false, "httpsOnly": false}}' headers: Accept: - application/json @@ -3617,14 +3774,14 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '628' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -3632,20 +3789,20 @@ 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":"Japan - West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:32.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:41:58.2333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-e2e000002\\$webapp-e2e000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5868' + - '5894' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:36 GMT + - Thu, 15 Oct 2020 20:42:00 GMT etag: - - '"1D6A185860C0A6B"' + - '"1D6A33397B3A240"' expires: - '-1' pragma: @@ -3669,6 +3826,126 @@ interactions: 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 -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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/metadata/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/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '316' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:42: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: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "app", "properties": {"CURRENT_STACK": "php"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '55' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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/metadata?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"CURRENT_STACK":"php"}}' + headers: + cache-control: + - no-cache + content-length: + - '337' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:42:02 GMT + etag: + - '"1D6A333A2A9B9A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: '{}' headers: @@ -3687,8 +3964,8 @@ interactions: ParameterSetName: - -g -n --plan -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -3697,17 +3974,17 @@ interactions: body: string: @@ -3719,7 +3996,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:23:37 GMT + - Thu, 15 Oct 2020 20:42:03 GMT expires: - '-1' pragma: @@ -3753,8 +4030,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3773,7 +4050,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:38 GMT + - Thu, 15 Oct 2020 20:42:04 GMT 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 e49b5849833..aaaa6e2663b 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 @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:22: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":"2020-10-15T18:18:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:22:54 GMT + - Thu, 15 Oct 2020 18:18:58 GMT expires: - '-1' pragma: @@ -63,8 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:22:54 GMT + - Thu, 15 Oct 2020 18:18:58 GMT expires: - '-1' pragma: @@ -118,15 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:22: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":"2020-10-15T18:18:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:22:54 GMT + - Thu, 15 Oct 2020 18:18:58 GMT expires: - '-1' pragma: @@ -168,8 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":18821,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18821","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14441,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14441","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, 13 Oct 2020 17:23:09 GMT + - Thu, 15 Oct 2020 18:19:12 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":18821,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18821","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14441,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14441","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, 13 Oct 2020 17:23:09 GMT + - Thu, 15 Oct 2020 18:19:13 GMT expires: - '-1' pragma: @@ -285,8 +285,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:09 GMT + - Thu, 15 Oct 2020 18:19:14 GMT expires: - '-1' pragma: @@ -340,8 +340,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":18821,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18821","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14441,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14441","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, 13 Oct 2020 17:23:11 GMT + - Thu, 15 Oct 2020 18:19:14 GMT expires: - '-1' pragma: @@ -399,8 +399,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -416,7 +416,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:11 GMT + - Thu, 15 Oct 2020 18:19:14 GMT expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: - request: body: '{"location": "Japan West", "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": "10.14"}], + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: @@ -454,14 +454,14 @@ interactions: Connection: - keep-alive Content-Length: - - '543' + - '545' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -469,20 +469,20 @@ 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":"Japan - West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:18.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T18:19:22.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5868' + - '5889' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:37 GMT + - Thu, 15 Oct 2020 18:19:41 GMT etag: - - '"1D6A1858B6A5955"' + - '"1D6A31FB5598C2B"' expires: - '-1' pragma: @@ -520,8 +520,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -529,18 +529,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":"Japan - West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:23:19.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","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,"migrationState":null}}' + West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T18:19:23.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5668' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:37 GMT + - Thu, 15 Oct 2020 18:19:42 GMT etag: - - '"1D6A1858B6A5955"' + - '"1D6A31FB5598C2B"' expires: - '-1' pragma: @@ -581,8 +581,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -601,9 +601,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:39 GMT + - Thu, 15 Oct 2020 18:19:44 GMT etag: - - '"1D6A1858B6A5955"' + - '"1D6A31FB5598C2B"' expires: - '-1' pragma: @@ -621,7 +621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -641,24 +641,24 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"panchagnula","publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + 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: - - '267' + - '258' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:39 GMT + - Thu, 15 Oct 2020 18:19:44 GMT expires: - '-1' pragma: @@ -694,8 +694,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -712,9 +712,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:41 GMT + - Thu, 15 Oct 2020 18:19:45 GMT etag: - - '"1D6A185978568B5"' + - '"1D6A31FC19012CB"' expires: - '-1' pragma: @@ -754,8 +754,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -764,17 +764,17 @@ interactions: body: string: @@ -786,7 +786,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:23:44 GMT + - Thu, 15 Oct 2020 18:19:47 GMT expires: - '-1' pragma: @@ -822,8 +822,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -831,16 +831,16 @@ interactions: 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":"Japan - West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' + West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1"}}' headers: cache-control: - no-cache content-length: - - '360' + - '362' content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:45 GMT + - Thu, 15 Oct 2020 18:19:49 GMT expires: - '-1' pragma: @@ -878,8 +878,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -896,7 +896,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:23:46 GMT + - Thu, 15 Oct 2020 18:19:50 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 a0957d3f5e3..0a864ecb3e4 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 @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:23: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-10-15T20:51:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:24:00 GMT + - Thu, 15 Oct 2020 20:51:11 GMT expires: - '-1' pragma: @@ -63,8 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:24:00 GMT + - Thu, 15 Oct 2020 20:51:12 GMT expires: - '-1' pragma: @@ -118,15 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-13T17:23: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-10-15T20:51:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:23:59 GMT + - Thu, 15 Oct 2020 20:51:12 GMT expires: - '-1' pragma: @@ -168,8 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":14301,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14444,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14444","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, 13 Oct 2020 17:24:12 GMT + - Thu, 15 Oct 2020 20:51:24 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -225,8 +225,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":14301,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14444,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14444","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, 13 Oct 2020 17:24:13 GMT + - Thu, 15 Oct 2020 20:51:26 GMT expires: - '-1' pragma: @@ -285,8 +285,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:24:13 GMT + - Thu, 15 Oct 2020 20:51:26 GMT expires: - '-1' pragma: @@ -340,8 +340,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - West","properties":{"serverFarmId":14301,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":14444,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14444","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, 13 Oct 2020 17:24:15 GMT + - Thu, 15 Oct 2020 20:51:27 GMT expires: - '-1' pragma: @@ -399,8 +399,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -416,7 +416,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:24:15 GMT + - Thu, 15 Oct 2020 20:51:28 GMT expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: - request: body: '{"location": "Japan West", "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": "10.14"}], + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: @@ -454,14 +454,14 @@ interactions: Connection: - keep-alive Content-Length: - - '543' + - '545' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -469,9 +469,9 @@ 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":"Japan - West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:24:22.57","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:51:32.93","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache @@ -480,9 +480,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:24:41 GMT + - Thu, 15 Oct 2020 20:51:51 GMT etag: - - '"1D6A185B17EAE40"' + - '"1D6A334F791DC4B"' expires: - '-1' pragma: @@ -506,6 +506,126 @@ interactions: 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-source-url -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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/config/metadata/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-cd000002/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '316' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:51: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: '{"kind": "app", "properties": {"CURRENT_STACK": "node"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '56' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-source-url -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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/config/metadata?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/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"CURRENT_STACK":"node"}}' + headers: + cache-control: + - no-cache + content-length: + - '338' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 20:51:52 GMT + etag: + - '"1D6A33502897A4B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: @@ -520,8 +640,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -529,18 +649,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":"Japan - West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-13T17:24:23.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' + West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/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-10-15T20:51:52.5166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","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,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5689' + - '5694' content-type: - application/json date: - - Tue, 13 Oct 2020 17:24:41 GMT + - Thu, 15 Oct 2020 20:51:53 GMT etag: - - '"1D6A185B17EAE40"' + - '"1D6A33502897A4B"' expires: - '-1' pragma: @@ -581,8 +701,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -599,9 +719,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:24:52 GMT + - Thu, 15 Oct 2020 20:52:01 GMT etag: - - '"1D6A185C294DDEB"' + - '"1D6A335081B2840"' expires: - '-1' pragma: @@ -615,7 +735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -635,15 +755,15 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - 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":"2020-10-13T17:25:20.5912377 - https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-13_17-25-04Z"}}' + 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":"2020-10-15T20:52:28.1451487 + https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-15_20-52-17Z"}}' headers: cache-control: - no-cache @@ -652,9 +772,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:25:23 GMT + - Thu, 15 Oct 2020 20:52:40 GMT etag: - - '"1D6A185C294DDEB"' + - '"1D6A335081B2840"' expires: - '-1' pragma: @@ -690,15 +810,15 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"Japan - 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":"2020-10-13T17:25:54.9398597 - https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-13_17-25-04Z"}}' + 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":"2020-10-15T20:53:02.2802646 + https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-10-15_20-52-17Z"}}' headers: cache-control: - no-cache @@ -707,9 +827,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:25:55 GMT + - Thu, 15 Oct 2020 20:53:10 GMT etag: - - '"1D6A185C294DDEB"' + - '"1D6A335081B2840"' expires: - '-1' pragma: @@ -745,8 +865,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -761,9 +881,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:26:25 GMT + - Thu, 15 Oct 2020 20:53:40 GMT etag: - - '"1D6A185C294DDEB"' + - '"1D6A335081B2840"' expires: - '-1' pragma: @@ -803,8 +923,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -813,19 +933,19 @@ interactions: body: string: @@ -837,7 +957,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:26:26 GMT + - Thu, 15 Oct 2020 20:53:43 GMT expires: - '-1' pragma: @@ -879,13 +999,13 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Tue, 13 Oct 2020 17:27:03 GMT + - Thu, 15 Oct 2020 20:54:18 GMT etag: - W/"1f-5wgfifX1chdI4CmMe+Iov0qAB9Q" server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=801dcea84801119dfe0a0198d0d0a04dd3c698f312730808e7b1551de2ad661f;Path=/;HttpOnly;Domain=webapp-quick-cddiaq2fv2e.azurewebsites.net + - ARRAffinity=08e31a4953421e4acc8f85a9de4c15a37fb2c04b2d4bea64f09dfa61db9f7085;Path=/;HttpOnly;Domain=webapp-quick-cdcpojmwg5h.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 70327ba344c..f8b82b4f1ae 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 @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-10-13T17:27:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T19:00:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:27:10 GMT + - Thu, 15 Oct 2020 19:00:45 GMT expires: - '-1' pragma: @@ -63,8 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:11 GMT + - Thu, 15 Oct 2020 19:00:46 GMT expires: - '-1' pragma: @@ -118,15 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-10-13T17:27:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T19:00:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Oct 2020 17:27:10 GMT + - Thu, 15 Oct 2020 19:00:46 GMT expires: - '-1' pragma: @@ -168,8 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan - West","properties":{"serverFarmId":14305,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18926,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18926","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, 13 Oct 2020 17:27:22 GMT + - Thu, 15 Oct 2020 19:01:00 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: @@ -225,8 +225,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan - West","properties":{"serverFarmId":14305,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18926,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18926","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, 13 Oct 2020 17:27:24 GMT + - Thu, 15 Oct 2020 19:01:02 GMT expires: - '-1' pragma: @@ -285,8 +285,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:24 GMT + - Thu, 15 Oct 2020 19:01:02 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: @@ -340,8 +340,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan - West","properties":{"serverFarmId":14305,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","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":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18926,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18926","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, 13 Oct 2020 17:27:25 GMT + - Thu, 15 Oct 2020 19:01:03 GMT expires: - '-1' pragma: @@ -399,8 +399,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -416,7 +416,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:25 GMT + - Thu, 15 Oct 2020 19:01:03 GMT expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: - request: body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: @@ -454,14 +454,14 @@ interactions: Connection: - keep-alive Content-Length: - - '492' + - '494' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -469,20 +469,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/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/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:27:32.0033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/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/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T19:01:10.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5639' + - '5613' content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:51 GMT + - Thu, 15 Oct 2020 19:01:28 GMT etag: - - '"1D6A186226CFFEB"' + - '"1D6A3258BFD6A8B"' expires: - '-1' pragma: @@ -506,6 +506,126 @@ interactions: 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-local-git -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002/config/metadata/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '265' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 19:01: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-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "app", "properties": {"CURRENT_STACK": "node"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '56' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-local-git -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002/config/metadata?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"CURRENT_STACK":"node"}}' + headers: + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 19:01:30 GMT + etag: + - '"1D6A3259761E120"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: @@ -520,8 +640,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -529,18 +649,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/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/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:27:32.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/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/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T19:01:30.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5439' + - '5408' content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:52 GMT + - Thu, 15 Oct 2020 19:01:31 GMT etag: - - '"1D6A186226CFFEB"' + - '"1D6A3259761E120"' expires: - '-1' pragma: @@ -581,8 +701,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -601,9 +721,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:54 GMT + - Thu, 15 Oct 2020 19:01:33 GMT etag: - - '"1D6A186226CFFEB"' + - '"1D6A3259761E120"' expires: - '-1' pragma: @@ -641,24 +761,24 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"panchagnula","publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + 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: - - '267' + - '258' content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:54 GMT + - Thu, 15 Oct 2020 19:01:33 GMT expires: - '-1' pragma: @@ -694,8 +814,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -712,9 +832,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:54 GMT + - Thu, 15 Oct 2020 19:01:33 GMT etag: - - '"1D6A1862EE193F5"' + - '"1D6A325990787D5"' expires: - '-1' pragma: @@ -754,8 +874,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -764,17 +884,17 @@ interactions: body: string: @@ -786,7 +906,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:27:56 GMT + - Thu, 15 Oct 2020 19:01:35 GMT expires: - '-1' pragma: @@ -822,8 +942,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -831,16 +951,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' + West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1"}}' headers: cache-control: - no-cache content-length: - - '309' + - '311' content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:58 GMT + - Thu, 15 Oct 2020 19:01:36 GMT expires: - '-1' pragma: @@ -858,7 +978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11996' x-powered-by: - ASP.NET status: @@ -878,8 +998,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -896,7 +1016,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:58 GMT + - Thu, 15 Oct 2020 19:01:37 GMT expires: - '-1' pragma: @@ -932,8 +1052,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -941,8 +1061,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan - West","properties":{"serverFarmId":14305,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18926,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18926","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 @@ -951,7 +1071,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:59 GMT + - Thu, 15 Oct 2020 19:01:38 GMT expires: - '-1' pragma: @@ -992,8 +1112,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1009,7 +1129,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:27:59 GMT + - Thu, 15 Oct 2020 19:01:38 GMT expires: - '-1' pragma: @@ -1027,7 +1147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1047,8 +1167,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1056,8 +1176,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan - West","properties":{"serverFarmId":14305,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_14305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":18926,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18926","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 @@ -1066,7 +1186,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:01 GMT + - Thu, 15 Oct 2020 19:01:40 GMT expires: - '-1' pragma: @@ -1106,8 +1226,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1123,7 +1243,7 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:01 GMT + - Thu, 15 Oct 2020 19:01:40 GMT expires: - '-1' pragma: @@ -1148,9 +1268,8 @@ interactions: - request: body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004", "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, - "httpsOnly": false}}' + "v4.6", "appSettings": [], "localMySqlEnabled": false, "http20Enabled": true}, + "scmSiteAlsoStopped": false, "httpsOnly": false}}' headers: Accept: - application/json @@ -1161,14 +1280,14 @@ interactions: Connection: - keep-alive Content-Length: - - '492' + - '434' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1176,20 +1295,78 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003","name":"webapp-quick000003","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"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-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:28:07.0233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"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-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T19:01:48.44","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5639' + - '5608' content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:26 GMT + - Thu, 15 Oct 2020 19:02:06 GMT etag: - - '"1D6A186372576A0"' + - '"1D6A325A2AA5E40"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --plan --deployment-local-git -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003/config/metadata/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '265' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 19:02:07 GMT expires: - '-1' pragma: @@ -1207,7 +1384,69 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "app", "properties": {"CURRENT_STACK": "dotnetcore"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-local-git -r + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003/config/metadata?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"CURRENT_STACK":"dotnetcore"}}' + headers: + cache-control: + - no-cache + content-length: + - '293' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 19:02:07 GMT + etag: + - '"1D6A325ADDAF395"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: @@ -1227,8 +1466,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1236,18 +1475,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003","name":"webapp-quick000003","type":"Microsoft.Web/sites","kind":"app","location":"Japan - West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"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-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-13T17:28:07.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"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-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T19:02:07.9933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5434' + - '5413' content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:26 GMT + - Thu, 15 Oct 2020 19:02:08 GMT etag: - - '"1D6A186372576A0"' + - '"1D6A325ADDAF395"' expires: - '-1' pragma: @@ -1288,8 +1527,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1308,9 +1547,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:28 GMT + - Thu, 15 Oct 2020 19:02:10 GMT etag: - - '"1D6A186372576A0"' + - '"1D6A325ADDAF395"' expires: - '-1' pragma: @@ -1348,24 +1587,24 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 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":"panchagnula","publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + 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: - - '267' + - '258' content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:28 GMT + - Thu, 15 Oct 2020 19:02:10 GMT expires: - '-1' pragma: @@ -1401,8 +1640,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1419,9 +1658,9 @@ interactions: content-type: - application/json date: - - Tue, 13 Oct 2020 17:28:29 GMT + - Thu, 15 Oct 2020 19:02:11 GMT etag: - - '"1D6A18643A53B40"' + - '"1D6A325AF725C75"' expires: - '-1' pragma: @@ -1461,8 +1700,8 @@ interactions: ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - - python/3.6.4 (Darwin-19.6.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.12.1 + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1471,17 +1710,17 @@ interactions: body: string: @@ -1493,7 +1732,7 @@ interactions: content-type: - application/xml date: - - Tue, 13 Oct 2020 17:28:30 GMT + - Thu, 15 Oct 2020 19:02:12 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 2ab3c0e9701..1e81d193f74 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 @@ -142,7 +142,7 @@ def test_win_webapp_quick_create(self, resource_group): self.assertTrue(r['ftpPublishingUrl'].startswith('ftp://')) self.cmd('webapp config appsettings list -g {} -n {}'.format(resource_group, webapp_name), checks=[ JMESPathCheck('[0].name', 'WEBSITE_NODE_DEFAULT_VERSION'), - JMESPathCheck('[0].value', '10.14'), + JMESPathCheck('[0].value', '10.14.1'), ]) @ResourceGroupPreparer(name_prefix="clitest", random_name_length=24, location=WINDOWS_ASP_LOCATION_WEBAPP) @@ -156,7 +156,7 @@ def test_win_webapp_quick_create_runtime(self, resource_group): self.assertTrue(r['ftpPublishingUrl'].startswith('ftp://')) self.cmd('webapp config appsettings list -g {} -n {}'.format(resource_group, webapp_name), checks=[ JMESPathCheck('[0].name', 'WEBSITE_NODE_DEFAULT_VERSION'), - JMESPathCheck('[0].value', '10.14'), + JMESPathCheck('[0].value', '10.14.1'), ]) r = self.cmd('webapp create -g {} -n {} --plan {} --deployment-local-git -r "DOTNETCORE|3.1"'.format( resource_group, webapp_name_2, plan)).get_output_in_json() diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py index dfe50b88c44..06130e9d4fa 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py @@ -409,7 +409,6 @@ def test_webapp_up_name_exists_in_subscription(self, resource_group): import shutil shutil.rmtree(temp_dir) - @live_only() @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) def test_webapp_up_choose_os(self, resource_group): From d263161e9d91a7291bd3f08d514173c6a7926c1a Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Mon, 19 Oct 2020 17:02:56 -0700 Subject: [PATCH 6/7] Added more test cases, added PHP 7.4 runtime --- .../cli/command_modules/appservice/custom.py | 8 +- .../resources/WebappRuntimeStacks.json | 7 + .../tests/latest/node-Express-up-windows.zip | Bin 0 -> 71655 bytes .../test_linux_to_windows_fail.yaml | 2968 +++++++++++++++++ .../test_webapp_up_choose_os_and_runtime.yaml | 860 ++--- .../test_windows_to_linux_fail.yaml | 2922 ++++++++++++++++ .../tests/latest/test_webapp_up_commands.py | 188 +- 7 files changed, 6352 insertions(+), 601 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/node-Express-up-windows.zip create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_to_windows_fail.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml 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 ec0367efc1f..047510edc70 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -3132,8 +3132,8 @@ def _check_zip_deployment_status(cmd, rg_name, name, deployment_status_url, auth if res_dict.get('status', 0) == 3: _configure_default_logging(cmd, rg_name, name) - raise CLIError("""Zip deployment failed. {}. Please run the command az webapp log deployment show - -n {} -g {}""".format(res_dict, name, rg_name)) + raise CLIError("Zip deployment failed. {}. Please run the command az webapp log deployment show " + "-n {} -g {}".format(res_dict, name, rg_name)) if res_dict.get('status', 0) == 4: break if 'progress' in res_dict: @@ -3684,10 +3684,14 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku logger.warning('Updating runtime version from %s to %s', site_config.linux_fx_version, runtime_version) update_site_configs(cmd, rg_name, name, linux_fx_version=runtime_version) + logger.warning('Waiting for runtime version to propagate ...') + time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. Currently there is no way to poll for this elif os_name.lower() == 'windows' and site_config.windows_fx_version != runtime_version: logger.warning('Updating runtime version from %s to %s', site_config.windows_fx_version, runtime_version) update_site_configs(cmd, rg_name, name, windows_fx_version=runtime_version) + logger.warning('Waiting for runtime version to propagate ...') + time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. Currently there is no way to poll for this create_json['runtime_version'] = runtime_version # Zip contents & Deploy logger.warning("Creating zip with contents of dir %s ...", src_dir) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json b/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json index aaa2a60b521..3ed1c60c47a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json +++ b/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json @@ -56,6 +56,12 @@ "php_version": "7.3" } }, + { + "displayName": "php|7.4", + "configs": { + "php_version": "7.4" + } + }, { "displayName": "python|3.6", "configs": { @@ -160,6 +166,7 @@ {"displayName": "JBOSSEAP|7.2-java8"}, {"displayName": "PHP|7.2"}, {"displayName": "PHP|7.3"}, + {"displayName": "PHP|7.4"}, {"displayName": "PYTHON|3.8"}, {"displayName": "PYTHON|3.7"}, {"displayName": "PYTHON|3.6"}, diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/node-Express-up-windows.zip b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/node-Express-up-windows.zip new file mode 100644 index 0000000000000000000000000000000000000000..038d691d292c8f628c22a32f8c97b3378bfc1346 GIT binary patch literal 71655 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 Mg@M83CG^+-0mz)#c>n+a literal 0 HcmV?d00001 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_to_windows_fail.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_to_windows_fail.yaml new file mode 100644 index 00000000000..7851b6c3e08 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_to_windows_fail.yaml @@ -0,0 +1,2968 @@ +interactions: +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 21:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 21:32:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:32: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: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East + Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East + Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North + Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North + Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa West","description":null,"sortOrder":2147483647,"displayName":"South + Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany + West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany + West Central","description":null,"sortOrder":2147483647,"displayName":"Germany + West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + West","description":null,"sortOrder":2147483647,"displayName":"Switzerland + West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE + North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE + North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway + East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway + East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil + Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil + Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17003' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 21:32:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:32: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 21:32:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:32: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23733,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-023_23733","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: + - '1387' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23733,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-023_23733","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: + - '1387' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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: '{"name": "up-nodeapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", + "value": "True"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '542' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:24.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5635' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32:40 GMT + etag: + - '"1D6A65F55E43C95"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Mon, 19 Oct 2020 21:32: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:24.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5440' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32:41 GMT + etag: + - '"1D6A65F55E43C95"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32:43 GMT + etag: + - '"1D6A65F6127216B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"iv9T9Q2x6TbdRGKRFP9QlwQ8iuDWMmHLYrwlE0gj5kWkPAysbQ1G7kCQQaek","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:iv9T9Q2x6TbdRGKRFP9QlwQ8iuDWMmHLYrwlE0gj5kWkPAysbQ1G7kCQQaek@up-nodeapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:43.6066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5440' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:32:44 GMT + etag: + - '"1D6A65F6127216B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Mon, 19 Oct 2020 21:32: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-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!binary | + 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 + CwALAJYCAADQLgAAAAA= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '12668' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Mon, 19 Oct 2020 21:33:41 GMT + location: + - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-19_21-33-41Z + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:33:45 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:33:48 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:33:52 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:33:54 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:33:57 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:00 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:02 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:06 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:08 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:12 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:15 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:18 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:21 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:24 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:27 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:30 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:32 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:35 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '534' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:38 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":1,"status_text":"Building + and Deploying ''0ac4a3a9b018409b9740fa480db9e059''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Deployment successful.","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","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":"up-nodeapp000003"}' + headers: + content-length: + - '535' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:41 GMT + location: + - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"0ac4a3a9b018409b9740fa480db9e059","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-19T21:33:43.5423646Z","start_time":"2020-10-19T21:33:43.933643Z","end_time":"2020-10-19T21:34:42.4993106Z","last_success_end_time":"2020-10-19T21:34:42.4993106Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003"}' + headers: + content-length: + - '659' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:44 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:43.6066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5440' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:34:45 GMT + etag: + - '"1D6A65F6127216B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:43.6066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5440' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:34:45 GMT + etag: + - '"1D6A65F6127216B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.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":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:43.6066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5440' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:34:45 GMT + etag: + - '"1D6A65F6127216B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Mon, 19 Oct 2020 21:34: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-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"Hostname + ''up-nodeapp000003'' already exists. Please select a different name."}' + headers: + cache-control: + - no-cache + content-length: + - '144' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:34: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjbwqotnoveq2do/providers/Microsoft.Web/sites/web-msiklix37hgr6ls7","name":"web-msiklix37hgr6ls7","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"web-msiklix37hgr6ls7","state":"Running","hostNames":["web-msiklix37hgr6ls7.azurewebsites.net"],"webSpace":"clitest.rgjbwqotnoveq2do-WestUSwebspace","selfLink":"https://waws-prod-bay-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgjbwqotnoveq2do-WestUSwebspace/sites/web-msiklix37hgr6ls7","repositorySiteName":"web-msiklix37hgr6ls7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msiklix37hgr6ls7.azurewebsites.net","web-msiklix37hgr6ls7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"web-msiklix37hgr6ls7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msiklix37hgr6ls7.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.rgjbwqotnoveq2do/providers/Microsoft.Web/serverfarms/web-msi-planenuynfg6","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T23:01:01.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"web-msiklix37hgr6ls7","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.42.231.5","possibleInboundIpAddresses":"104.42.231.5,40.112.243.21","ftpUsername":"web-msiklix37hgr6ls7\\$web-msiklix37hgr6ls7","ftpsHostName":"ftps://waws-prod-bay-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.42.225.41,104.42.224.45,104.42.225.216,104.42.230.71","possibleOutboundIpAddresses":"104.42.225.41,104.42.224.45,104.42.225.216,104.42.230.71,104.42.222.120,104.42.222.245,104.42.220.176,104.42.221.41,23.100.37.159,104.42.231.5,40.112.243.21","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgjbwqotnoveq2do","defaultHostName":"web-msiklix37hgr6ls7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-gh-action/providers/Microsoft.Web/sites/node-windows-gha","name":"node-windows-gha","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"node-windows-gha","state":"Running","hostNames":["node-windows-gha.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/node-windows-gha","repositorySiteName":"node-windows-gha","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha.azurewebsites.net","node-windows-gha.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"node-windows-gha.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-17T08:46:47.42","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"node-windows-gha","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"node-windows-gha\\$node-windows-gha","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-gh-action","defaultHostName":"node-windows-gha.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf200","name":"asdfsdf200","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf200","state":"Running","hostNames":["asdfsdf200.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf200","repositorySiteName":"asdfsdf200","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf200.azurewebsites.net","asdfsdf200.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"-"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf200.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf200.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-16T18:26:27.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf200","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf200\\$asdfsdf200","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf200.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf172","name":"asdfsdf172","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf172","state":"Running","hostNames":["asdfsdf172.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf172","repositorySiteName":"asdfsdf172","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf172.azurewebsites.net","asdfsdf172.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf172.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf172.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-16T19:14:36.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf172","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf172\\$asdfsdf172","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf172.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf173","name":"asdfsdf173","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf173","state":"Running","hostNames":["asdfsdf173.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf173","repositorySiteName":"asdfsdf173","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf173.azurewebsites.net","asdfsdf173.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf173.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf173.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-16T19:08:06.3466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf173","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf173\\$asdfsdf173","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf173.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.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/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:32:43.6066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf210","name":"asdfsdf210","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf210","state":"Running","hostNames":["asdfsdf210.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf210","repositorySiteName":"asdfsdf210","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf210.azurewebsites.net","asdfsdf210.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf210.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf210.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T20:57:33.0766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf210","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf210\\$asdfsdf210","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf210.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf171","name":"asdfsdf171","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf171","state":"Running","hostNames":["asdfsdf171.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf171","repositorySiteName":"asdfsdf171","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf171.azurewebsites.net","asdfsdf171.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf171.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf171.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T23:39:08.6833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf171","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf171\\$asdfsdf171","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf171.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo/providers/Microsoft.Web/sites/webapp-quick-cd574qwrkqq","name":"webapp-quick-cd574qwrkqq","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-quick-cd574qwrkqq","state":"Running","hostNames":["webapp-quick-cd574qwrkqq.azurewebsites.net"],"webSpace":"clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo-JapanWestwebspace/sites/webapp-quick-cd574qwrkqq","repositorySiteName":"webapp-quick-cd574qwrkqq","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd574qwrkqq.azurewebsites.net","webapp-quick-cd574qwrkqq.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quick-cd574qwrkqq.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd574qwrkqq.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.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo/providers/Microsoft.Web/serverfarms/plan-quickb4ojocbac75dn3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T21:18:27.6366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd574qwrkqq","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd574qwrkqq\\$webapp-quick-cd574qwrkqq","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo","defaultHostName":"webapp-quick-cd574qwrkqq.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam/providers/Microsoft.Web/sites/webapp-win-log6hrh5b5vur","name":"webapp-win-log6hrh5b5vur","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log6hrh5b5vur","state":"Running","hostNames":["webapp-win-log6hrh5b5vur.azurewebsites.net"],"webSpace":"clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam-JapanWestwebspace/sites/webapp-win-log6hrh5b5vur","repositorySiteName":"webapp-win-log6hrh5b5vur","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log6hrh5b5vur.azurewebsites.net","webapp-win-log6hrh5b5vur.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log6hrh5b5vur.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log6hrh5b5vur.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.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam/providers/Microsoft.Web/serverfarms/win-log2k4ywxsnoihnlwkym","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T21:18:12.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log6hrh5b5vur","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log6hrh5b5vur\\$webapp-win-log6hrh5b5vur","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam","defaultHostName":"webapp-win-log6hrh5b5vur.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '286382' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 21:34:48 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: + - 72e04f2e-0841-4a98-b82f-5c4279208f5c + - ba211b80-33eb-4c59-ae13-50911c13daaf + - be0b0e83-3d9c-4ad2-9d8a-0021f1826aa4 + - 2716cfac-956e-4cda-8e10-233e51e37c71 + - b320d6c2-8584-4f63-94cd-058cfb6612b5 + - 766f8949-0419-4d35-9b3d-16f8f4a8214e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central + US","properties":{"serverFarmId":23733,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-023_23733","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: + - '1387' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 21:34: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml index e34d555ad58..e1259a6a78d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_choose_os_and_runtime.yaml @@ -18,7 +18,7 @@ interactions: - -n -g --plan --os --runtime --sku --dryrun User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -34,159 +34,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:09: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp up - Connection: - - keep-alive - ParameterSetName: - - -n -g --plan --os --runtime --sku --dryrun - User-Agent: - - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East - Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East - Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East - Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North - Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North - Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North - Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South - Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South - Africa West","description":null,"sortOrder":2147483647,"displayName":"South - Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany - West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany - West Central","description":null,"sortOrder":2147483647,"displayName":"Germany - West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland - West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland - West","description":null,"sortOrder":2147483647,"displayName":"Switzerland - West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE - Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE - Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE - North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE - North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway - East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway - East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil - Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil - Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil - Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '17003' - content-type: - - application/json - date: - - Thu, 15 Oct 2020 06:09:09 GMT + - Mon, 19 Oct 2020 22:22:47 GMT expires: - '-1' pragma: @@ -237,7 +85,7 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 06:09:09 GMT + - Mon, 19 Oct 2020 22:22:47 GMT expires: - '-1' pragma: @@ -264,7 +112,7 @@ interactions: - -n -g --plan --os --runtime --sku --dryrun User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -280,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:09:09 GMT + - Mon, 19 Oct 2020 22:22:48 GMT expires: - '-1' pragma: @@ -323,7 +171,7 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 06:09:09 GMT + - Mon, 19 Oct 2020 22:22:48 GMT expires: - '-1' pragma: @@ -350,7 +198,7 @@ interactions: - -n -g --plan --os --runtime --sku --dryrun User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -366,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:09:09 GMT + - Mon, 19 Oct 2020 22:22:48 GMT expires: - '-1' pragma: @@ -399,7 +247,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -415,159 +263,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:09: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 up - Connection: - - keep-alive - ParameterSetName: - - -n -g --plan --os --runtime --sku - User-Agent: - - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICLINUX"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East - Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East - Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East - Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North - Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North - Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North - Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"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","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXDYNAMIC"}},{"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","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC;LINUXV3"}},{"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","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","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"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;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;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"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South - Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South - Africa West","description":null,"sortOrder":2147483647,"displayName":"South - Africa West","orgDomain":"PUBLIC;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;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany - West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany - West Central","description":null,"sortOrder":2147483647,"displayName":"Germany - West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland - West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland - West","description":null,"sortOrder":2147483647,"displayName":"Switzerland - West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE - Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE - Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE - North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE - North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway - East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway - East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil - Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil - Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil - Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '17003' - content-type: - - application/json - date: - - Thu, 15 Oct 2020 06:09:10 GMT + - Mon, 19 Oct 2020 22:22:49 GMT expires: - '-1' pragma: @@ -618,7 +314,7 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 06:09:10 GMT + - Mon, 19 Oct 2020 22:22:49 GMT expires: - '-1' pragma: @@ -645,7 +341,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -661,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:09:10 GMT + - Mon, 19 Oct 2020 22:22:49 GMT expires: - '-1' pragma: @@ -704,7 +400,7 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 06:09:11 GMT + - Mon, 19 Oct 2020 22:22:50 GMT expires: - '-1' pragma: @@ -731,7 +427,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -747,7 +443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:09:11 GMT + - Mon, 19 Oct 2020 22:22:49 GMT expires: - '-1' pragma: @@ -782,25 +478,78 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central - US","properties":{"serverFarmId":27394,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_27394","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + 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: - - '1387' + - '141' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:23:52 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: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"centralus","properties":{"serverFarmId":21840,"name":"up-nodeplan000002","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":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-171_21840","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: + - '1429' content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:05 GMT + - Mon, 19 Oct 2020 22:23:56 GMT expires: - '-1' pragma: @@ -839,7 +588,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -847,8 +596,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central - US","properties":{"serverFarmId":27394,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_27394","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21840,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-171_21840","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 @@ -857,7 +606,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:06 GMT + - Mon, 19 Oct 2020 22:23:57 GMT expires: - '-1' pragma: @@ -898,7 +647,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -914,7 +663,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:06 GMT + - Mon, 19 Oct 2020 22:23:57 GMT expires: - '-1' pragma: @@ -959,7 +708,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -967,20 +716,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central - US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:10.1833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:24:02.78","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5671' + - '5654' content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:26 GMT + - Mon, 19 Oct 2020 22:24:18 GMT etag: - - '"1D6A2B9D69FFBAB"' + - '"1D6A6668CD43200"' expires: - '-1' pragma: @@ -1023,7 +772,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1032,17 +781,17 @@ interactions: body: string: @@ -1054,7 +803,7 @@ interactions: content-type: - application/xml date: - - Thu, 15 Oct 2020 06:10:27 GMT + - Mon, 19 Oct 2020 22:24:19 GMT expires: - '-1' pragma: @@ -1089,7 +838,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1097,18 +846,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central - US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:10.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:24:03.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5471' + - '5454' content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:27 GMT + - Mon, 19 Oct 2020 22:24:20 GMT etag: - - '"1D6A2B9D69FFBAB"' + - '"1D6A6668CD43200"' expires: - '-1' pragma: @@ -1150,7 +899,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1167,9 +916,9 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:29 GMT + - Mon, 19 Oct 2020 22:24:21 GMT etag: - - '"1D6A2B9E1799760"' + - '"1D6A66697FB1D60"' expires: - '-1' pragma: @@ -1210,7 +959,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1218,7 +967,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"ddDraqNAXR0nrrAssW1e7uF5tXRoq4tKG6bnpvGv7j8QFsrpqLkYnb3Zg5Cm","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:ddDraqNAXR0nrrAssW1e7uF5tXRoq4tKG6bnpvGv7j8QFsrpqLkYnb3Zg5Cm@up-nodeapp000003.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"haRBLEpuZ1wCjluCbudF5tLu3fEQfFlwwrvymDApcCxBDFz9YiRLwMEM6Mvg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:haRBLEpuZ1wCjluCbudF5tLu3fEQfFlwwrvymDApcCxBDFz9YiRLwMEM6Mvg@up-nodeapp000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1227,7 +976,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:30 GMT + - Mon, 19 Oct 2020 22:24:23 GMT expires: - '-1' pragma: @@ -1245,7 +994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1266,7 +1015,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1274,18 +1023,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central - US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:24:22.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5466' + - '5454' content-type: - application/json date: - - Thu, 15 Oct 2020 06:10:29 GMT + - Mon, 19 Oct 2020 22:24:23 GMT etag: - - '"1D6A2B9E1799760"' + - '"1D6A66697FB1D60"' expires: - '-1' pragma: @@ -1326,7 +1075,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -1335,17 +1084,17 @@ interactions: body: string: @@ -1357,7 +1106,7 @@ interactions: content-type: - application/xml date: - - Thu, 15 Oct 2020 06:10:30 GMT + - Mon, 19 Oct 2020 22:24:24 GMT expires: - '-1' pragma: @@ -1371,7 +1120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1379,7 +1128,7 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAIACG5TlHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s + UEsDBBQAAAAIANV6U1HSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0 iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc @@ -1388,7 +1137,7 @@ interactions: y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP 319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL - inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgAIblOUTHV79fVAQAAMgQAAAYA + inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgA1XpTUTHV79fVAQAAMgQAAAYA AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT @@ -1397,7 +1146,7 @@ interactions: iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc 6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/ /r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu - lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIACO5TlHrIP/GMSMAACN+AAARAAAAcGFja2Fn + lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIANZ6U1HrIP/GMSMAACN+AAARAAAAcGFja2Fn ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8 q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai @@ -1556,11 +1305,11 @@ interactions: V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9 Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn 8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d - m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgAI7lOUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N + m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgA1npTUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ 2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J - GfdO1uQLUEsDBBQAAAAIACG5TlHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc + GfdO1uQLUEsDBBQAAAAIANV6U1HOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf @@ -1573,34 +1322,34 @@ interactions: 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 CwALAJYCAADQLgAAAAA= headers: Accept: @@ -1626,13 +1375,13 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 06:11:09 GMT + - Mon, 19 Oct 2020 22:24:59 GMT location: - - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-11-09Z + - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-19_22-24-59Z server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net status: code: 202 message: Accepted @@ -1655,105 +1404,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"temp-771393bb","status":0,"status_text":"Receiving changes.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Deploying - from pushed zip file","progress":"Fetching changes.","received_time":"2020-10-15T06:11:09.1574065Z","start_time":"2020-10-15T06:11:09.1574065Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":true,"is_readonly":false,"url":null,"log_url":null,"site_name":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Preparing deployment for commit id ''23e9542023''.","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - - '473' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 06:11:13 GMT - location: - - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest - server: - - Kestrel - set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net - transfer-encoding: - - chunked - vary: - - Accept-Encoding - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Type: - - application/octet-stream - User-Agent: - - AZURECLI/2.13.0 - method: GET - uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment - response: - body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' - headers: - content-length: - - '535' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 06:11:16 GMT - location: - - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest - server: - - Kestrel - set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net - transfer-encoding: - - chunked - vary: - - Accept-Encoding - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Type: - - application/octet-stream - User-Agent: - - AZURECLI/2.13.0 - method: GET - uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment - response: - body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' - headers: - content-length: - - '535' + - '562' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:19 GMT + - Mon, 19 Oct 2020 22:25:02 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1780,22 +1446,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:22 GMT + - Mon, 19 Oct 2020 22:25:04 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1822,22 +1488,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:25 GMT + - Mon, 19 Oct 2020 22:25:07 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1864,22 +1530,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:28 GMT + - Mon, 19 Oct 2020 22:25:10 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1906,22 +1572,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:32 GMT + - Mon, 19 Oct 2020 22:25:14 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1948,22 +1614,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:35 GMT + - Mon, 19 Oct 2020 22:25:17 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1990,22 +1656,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:38 GMT + - Mon, 19 Oct 2020 22:25:19 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2032,22 +1698,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:40 GMT + - Mon, 19 Oct 2020 22:25:23 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2074,22 +1740,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:44 GMT + - Mon, 19 Oct 2020 22:25:25 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2116,22 +1782,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:47 GMT + - Mon, 19 Oct 2020 22:25:28 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2158,22 +1824,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:50 GMT + - Mon, 19 Oct 2020 22:25:31 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2200,22 +1866,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:52 GMT + - Mon, 19 Oct 2020 22:25:34 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2242,22 +1908,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:55 GMT + - Mon, 19 Oct 2020 22:25:37 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2284,22 +1950,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:11:59 GMT + - Mon, 19 Oct 2020 22:25:40 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2326,22 +1992,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:12:02 GMT + - Mon, 19 Oct 2020 22:25:42 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2368,22 +2034,22 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":1,"status_text":"Building - and Deploying ''5f5dd4a7cebd4826b9cfa98913804ad7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running oryx build...","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","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":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":1,"status_text":"Building + and Deploying ''23e9542023e844edb4b27255e3ffc269''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running oryx build...","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","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":"up-nodeapp000003"}' headers: content-length: - '535' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:12:05 GMT + - Mon, 19 Oct 2020 22:25:45 GMT location: - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2410,19 +2076,19 @@ interactions: uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"5f5dd4a7cebd4826b9cfa98913804ad7","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2020-10-15T06:11:12.5165182Z","start_time":"2020-10-15T06:11:12.7661806Z","end_time":"2020-10-15T06:12:05.6154671Z","last_success_end_time":"2020-10-15T06:12:05.6154671Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003"}' + string: '{"id":"23e9542023e844edb4b27255e3ffc269","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-10-19T22:25:02.3514955Z","start_time":"2020-10-19T22:25:02.5758797Z","end_time":"2020-10-19T22:25:46.7228568Z","last_success_end_time":"2020-10-19T22:25:46.7228568Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003"}' headers: content-length: - '660' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 06:12:07 GMT + - Mon, 19 Oct 2020 22:25:47 GMT server: - Kestrel set-cookie: - - ARRAffinity=2edd7a81e9cfccf7e4e5194a6874021aebbce5535444e5cac63534be3c83de6a;Path=/;HttpOnly;Domain=up-nodeappno6nw26h7ndwsa.scm.azurewebsites.net + - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -2445,7 +2111,7 @@ interactions: - -n -g --plan --os --runtime --sku User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2453,18 +2119,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central - US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:24:22.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5466' + - '5454' content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:07 GMT + - Mon, 19 Oct 2020 22:25:48 GMT etag: - - '"1D6A2B9E1799760"' + - '"1D6A66697FB1D60"' expires: - '-1' pragma: @@ -2499,7 +2165,7 @@ interactions: - keep-alive User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2507,18 +2173,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central - US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:24:22.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5466' + - '5454' content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:07 GMT + - Mon, 19 Oct 2020 22:25:49 GMT etag: - - '"1D6A2B9E1799760"' + - '"1D6A66697FB1D60"' expires: - '-1' pragma: @@ -2553,7 +2219,7 @@ interactions: - keep-alive User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2561,18 +2227,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central - US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T06:10:28.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:24:22.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' headers: cache-control: - no-cache content-length: - - '5466' + - '5454' content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:09 GMT + - Mon, 19 Oct 2020 22:25:50 GMT etag: - - '"1D6A2B9E1799760"' + - '"1D6A66697FB1D60"' expires: - '-1' pragma: @@ -2611,7 +2277,7 @@ interactions: - application/json; charset=utf-8 User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2620,17 +2286,17 @@ interactions: body: string: @@ -2642,7 +2308,7 @@ interactions: content-type: - application/xml date: - - Thu, 15 Oct 2020 06:12:09 GMT + - Mon, 19 Oct 2020 22:25:51 GMT expires: - '-1' pragma: @@ -2675,7 +2341,7 @@ interactions: - keep-alive User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2694,7 +2360,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:09 GMT + - Mon, 19 Oct 2020 22:25:52 GMT expires: - '-1' pragma: @@ -2731,7 +2397,7 @@ interactions: - '0' User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: POST @@ -2748,7 +2414,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:09 GMT + - Mon, 19 Oct 2020 22:25:52 GMT expires: - '-1' pragma: @@ -2785,7 +2451,7 @@ interactions: - keep-alive User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2802,7 +2468,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:10 GMT + - Mon, 19 Oct 2020 22:25:53 GMT expires: - '-1' pragma: @@ -2837,7 +2503,7 @@ interactions: - keep-alive User-Agent: - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2845,8 +2511,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central - US","properties":{"serverFarmId":27394,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_27394","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21840,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"linux","resourceGroup":"clitest000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-171_21840","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 @@ -2855,7 +2521,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Oct 2020 06:12:10 GMT + - Mon, 19 Oct 2020 22:25:54 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml new file mode 100644 index 00000000000..cd467fa876a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml @@ -0,0 +1,2922 @@ +interactions: +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 22:07:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:07: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 22:07:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku --dryrun + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:07: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: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 22:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:07: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: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 22:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:07: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: '{"location": "centralus", "properties": {"perSiteScaling": false, "isXenon": + false}, "sku": {"name": "S1", "tier": "STANDARD"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '127' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":61585,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-155_61585","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: + - '1384' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":61585,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-155_61585","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: + - '1384' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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: '{"name": "up-nodeapp000003", "type": "Site"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":true,"reason":"","message":""}' + headers: + cache-control: + - no-cache + content-length: + - '47' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}, + {"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", "value": "True"}], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '572' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:26.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":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":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5606' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07:43 GMT + etag: + - '"1D6A6643AFF6C4B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '265' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "app", "properties": {"CURRENT_STACK": "node"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '56' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"CURRENT_STACK":"node"}}' + headers: + cache-control: + - no-cache + content-length: + - '287' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07:44 GMT + etag: + - '"1D6A664457F0120"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Mon, 19 Oct 2020 22: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-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 up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:44.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5406' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07:45 GMT + etag: + - '"1D6A664457F0120"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb": + 100, "retentionInDays": 3, "enabled": true}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07:47 GMT + etag: + - '"1D6A664476CE16B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"4werrWbTBolaHu0pQ7ZdYKjR6w9yQnBr79q6bBHxbLS9czSXevMnav8v2u1K","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:4werrWbTBolaHu0pQ7ZdYKjR6w9yQnBr79q6bBHxbLS9czSXevMnav8v2u1K@up-nodeapp000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '723' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07: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: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:47.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5411' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:07:49 GMT + etag: + - '"1D6A664476CE16B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 up + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Mon, 19 Oct 2020 22:07: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: !!binary | + UEsDBBQAAAAIAN14U1E5KNWtCwAAAAkAAAArAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp + dC9DT01NSVRfRURJVE1TRwstSEksSVUw4QIAUEsDBBQAAAAIAN14U1FATGeXygAAADsBAAAjAAAA + bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9jb25maWdNkLtuwzAMRWfrKwyPKRJ1DpCtS7/B + 6EDLtExUD4OkA+Tvy1gImvHiHvEeaAyV8cd1jFsV0sqPpXIGvSML1dLf+k/XLZQw1xktLZAEXTcB + v6VUI6TEuOzbDIpijfJuhTxyovIr/yjFYoMBBF/QyHZbsR8qU6QymMzOydpVdZOr95F03adLqNkH + SHcq8v3li+mcW3OGoKYqF4vmihpWe/1hOuJXhFn86XqENiS+DfmTGyeGYvSQQRR5OP7hkLn1DXJd + Ro7P/Hau0e4PUEsDBBQAAAAIAN14U1E3iwcfPwAAAEkAAAAoAAAAbm9kZWpzLWRvY3MtaGVsbG8t + d29ybGQvLmdpdC9kZXNjcmlwdGlvbgvNy0vMTU1RKEotyC/OLMkvqrRWSE3JLFEoycgsVkjLzElV + UE9JLU4uyiwoyczPU1coyVcA6QDKpyJp0uMCAFBLAwQUAAAACADdeFNRhy7n2mYAAABuAAAAJwAA + AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvRkVUQ0hfSEVBRCXJMRKDIBAF0Nqcgs7KoIQE + SG2TY6x/MTATwZGN50+R1z54vjmLB68GxgUfRxjyuAdMPBoO7CZvg/VdtxxUkFS/UZN49KquKons + 7an1O0v6LlfUTYM+Zy7tNetSOQ7/GQiSa2mXH1BLAwQUAAAACADdeFNRK2lzpxkAAAAXAAAAIQAA + AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvSEVBRCtKTbNSKEpNK9bPSE1MKdbPTSwuSS3i + AgBQSwMEFAAAAAgA3XhTUT3zOwKpAQAAqQIAACIAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u + Z2l0L2luZGV4c/EMcmZgYGACYo74dvvLqjIMKTCaAQ4alyDYTOmBHk/Vlz9qW/j+jMu1qPomR7Xa + c7MZuPTSM0sy0/Pyi1JhKlHM0441wW4ey3xFdoHSQ64z381Q9S/QPn+U5eyh0mUM7D6ezq5+wa4w + c4D6wbRVcwgOd52d4yKl6fG+Q0ZG4o1fq+HdfT+rZ31j4AxydXTxddXLTWGA6Y/vWhch+WVvC3Zz + GF0STWuuzHj98Y7l7/Dok77/b+Zv553LwJGZl5JaoZdVDHRPF7uQ+IX6FhiN3RyGxDXHf9nfOxu+ + YsNS57yul8ebssxy9BkECxKTsxPTU3Vz8pOzgcbl50Hc5XnUAEbjcJeUwjJRbSsB2485r6Y8nGB4 + 6gaTj8dMBh6oeRCjEOFO2LzAX389ueruT+Tl8b3/cgp/Pf9rgy1GQPOK8pNTi4vRzYt0ugCjsZvH + xRarVBP/znXvzITfwit+2nAUL075U8jAVZ6apJecn5eWmQ5TGRLkCopWSQYLBQOu+Hnqc8qeff9W + zLK35sk1ngsTm1R+bozot111ek5N+Jb0CV+azL7zfp9SDABQSwMEFAAAAAgA3XhTUV0ylBwpAAAA + KQAAACYAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L09SSUdfSEVBRAXBSQEAIAgEwL9p + 0AWFOJz9IzgzLyAlpWWphMacbkGbvwwfBl9sI18fUEsDBBQAAAAIAN14U1GFT/gJFwEAAN4BAAA4 + AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9hcHBseXBhdGNoLW1zZy5zYW1w + bGVVkF1OAzEMhN9zCpOuKhCkFa9ISHAHLpBuvZuo+VPspS2Iu+O0bFtex+Nvxl7crTc+rcmphVrA + ewI82FgCgst5B9RXXxg4Q++w3wE7hD7H6BlCHiEikR0R2O4wweYoBFtKOBbLvYOh5ghWiCZaH2bz + 6hT04eYEl6ewlVRB7j07SDmZL6wZiC1PBHZgrOCJJp9GwZ0zai7VW8ZLBT9AI9jE1OoS53LTdgXX + RE8NEULe47ZZcSuLN4fNxMGHuayYkt3IU9h5OlGeoIoU/5RmbSh9vd5EGvVKqRWMng05Q8hTUecM + mb3q7l4mgvk0xVZCMKY5ZdmdEmh99jbQg1aMxGAOoLsLQsNyKY/D/r/YfT8/6u5N/6gX9QtQSwME + FAAAAAgA3XhTUen4yhD3AQAAgAMAADQAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hv + b2tzL2NvbW1pdC1tc2cuc2FtcGxlfZJfb9MwFMWfm09xSCvSVk2j8oi0SoMi2AuTWPdE6eQmN4m1 + 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 + mQNEmjV2UjuOgZRjijU0sZwMkySRTCS+ascqI8KYGS6ArJReGPuVT+vHfjj+5KNupvWKDHNVU0dt + Zr5yr1FrBm0RyuiskeVi5RL3RsDo32DTej23EDVq0SplTM3Q0SwGq787njsFSsGPJFwCFuHtiUib + aTUpGjJJGiYK5loMBLlIrOIVUKtmX6hSuQCL/v493vDrF1BLAwQUAAAACADdeFNRhJfpgboBAAB7 + BgAAPAAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvbG9ncy9yZWZzL3JlbW90ZXMvb3Jp + Z2luL21hc3RlcpWTW2odMQyGn5tVzAZSJFm2pVBKISuRJbkJnJyEXFq6+zqljydhxk9jGPg//xeA + fWfz0cA68ExKcSlGVEYnHYPEOQWjDFax7dZOv+7P2+2dnbdv/u/id3z+8fPB7k9f/fHh+4YNSBER + eLuGDvDl7SnsNbfxZ3t6e7m72q2V2bLPoW1YMM/1WbWwaImGjOjkCUKNd0PRO9V/qKe30+lmm/by + ej0fn3/bc1zt1rNZ0ypXMEibA1sLI27W19Osr0tKa4J4BIzgslu7tXAKLfuaT5BSadKU4DpCm2rO + 0bGUitjHASgiuQy1WyvBO4SOGQmaQhFJhMU7zbo85qKdW+fYD0XK/EmEe/Xa+gtFYUCN4M7T6iSP + cB8KRoUoyDj1CFjFy27t1sJCiR2H+7QJXjEaRy0CljhKwsDK5nmg8AXaB73arVXXQnttawrDs7ek + 5s29MztqTFJfLaRucABKuX0c4W498WVmRJsUIxPVptbQFf+oIGscq5CScsQtxs+6tVtv9lFq1JBQ + FyhZJmXWkvo+WptcuBVcyR8Bq/VyjLu1XKJ09rYsdOoqaylk4lUdAyg0OgorywEoJv3Yrb9QSwME + FAAAAAgA3XhTURjM6OyhAAAAnAAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i + amVjdHMvMDEvMDRkYjY4MjJhMGRkZmJmNTAzZTZjZjRjZDJjM2MyMjlkMThiMTkBnABj/3gBnY5b + CsIwEEX9ziqyASWZxDxAROhKZiYTW+iLkrp+g0vw81w4l8PbskxNA7hLO0R0KTEzmEzBx+qDY8tw + x5Kw2ixkY605WaKodjxkbZopGIzGVwFJnBz2J4qQiSCxl2SLI58TKjzbuB16wPkzrXoYcdUP/gGP + fn29F5zmG2/LU9tgIPcEyPpqojGqr72xyX+2OveCTdQXcUNGelBLAwQUAAAACADdeFNRC/7mbLkA + AAC0AAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8wNi83Y2UyNWQw + NjY1NWNkMjY5MDhjMzZjMDc1ZDY1ZmNlYjg0NDkyZgG0AEv/eAGVjkFqwzAQRbv2KeYCKSPJkjJQ + SoJXgWxzAEkzTkxsKyhyDDl9TG/Q1X88ePBTnqahgjb+qxYR6FthbyhS8DbaqI0zYgyrZKQnL9bF + lozzsXmEInOFPUbNmLR12nNqiVCEKXLPKLhXimQDbbkJS73lAl0YX8MMP+lv062dD9cpDON3ytMv + KIealFVKwQ49YrPZ7V6Vf4fN5cGhCqy53Psxr7A8h/kKx/dSBLrz6QNF20vfUEsDBBQAAAAIAN14 + U1HQyTGGPgEAADkBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzBi + L2FhZGY1ZDQ4YjJjMjZmZmE3Yzg4MTAwMTBhMmIwODgwZjZhY2FkATkBxv54ASspSk1VMDYxZjAx + AAIFvfTMkozSJAaN57mbI0O/5AnpVJzfVen58c7yGC5DAwMzExOwksz0vPyiVIZAj6fqyx+1LXx/ + xuVaVH2To1rtudlQVT6ezq5+wa4MiuwCpYdcZ76boepfoH3+KMvZQ6XLoEqCXB1dfF31clMY5rhI + aXq875CRkXjj12p4d9/P6lnfoIoy81JSK/Syihl+SZXF6/5YKrdPwlSSO1j9qavT7QNQNQWJydmJ + 6am6OfnJ2UCl+XkMa47/sr93NnzFhqXOeV0vjzdlmeXooyqGqFNYJqptJWD7MefVlIcTDE/dYPLx + mAlTV5SfnFpcDFH3668nV939ibw8vvdfTuGv539tsMUIqq48NUkvOT8vLTOdIVapJv6d696ZCb+F + V/y04ShenPKnEAD+yoitUEsDBBQAAAAIAN14U1ETeMQfrgAAAKkAAABOAAAAbm9kZWpzLWRvY3Mt + aGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzEzLzJlMTcxYmNjZmFmMGM1MWQ2NGQ1MzgwYWUxYjNl + MGIxNTRhY2U0AakAVv94AZ2OUYoCMQxA/e4pcgElZjqtgWURvMHeIJOmTsG2y2z1/Dt4BD/fgwdP + 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 + /VUJWtfARdTAiipnFOusTPNdxspXWONsyfE7YPg1ILDkEEhvcIzi7AYKKtItopM1y5k8JBFsw2QZ + sDdcAIGKCMnSXU4EVDtR8ZqijAyhS1ZuBDLRgpbyGZmxBvQNX6DekjwPdBGP7NCJCFoh5dVBsNet + hC3PM4rFNUWFZJ3ThQ4NpjlhRQIZKchrUCmAI9LiM7QuSmG/paEceAk+qWS8DJZSXkqBrwk6FvJz + fM9qmgARrA7hbAQvFrMhYpxCFgTC2ZIuSCH+GNjnlrAlBLjDAO6aIKMkRzxcWflp9z7w8AfO2WoD + UEsDBBQAAAAIAN14U1F8IHppTQAAAEgAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp + dC9vYmplY3RzLzIxL2RhYzM1NWJiMzdkOGEwYmUyMDQ5ODVmNzE5MmUwZGMyYzMwYTRmAUgAt/94 + ASspSk1VMDVlMDQwMDMxUchNLC5JLdLNy09J1S3PzEvJLy/WTc9I1KvMzWEoObfsvrYZn7jc1nu8 + vNx8gm/+2ccAAJDIFcVQSwMEFAAAAAgA3XhTUZmXzfAfAQAAGgEAAE4AAABub2RlanMtZG9jcy1o + ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMjMvYmNjOGZkNWEyOGJmNmQxZTU4NzYzZDU1M2UwYzdi + NmNkZTNhM2QBGgHl/ngBKylKTVUwNrBkMDQwMDMxUdBLzyzJTM/LL0plCPR4qr78UdvC92dcrkXV + Nzmq1Z6bDVXl4+ns6hfsyqDILlB6yHXmuxmq/gXa54+ynD1UugyqJMjV0cXXVS83hWGOi5Smx/sO + GRmJN36thnf3/aye9Q2qKDMvJbVCL6uYoU7X3v4e18V1EipzJ5ao1u++WRqoA1VTkJicnZieqpuT + n5wNVJqfx7Dm+C/7e2fDV2xY6pzX9fJ4U5ZZjj6qYog6hWWi2lYCth9zXk15OMHw1A0mH4+ZMHVF + +cmpxcUQdb/+enLV3Z/Iy+N7/+UU/nr+1wZbjKDqylOT9JLz89Iy0xlilWri37nunZnwW3jFTxuO + 4sUpfwoBLip651BLAwQUAAAACADdeFNRX1AyMDkAAAA0AAAATgAAAG5vZGVqcy1kb2NzLWhlbGxv + LXdvcmxkLy5naXQvb2JqZWN0cy8yOC9lNzZkYjM1OTU1ZjQ2ZTEyMmM3OGNmYmE3OTQ5ZjFkY2E3 + NWMwYQE0AMv/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJihlWXJv1a9PR7yPptp9e7nmo8sKo19BMA + esEUu1BLAwQUAAAACADdeFNRmwVrkD8BAAA6AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk + Ly5naXQvb2JqZWN0cy8zMy80NGYzZTFhZWQ5NTMzZmMwODgxMjhmZGRjNmMzZmQyN2NjN2I0NAE6 + AcX+eAErKUpNVTA2MWYwMQACBb30zJKM0iSGxY2sXvITmja8EF5TcWMr713Huw+6DA0MzExMwEoy + 0/Pyi1IZAj2eqi9/1Lbw/RmXa1H1TY5qtedmQ1X5eDq7+gW7MiiyC5Qecp35boaqf4H2+aMsZw+V + LoMqCXJ1dPF11ctNYZjjIqXp8b5DRkbijV+r4d19P6tnfYMqysxLSa3QyypmSDStuTLj9cc7lr/D + o0/6/r+Zv513LlRNQWJydmJ6qm5OfnI2UGl+HsOa47/s750NX7FhqXNe18vjTVlmOfqoiiHqFJaJ + alsJ2H7MeTXl4QTDUzeYfDxmwtQV5SenFhdD1P3668lVd38iL4/v/ZdT+Ov5XxtsMYKqK09N0kvO + z0vLTGeIVaqJf+e6d2bCb+EVP204ihen/CkEAKgIjF5QSwMEFAAAAAgA3XhTUXThnirtAAAA6AAA + AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNDEvOTJhMGVkNzllOTk5 + YzRkYTFjMWNiZDM0Y2MwYmY1NzFiNzlhYjUB6AAX/3gBVZDBTsMwEEQ55ysWS6iuFJymOSClKpde + egNBf8BNVq2lldfY2wBq+Xcc0h7wzbPzPLPeE++hqeu7jn0SOIoEWEPEj5OLqGfjfTZfFcU0ThgH + jNkw6qaLaAXf/zStRwaTlBlOIT+Gc1g/w7mAfG6S+YxOcIu218vFooSz2rAX9PK4+w6oWlCCX1IF + ss6rn5z7D0bfa7VFIoaNpcH5e5Uto+1aL3CUXC5E7jAlg34wry9vO7hcoG6ap1Ux9TfkUg7Vo/0G + M6EhPmg1rQPx5L3zB7DTn7RVRdxZOnKS9qFXJVzhX4NBaflQSwMEFAAAAAgA3XhTUTgZl+84AAAA + MwAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNGMvN2RiNTAzMmNm + NDVmYmE2ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGMBMwDM/3gBKylKTVUwNmMwMQAChfL8ouy0nPzy + YoZ7Zww1fuzkUzjhs99+wsG8ijUyZ9gAVEkRAVBLAwQUAAAACADdeFNRXlCB8rUAAACwAAAATgAA + AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy81OC8zYTc1NjU5M2JjZTc2ZTI2 + YzZjYzc0NGMxOWRmMjljYTc2MjdhMAGwAE//eAGVjl0KwjAQhH3uKfYCyubHJgERpU+Cl9huN1ps + G4mpBU9v8QY+DAMfDN9wGse+gDZuU7IIkLS2C0gGlXHkY7A2qKANe8vOU7eGg2apnpRlKtCK86Ki + MEVfu73X1igfqUNt1N7XpkXm1jpb0VzuKUNDw7uf4MC/5rudTreR+mHHaTyCqlGvshoDbNEhVitd + 7xX5e1g1WagILCk/4pAWmF/9dIPzZ84CzfXyBQ7qS4JQSwMEFAAAAAgA3XhTUV5CN0QgAQAAGwEA + AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNWYvOWUyNzljNzZlNmY3 + ZjY3MzA0YmQ3Y2U0ZDYwY2QwOTE4MjI0ZjkBGwHk/ngBKylKTVUwNrBkMDQwMDMxUdBLzyzJTM/L + L0plCPR4qr78UdvC92dcrkXVNzmq1Z6bDVXl4+ns6hfsyqDILlB6yHXmuxmq/gXa54+ynD1Uugyq + JMjV0cXXVS83hWGOi5Smx/sOGRmJN36thnf3/aye9Q2qKDMvJbVCL6uYIdG05sqM1x/vWP4Ojz7p + +/9m/nbeuVA1BYnJ2Ynpqbo5+cnZQKX5eQxrjv+yv3c2fMWGpc55XS+PN2WZ5eijKoaoU1gmqm0l + YPsx59WUhxMMT91g8vGYCVNXlJ+cWlwMUffrrydX3f2JvDy+919O4a/nf22wxQiqrjw1SS85Py8t + M50hVqkm/p3r3pkJv4VX/LThKF6c8qcQAGc6filQSwMEFAAAAAgA3XhTUdUtMSDuAAAA6QAAAE4A + AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNjAvZDkxODkwYjA1ZGQ0NzRm + YTVmMmNkZGNjYjkwYTIzMjJkMmE0ZTkB6QAW/3gBnY9BbgMhDEW7nlOwyyodwM4AUVVVSjdd9BAG + zDBSBqIZ0vOXNuoFuvT3f//boa7r0gSAfWobs+ApKoKT0aAiakw2TdEaloEMTko59gQciIYbbVya + UMA2TDpG8BIVakkQNbHyYJ1UACkp5BT0n78nGRmdT5GlY9tB1lpBMDqdIiKC6z0G40D3lusmLnT9 + Woq4ZCriJfwOIWN5m1dars+hrq9CTVI7rR2iOEoj5dDV/lPj/9HDJ28zC79RCVkcVtp70kHUJHJr + t/08jvPS8t3/lI+Pi/aP97HUyMfH5kihLbXswzc89mvlUEsDBBQAAAAIAN14U1F6WOlb7gAAAOkA + AABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzYxLzM1N2NkNDk4ZWJm + MWRjMzlmYjU3NWJjOTRkZmZkOTZmYjcwZDlkAekAFv94AVWQz27CMAzGd+5TmEgTQepSWCchFbEL + F26bNl4gtBZEspwsMd0m2LsvXeEw3/z5+/nfnvwe6kV913pOAkeRAGuI+HFyEfV0yKezVVGM5YSx + x5gNg27aiFbw/U/TemAwSZnhFHIznMH6Gc4F5LhJ5jM6wS3aTj/O5yWc1cazIMvD7jugakAJfkkV + yDpWP3nuPxi502qLRB42lnrH8DRR2TQYrwsGHyWvF6JvMSWD3JvXl7cdXC6wqOvlqhgvMORSHqsH + +w32hIb8QavxIIgnZscHsONXmqoi31o6+iTNfadKuMK/LzJqT1BLAwQUAAAACADdeFNRZEr1NLgA + AACzAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy82ZS9mODM2NTk2 + NDQyMDRhOTQ3M2FjOTBiOWU1YTc5OTY5NDI1ZjY5ZQGzAEz/eAGVjk1qwzAQRrP2KeYCDfqXBSG0 + ZFXoNgcYjUaOiW0FVa6hp4/JDbL6eA8efFTmeWygtD+0ygzZcPI6xIDeRhuVdpq1TpI05+DZumiC + dj52D6y8NECj0JKgLGwfe5dYZePCztJZTCRTlkyuTx2u7VYqXHD6Gxc40WvpZpbPYcZxOlKZzyCd + UEFa2wf4EF6Ibrf7vcZvh931kbAxbKXe81Q2WH/HZYCv/7UyXH6+n40rTGRQSwMEFAAAAAgA3XhT + UQI3WvLgAQAA2wEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNzMv + ZTYwNGVmYTU0Y2M2OTljNGIzZDIwN2QyZDcxODFjZmNlOWFiM2UB2wEk/ngBfVPJbtswEO1ZXzFA + CvgSSlG8NNbJKQK0lxYBcugxoKSxxUQWCQ5po03z7x2Ssgq7QH3wIj++TU91r2tYl/MPV/CgG4Kt + tuA6hPtf3iL8wBrujSF4QNPrnyAbp/RQQeecoaoodsp1vs4bvS/igeKItWS8aCM+u4Jvmmm+KPfV + M1M8nTQi/D9ESYmybJB7rGD22au+BTm0kKjhu24xfyFgOXD63G8FA/8rjmpo9ZHErpOzLGPfGYDx + 1IVPgNrKoemQ0i8Be0kObZa96Dpeq4OiYMUxTMJZP5AIFZzIe+mQXGSMb0zC1cSvAjwx/9gaFazW + vGrvNiepYENASviEDryZYh3QElcdeeCCh9B5I0LEzaEcEUe+E0k1kMb4IwWXV97k5SIvZxE7Wkuq + g9mDGsjJvr+GmPg6ljxlAuDEFfweZZj674mzawxLBCCE2gpjkXBIvURHfCxAAvE54szPbBza5R1N + 1qciwjgvtrY53I5+YhUwmeOBiHFE/64iWAsv6rU7oYzVrY9TPamG2dS9oo5j6a3qeZAf396AsLHo + KI9b5sfkCe1BNfj8mMCPCfvcypu7T7iqV3KxXSxwebcsV826XCznt8v1vG3h/X0ya2TzKnfMn2d/ + AHOuHFxQSwMEFAAAAAgA3XhTUaH6aZ7fAQAA2gEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3Js + ZC8uZ2l0L29iamVjdHMvNzQvY2VhNmRmMmIzNjBlMTcxZWI1ZGUwZDBkMGIwZTExZWNmZTNmNWMB + 2gEl/ngBfVPLbtswEOxZX7FACvgSSpET24lOThGgvbQIkEOOAUWtLSaySGhJG22af++SlFXYBeqD + H/JwXhrVnanhrrz+dAEPRhFszACuRbj/5QeEZ6zh3lqCB7Sd+QlSOW36ClrnLFVFsdWu9XWuzK6I + B4oD1pLxoon47AK+G6b5qt03z0zxdNKI8P8QJSXKsl7usILZF6+7BmTfQKKGH6bB/JWA5cCZU78V + 9PyvOOi+MQcS21bOsox9ZwDWUxs+AepB9qpFSr8E7CQ5HLLs1dTxWh0UBSuOYRJu8D2JUMGRvJMO + yUXG+MYkXE38KsAT84+tUcFq6s14tz5KBRsCUsIndODtFGuPA3HVkQfOeAidtyJEXO/LEXHgO5FU + A2mMP1JweeVVXt7k5SxiR2tJtbc70D052XWXEBNfxpKnTACcuILfowxT/z1xco1hiQCE0BthByTs + Uy/RER8LkEB8ijjxMxuHdn5Hk/WpiDDOs62t9/PRT6wCJnM8EDGO6N9VBGvhRZ1xR5QdTOPjVI+q + YTZ1p6nlWGajOx7k5/d3IFQDOsrjlvkxecJhrxW+PCbwY8K+LG9vVwu5wsVyubqZX13L+q5ZNgrn + i1KpBW7g42Mya6V6k1vmz7M/c8wcwFBLAwQUAAAACADdeFNRdFy6CTgAAAAzAAAATgAAAG5vZGVq + cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy83Zi9lMmEwOWVhNTU4YmQ1NmRiNzhhOTlm + ZWI0OWEyNThmNTc3OTI3NAEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJiBsVbh0N3m99YsE/B + s/W7pB7vocNc/gBRhxCOUEsDBBQAAAAIAN14U1FxP2WTtQAAALAAAABOAAAAbm9kZWpzLWRvY3Mt + aGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzgwL2IyZDBjMjU2MjdkYzQ5OTBlZWQ5YmRmZDBlMDgx + MTllZDBlMjVkAbAAT/94AZWOWwrCMBBF/e4qZgNKmknzABGlX4KbmEmnWmwbiamCq7e4A78OXDjc + E9M0DQU0uk3JItAb6RwGDuQablijRUHs6ojSByeNZRPQOq4elGUuENkqcsr0osVHj6Q1stOBWfto + xNcdroanipZySxlaGl/DDPv4Y7yZ+XidaBh3MU0HqK3SoV4fGtgqp1S1rmtekb/Fqs1CReCd8r0f + 0xuW5zBf4fRZskB7OX8BMtlLuVBLAwQUAAAACADdeFNR9/hnJD8BAAA6AQAATgAAAG5vZGVqcy1k + b2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy84My8zNDczNzU1ZTljZGYwMWJjNWQwMDMwODkw + NjIxYjdiY2FkOWRhZgE6AcX+eAErKUpNVTA2MWYwMQACBb30zJKM0iSGD6susvH/a15tumDeibva + D25fnrnpj6GBgZmJCVhJZnpeflEqQ6DHU/Xlj9oWvj/jci2qvslRrfbcbKgqH09nV79gVwZFdoHS + Q64z381Q9S/QPn+U5eyh0mVQJUGuji6+rnq5KQxzXKQ0Pd53yMhIvPFrNby772f1rG9QRZl5KakV + elnFDL+kyuJ1fyyV2ydhKskdrP7U1en2AaiagsTk7MT0VN2c/ORsoNL8PIY1x3/Z3zsbvmLDUue8 + rpfHm7LMcvRRFUPUKSwT1bYSsP2Y82rKwwmGp24w+XjMhKkryk9OLS6GqPv115Or7v5EXh7f+y+n + 8NfzvzbYYgRVV56apJecn5eWmc4Qq1QT/85178yE38IrftpwFC9O+VMIAEpNi1dQSwMEFAAAAAgA + 3XhTUdG2vNy2AAAAsQAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv + OGMvZDQ3ZGQ2ZjJkYmVlMTlhZjk1ZDk3MGRiNTA4YjZhNDViOGU4ZTQBsQBO/3gBlY5BCsIwEEVd + 9xRzASVN0kwHRBRXglsPME6nWmybElMFT2/xBi4+Hx583pc4DF0G63CVkyqwXn1Dhp0pHXLdkvdU + knVSe8GamyVCVrSYOOmYoaodYxUqcldRDGqDBBH0XkpqWkvCGCyyKXjO95jgyP2rG2Erv5a7H/e3 + gbt+I3HYQRmMXWSEBtYGjSkWutzL+vewuEwNZ4V3TI+2j2+Yn914g8NnTgrH8+kL7s1LcVBLAwQU + AAAACADdeFNRMYCVUd4BAADZAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq + ZWN0cy84ZS83N2MzZGY5ZGM2ODMyMjg4ZTMwYjI5ZDNlNTA1NTJjZmUzNzI5OAHZASb+eAF9U01v + 2jAY3jm/4pVaiUsdCDABOdGq0nbZVKmHHSvbMcRtsK28Nmjr+t/32g6ZYNI48BEeP195IjorYFMt + Pt3Ao5UIO9uDbxXc/wq9gh9KwL1zCI/KdfYncOm1NTW03jusp9O99m0QpbSHaTowPSnBCc+ahC9u + 4Jslmi/afw3ElE5njQT/D1FWwqIw/KBqmDwE3TXATQOZGr7bRpWvCCQH3l76rcHQv+ykTWNPyPYt + nxQF+S4AXMA2fgKInhvZKsy/GBw4etUXxasV6ZqIiowUhzAZ1weDLFZwJu+4V+gTY3ojEqomfWUQ + kPiH1nBKavLNBr89S0UbDHLCZ+UhuDHWUfVIVSceuOJB5YNjMeL2WA2IE92JrBpJU/yBgsqrZmW1 + LKtJwg7WsqpxB9AGPe+6O0iJ71LJYyYASlzD70GGqP+euLhGsEwAjOkdc71CZXIvyREdi5BIfIm4 + 8DMZhnZ9R7P1sYg4zqutbY/zwU+qAkZzNBA2jOjfVURr8YWd9WeU620T0lTPqnE2otPYUiy70x0N + 8vb9HVDJXnks05bpMXlW/VFL9fKUwU8Z+7JuxHIh12K1nM+Wq0Zumo0Um9Ws+iwX63nF4eNjNOu4 + fON74i+LP3fxHIRQSwMEFAAAAAgA3XhTUVXzA7wfAQAAGgEAAE4AAABub2RlanMtZG9jcy1oZWxs + by13b3JsZC8uZ2l0L29iamVjdHMvOTkvOGU5YTdhY2FkZjIwNjIzZTUwNzZmMjk0NmY0N2EyZTUw + NjliZjIBGgHl/ngBKylKTVUwNrBkMDQwMDMxUdBLzyzJTM/LL0plCPR4qr78UdvC92dcrkXVNzmq + 1Z6bDVXl4+ns6hfsyqDILlB6yHXmuxmq/gXa54+ynD1UugyqJMjV0cXXVS83hWGOi5Smx/sOGRmJ + N36thnf3/aye9Q2qKDMvJbVCL6uY4ZdUWbzuj6Vy+yRMJbmD1Z+6Ot0+AFVTkJicnZieqpuTn5wN + VJqfx7Dm+C/7e2fDV2xY6pzX9fJ4U5ZZjj6qYog6hWWi2lYCth9zXk15OMHw1A0mH4+ZMHVF+cmp + xcUQdb/+enLV3Z/Iy+N7/+UU/nr+1wZbjKDqylOT9JLz89Iy0xlilWri37nunZnwW3jFTxuO4sUp + fwoBIWt60FBLAwQUAAAACADdeFNR9mfZRKQAAACfAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv + cmxkLy5naXQvb2JqZWN0cy85Yi9mMjgyODc1MDA5MzkzZjhkMTM0MGM2NWFhYmIxZDc0ZDVmNmYw + NQGfAGD/eAGdjlsKwjAQRf3OKmYDysw0TRsQEboGF5DMTGzBPijR9Vtcgp/3wOFcWed5qsDcnupu + BlpiCaHpzLMWk0bZmDDHRCF0KpotdB6J3JZ2WyogodcceuaEqiWXFhsLUrwoSyPMUanPFF1613Hd + YUivz7TAMKYFrvIbMvrl/pzT9LrIOt+AAnI8op7gjB2iO+jxsdp/tntsmqoBuy8Iz0ajUEsDBBQA + AAAIAN14U1E91+AgeAEAAHMBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmpl + Y3RzLzljLzQ0MWEyOTQ4ZWY4ODFjMWMxOGVjNGU4NTMxZGRiZWY5N2I5YWY2AXMBjP54AZWSQU/c + MBCFe/avGMGFPSS5VSKnriqhXqCqqMRhhaqJPdl4FXuMPQHRX9/xBtot4sIpjmc833vPHmYe4PPl + 5aemaUzCPf2S50Q9FAxpJjNj3C+6W3rTQGRHh6KLAz5isdknMSmzW6wc6/h7yaTl47fBlJpC+dFb + Mo7Wds+xh7Ofky8vAHAUOBbJKFQAQXx8hm80zwx3nGcHN8psD1pKCUbOsK0M2Orf7Tq7PTNVujn/ + 23py3JiPsKq/U9buBAN3NFTs/cUkkkrfdY5taYO3mQuP0loO3dF4p1JfjTdPNGxaFXcOXzlK9sOi + DvcvsjS7A1mBCdWf4yTkQCaC3fXrVPieKMItL9mSTnAEPNZJNfJ/SlibyrHnjR6rJ3i0a3+3aeFK + EwysAfqoYQYUvRAoRCv2DQCutj8+DBnxoduAYpQqqOZ2VV0V8uW/rO4vAvpZuH+/vIEnLxOgvgZ0 + zledOMPDQqUuywoIgaKU1vwBa6/7yFBLAwQUAAAACADdeFNRC0v1WTgAAAAzAAAATgAAAG5vZGVq + cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hMy84MTA1NGExZjkwODJiMGU4MTNhYzc4 + ZDhiNTBkZGQ0MWRkZTA4YQEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJihps8ObfUlFy+NmV8 + kref9vxG+VytMABM7xELUEsDBBQAAAAIAN14U1EcKBdXuAAAALMAAABOAAAAbm9kZWpzLWRvY3Mt + aGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2E0LzJhNWMwY2YwNThiODZkZTJmNDY5MGNmMTY1YWRj + MWRmMWVjNjhkAbMATP94AZWOQWrDMBAAe/Yr9gMta0m7iqCUlpwCufYB0mqVmNhWUOUE8vqG/qCn + gYGBkbosUwdj/UtvqlCcZm9DCtFTomQsW7U2j2K1BK/EyQXLPg3X2HTtgOxFDWVkJpJsOOBOLAt6 + ykxFNO2cC6YMcevn2mAf59u0wrv8Uc5u/TwtcZrfpC4fMDKaMJLDAK/oEYenfe51/Xc4fF9z7Ar3 + 2i5lrnfYfqb1BF+PrSnsj4df3BZLRlBLAwQUAAAACADdeFNRcRbFTE0AAABIAAAATgAAAG5vZGVq + cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hYS9kMjkyZmFhMmU1Zjc1NGFmYjZjYmFm + NDVjYTgxYzBhYTg1NTVmMgFIALf/eAErKUpNVTA1ZTA0MDAzMVHITSwuSS2Kz8tPSdUtz8xLyS8v + 1k3PSNSrzM1h6Cs/fH/usWaljsfcmpefsgadf1w0AwC54BlJUEsDBBQAAAAIAN14U1H+URCBXAAA + AFcAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2FjL2M3ZmEzZmRl + Y2Q1N2E4YjBhNTQzNmU4YWU5Yzc4MjZhMzY2YzJmAVcAqP94AUvKyU9SsDRiqOZSAAKlvMTcVCUr + BaXEggLd4tSisszkVN2M1JycfN3y/KKcFCUdiLKy1KLizPw8kEoDPQM9Q5h4Tn5ydlpmTmoYXN6Q + q5YLAKcWHHhQSwMEFAAAAAgA3XhTUb6QNY8+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13 + b3JsZC8uZ2l0L29iamVjdHMvYWUvYjRkOTBhMzAxMzdhOGY5NDQ5MTkyM2M4NGM3OGFkNzhhYzky + Y2UBOQHG/ngBKylKTVUwNjFmMDEAAgW99MySjNIkhsWNrF7yE5o2vBBeU3FjK+9dx7sPugwNDMxM + TMBKMtPz8otSGQI9nqovf9S28P0Zl2tR9U2OarXnZkNV+Xg6u/oFuzIosguUHnKd+W6Gqn+B9vmj + LGcPlS6DKglydXTxddXLTWGY4yKl6fG+Q0ZG4o1fq+HdfT+rZ32DKsrMS0mt0MsqZvglVRav+2Op + 3D4JU0nuYPWnrk63D0DVFCQmZyemp+rm5CdnA5Xm5zGsOf7L/t7Z8BUbljrndb083pRllqOPqhii + TmGZqLaVgO3HnFdTHk4wPHWDycdjJkxdUX5yanExRN2vv55cdfcn8vL43n85hb+e/7XBFiOouvLU + JL3k/Ly0zHSGWKWa+Heue2cm/BZe8dOGo3hxyp9CAGI5iQVQSwMEFAAAAAgA3XhTUQTLF0HtAAAA + 6AAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYWYvNWVhNTQ1MGEw + ZWFmYjE2NmRhMjQ2YTdjYjZhNzZkYWU4NjY4MTEB6AAX/3gBnU9LTsMwEGWdU3jXVcj4b1cIIZUN + Cw7hz0wcqbGrxOX8BCouwG7em3mfSW1dl86kdE99Q2SJInoluNRguFHeKozRiuwJedDJkkCBRDDc + woa1Mx9JOOGsBvDSS3KZSwXJ6BBi5NmqrMkQ6L97RIOWojcxZKXoGLWXynmZDVecJ5EQnDBqCPde + 2sYu4fq1VHYpobKX9AtSUfVtXsNyfU5tfWXcgPCCcw5sBAswHOzxU8f/qYdP3GZkcQs1FXZaw344 + nVgjVnq/7edpmpde7vEnfHo02j/ep9oyjo/NGFJfWt2HbwXka5tQSwMEFAAAAAgA3XhTUavAvCDY + AAAA0wAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYjcvYjdiNmYz + ODU0MDIyOWY3MTlhOTM1NzYyYjBiNWY5NDk4ZmZkNDUB0wAs/3gBlY/RacQwEETz7Sq2gRxaS7Zk + CCEmDQRSwWq1OouzLCPkO5Lq46SDfA0MzJsZLjmnBr1zT62KQLRmQu/00IvyOkSPYWIanTVKC3l0 + gmbw1nY7VdkaoO4FLXrmSFHxgGE0YdBOkaDXJwMHQyymo6MtpcI7rfe0wQv/KS9me7tmSuuFS34F + HFU/9RqVhWdllepO95zX5N/Bbg4Bzr5jD9QE2iIw7zt8Sr0nFgiyr+Ur/z54lHqLa3kAly2m61Gp + pbJBrCXD/H1UgY9SG62XH0XQXxVQSwMEFAAAAAgA3XhTUbX2Ob3WAAAA0QAAAE4AAABub2RlanMt + ZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYmUvNzhlMWZlY2FmODY3NTgyNDMxOGZhZDAy + MzE1ODYzYjBjY2I0NzQB0QAu/3gBpY/BTsMwEEQ55yv2B1o5G8fOSgjRP6jgCxxnl0aNs5FxWpWv + x0hcOKM5zRxm3kRNaS7Qte1TycxANDAFH2KYBI3DjnvjnSBZJ9YHrNbRKNhsIfNaYPRVTrqhtwaR + xLcUqOu9w9GMvZClQWSyfRP2ctEMp689M5y2Dd453+bI8DzpqnV7Wx6vaY5ZP1XKMWp6gdYZJOxw + sHAw3pimppW28H97mjdOemMol78sU6XQR/o5dtd8lUXvEHWV+WPPocy6gmRNvyfOmktYjt+EbGf0 + UEsDBBQAAAAIAN14U1H1PcDi1QAAANAAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp + dC9vYmplY3RzL2M4L2QzNzRjNmRmMmMyNzk4ZTBjMmE4YzU5YzFkMDJkOWQ3MTg0OTQ4AdAAL/94 + AaWPTU7DMBBGWecUc4FW/ncsIURvUMEJHHuGWo0zkXFaldMTJDas2X6L972XuNbSQUv51BsiWAqo + fEjeoSNPzmthpuwTmuxEyiLIUSlDYVhjw6UD+UnbbPOYQxqFRk0K0WoM0acpktHGaRlEHOLWL9zg + 9LU1hNO6wju2W0kIz5kX3r/X+fFaS2r8ydSPiesLSCdUUEZZDQfhhRj2dbft+F/O8IaVbwj98tcl + 7xb8qD9hd25XmvkOiRcqH1uLvfAC1Lj+Rpy59TgfvwFhO2jUUEsDBBQAAAAIAN14U1EeGiQvggAA + AH0AAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2NiLzYwYTcwNGZl + MmU4YzgzYTIyM2I3MjliYjI4YzRlODFkM2I0OThhAX0Agv94AZ2NbQoCIRQA++0p3gUK9a0fQUSw + J3k+NYXVBbPO39IR+jkDw/DeWp2g3HKaIyXQGJh9joa0D9lGlYx3FqMxmCS7YDkmJIyC3rPsA1ba + PrXDWqjDjX/AZemPZ6O6XXhvd1BW6qtS0iGcpZNSHPZ4zvRfLXIdrym+8qM4klBLAwQUAAAACADd + eFNRf3zoSD4BAAA5AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9j + Zi9iZTk0MjEzNTA2MTY0OTc0ZWJiNzJkOWZlMWE1YzdmMmUyZWZmMAE5Acb+eAErKUpNVTA2MWYw + MQACBb30zJKM0iQGjee5myNDv+QJ6VSc31Xp+fHO8hguQwMDMxMTsJLM9Lz8olSGQI+n6ssftS18 + f8blWlR9k6Na7bnZUFU+ns6ufsGuDIrsAqWHXGe+m6HqX6B9/ijL2UOly6BKglwdXXxd9XJTGOa4 + SGl6vO+QkZF449dqeHffz+pZ36CKMvNSUiv0sooZ3hVtsf7W80qfzfQMY+y9Y411oddToGoKEpOz + E9NTdXPyk7OBSvPzGNYc/2V/72z4ig1LnfO6Xh5vyjLL0UdVDFGnsExU20rA9mPOqykPJxieusHk + 4zETpq4oPzm1uBii7tdfT666+xN5eXzvv5zCX8//2mCLEVRdeWqSXnJ+XlpmOkOsUk38O9e9MxN+ + C6/4acNRvDjlTyEAXoOKrlBLAwQUAAAACADdeFNRmGfCVE0AAABIAAAATgAAAG5vZGVqcy1kb2Nz + LWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9kOS8wYzZjZGEyNjIyNDRmNTgyNjhmMjFmM2Y5NmU3 + ZDg3NzlkMmE1NgFIALf/eAErKUpNVTA1ZTA0MDAzMVHITSwuSS2Kz8tPSdUtz8xLyS8v1k3PSNSr + zM1hKH7G8n6pz7GZRzZfYr90XULmz8vVdgC93hnHUEsDBBQAAAAIAN14U1EpopOGIAEAABsBAABO + AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2RkLzc5YzIwOWI2NDdmNDYz + YzFjMjVhZDhhZjE5ZWIxN2ZmOTgxYmI3ARsB5P54ASspSk1VMDawZDA0MDAzMVHQS88syUzPyy9K + ZQj0eKq+/FHbwvdnXK5F1Tc5qtWemw1V5ePp7OoX7MqgyC5Qesh15rsZqv4F2uePspw9VLoMqiTI + 1dHF11UvN4VhjouUpsf7DhkZiTd+rYZ39/2snvUNqigzLyW1Qi+rmMFx0oK3lS9nHrklI7PX5Az3 + 18Lts7ZC1RQkJmcnpqfq5uQnZwOV5ucxrDn+y/7e2fAVG5Y653W9PN6UZZajj6oYok5hmai2lYDt + x5xXUx5OMDx1g8nHYyZMXVF+cmpxMUTdr7+eXHX3J/Ly+N5/OYW/nv+1wRYjqLry1CS95Py8tMx0 + hlilmvh3rntnJvwWXvHThqN4ccqfQgAXN320UEsDBBQAAAAIAN14U1GJ/mg6TAAAAEcAAABOAAAA + bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2RlL2NjMzEyOGY4YjkwZTIwYzg0 + Y2JmM2Y5MGMxNmU3OGFjMWNjYzA2AUcAuP94ASspSk1VMDVlMDQwMDMxUchNLC5JLYrPy09J1S3P + zEvJLy/WTc9I1KvMzWGQZVLdwKkjFOx6QPiNPNfNI1+yGbMBgGMVU1BLAwQUAAAACADdeFNRHsOe + vyABAAAbAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9kZi85ZjY2 + MzdlNDJkZmVjM2QyZTIxMGI5YTE2NjdkY2RiZTY3NDAxMQEbAeT+eAErKUpNVTA2sGQwNDAwMzFR + 0EvPLMlMz8svSmUI9HiqvvxR28L3Z1yuRdU3OarVnpsNVeXj6ezqF+zKoMguUHrIdea7Gar+Bdrn + j7KcPVS6DKokyNXRxddVLzeFYY6LlKbH+w4ZGYk3fq2Gd/f9rJ71DaooMy8ltUIvq5jhXdEW6289 + r/TZTM8wxt471lgXej0FqqYgMTk7MT1VNyc/ORuoND+PYc3xX/b3zoav2LDUOa/r5fGmLLMcfVTF + EHUKy0S1rQRsP+a8mvJwguGpG0w+HjNh6oryk1OLiyHqfv315Kq7P5GXx/f+yyn89fyvDbYYQdWV + pybpJefnpWWmM8Qq1cS/c907M+G38IqfNhzFi1P+FAIAgRV80VBLAwQUAAAACADdeFNRVxA9trUA + AACwAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9lMC9jNzBkOWJm + ZGUwOWU4MmRkZTIyMTNjNzJmNWQ0NDQzOTc0Njc0ZAGwAE//eAGVjkEKwjAQAD33FfsBZZM0TQIi + Sk+Cn0g2Gy22jcTUgq9X/IGngYGBoTxNQwWpzKYWZrBKtUYZrdlRTCgC6Yio0DrspAgmkI8u+tQ8 + fOG5gkhWUssdJbRKyySTja0O0XXOcQpGKKWFMKHxS73lAr0fX8MMe/qRbu18vE5+GHeUpwOIDqWT + UqOBLRrE5mu/e5X/Dpu+sK8May73NOYVlucwX+H0XgpDfzl/ANeDS0dQSwMEFAAAAAgA3XhTUX0K + XqI+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZTYvZDFh + MzU3MjMxZDQyNGY4ZjZkODdlMGNhNzQ2MTE5ZWJhM2VjYWEBOQHG/ngBKylKTVUwNjFmMDEAAgW9 + 9MySjNIkhvpHC+Ytjdgbdrti5fzXnosivpZPKjE0MDAzMQEryUzPyy9KZQj0eKq+/FHbwvdnXK5F + 1Tc5qtWemw1V5ePp7OoX7MqgyC5Qesh15rsZqv4F2uePspw9VLoMqiTI1dHF11UvN4VhjouUpsf7 + DhkZiTd+rYZ39/2snvUNqigzLyW1Qi+rmOGXVFm87o+lcvskTCW5g9WfujrdPgBVU5CYnJ2Ynqqb + k5+cDVSan8ew5vgv+3tnw1dsWOqc1/XyeFOWWY4+qmKIOoVlotpWArYfc15NeTjB8NQNJh+PmTB1 + RfnJqcXFEHW//npy1d2fyMvje//lFP56/tcGW4yg6spTk/SS8/PSMtMZYpVq4t+57p2Z8Ft4xU8b + juLFKX8KAUU9in1QSwMEFAAAAAgA3XhTUUddjzK4AAAAswAAAE4AAABub2RlanMtZG9jcy1oZWxs + by13b3JsZC8uZ2l0L29iamVjdHMvZWUvNmU3ZmI5NmJhZDQ0ZjdmYjU5MzQ4OTNkNjE0MTFjMmNl + MDgyNjQBswBM/3gBlY5BasMwEAB79iv2Ay2ydrXKQiktORV67QNW8ioxsa2gyg309Q39QU8DAwOT + 67rOHTzGh97MoJBNESWJxpBC8shoiNOY0YpEC5xIkGMartps68BWDshBmMg7UqGImsUlsaBRhIV8 + KCw26N7PtcFRl+95g+f8x3ym7fW06rw85bq+wMjOy3hwhPDoonPD3d73uv07HD6vk3aDW22XstQb + 7F/zdoK3n70ZHD/efwGRlkrLUEsDBBQAAAAIAN14U1EV71ZA7gAAAOkAAABOAAAAbm9kZWpzLWRv + Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2VlLzcyYjQzYmY2OGNlYTJmMDYzNWNjMDE1ZGRl + YzY4MTdlNTVkNzY0AekAFv94AVWQz27CMAzGd+5TeJEmgtSlQA+TiuDChdumjRcIrQWRLCckptsE + e/elKxzmmz9/P//bk99DPa8fWs9J4CgSYAURT2cXUU+GfDJdFsVYThh7jNkw6KaNaAU//jStBwaT + lBlOITfDKazWcCkgx10yn9EJbtF2ejGblXBRG8+CLM+774CqASX4JVUg61j95Ln/YOROqy0SedhY + 6h3D4lFl02C8LRh8lLxeiL7FlAxyb95e33dwvcK8rl+WxXiBIZfyWD3Y77AnNOQPWo0HQTwzOz6A + Hb/SVBX51tLRJ2meOlXCDf4FLipqTVBLAwQUAAAACADdeFNRsWK1vjgAAAAzAAAATgAAAG5vZGVq + cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mMC9hYWQxMDYwZmZlODNhYjM1YTA5ZWM4 + ZGQyYmUwZGJkMzk5YjJmYwEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJihg8nFmdH3QoyCDou + Ie/xM2lF5IvN5QBX1RG+UEsDBBQAAAAIAN14U1HztfOWaAAAAGMAAABOAAAAbm9kZWpzLWRvY3Mt + aGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2YwL2M4YTM2YjVhZGE1MjMwNTJjNzE4MWY0OGY5NjJh + ODU5ZThiMzc3AWMAnP94ASspSk1VMDQ0YDA0MDAzMVHITSwuSS3SzctPSdUtz8xLyS8v1k3PSNSr + zM1hKDm37L62GZ+43NZ7vLzcfIJv/tnHoGiLx6qtr/zw/bnHmpU6HnNrXn7KGnT+cdEMAISiLPtQ + SwMEFAAAAAgA3XhTUcmvZVo+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0 + L29iamVjdHMvZjQvZWQ3MzliOWE3NWI1YjIzNjNlMzNkMWMzZWY5N2U1NmI0OTM2N2IBOQHG/ngB + KylKTVUwNjFmMDEAAgW99MySjNIkBo3nuZsjQ7/kCelUnN9V6fnxzvIYLkMDAzMTE7CSzPS8/KJU + hkCPp+rLH7UtfH/G5VpUfZOjWu252VBVPp7Orn7BrgyK7AKlh1xnvpuh6l+gff4oy9lDpcugSoJc + HV18XfVyUxjmuEhperzvkJGReOPXanh338/qWd+gijLzUlIr9LKKGep07e3vcV1cJ6Eyd2KJav3u + m6WBOlA1BYnJ2Ynpqbo5+cnZQKX5eQxrjv+yv3c2fMWGpc55XS+PN2WZ5eijKoaoU1gmqm0lYPsx + 59WUhxMMT91g8vGYCVNXlJ+cWlwMUffrrydX3f2JvDy+919O4a/nf22wxQiqrjw1SS85Py8tM50h + Vqkm/p3r3pkJv4VX/LThKF6c8qcQAAuYiMRQSwMEFAAAAAgA3XhTUeAtL5k+AQAAOQEAAE4AAABu + b2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjcvNDkxYjgzNTJlMGIzZGZiMWQ5 + Y2E2ODc0MDNlYWIxOGUxNDViNzcBOQHG/ngBKylKTVUwNjFmMDEAAgW99MySjNIkBp/arcw6X+J3 + 5R1Qqi6dM5enoXH6HUMDAzMTE7CSzPS8/KJUhkCPp+rLH7UtfH/G5VpUfZOjWu252VBVPp7Orn7B + rgyK7AKlh1xnvpuh6l+gff4oy9lDpcugSoJcHV18XfVyUxjmuEhperzvkJGReOPXanh338/qWd+g + ijLzUlIr9LKKGX5JlcXr/lgqt0/CVJI7WP2pq9PtA1A1BYnJ2Ynpqbo5+cnZQKX5eQxrjv+yv3c2 + fMWGpc55XS+PN2WZ5eijKoaoU1gmqm0lYPsx59WUhxMMT91g8vGYCVNXlJ+cWlwMUffrrydX3f2J + vDy+919O4a/nf22wxQiqrjw1SS85Py8tM50hVqkm/p3r3pkJv4VX/LThKF6c8qcQAHkOiEZQSwME + FAAAAAgA3XhTUXhjLnOjAAAAngAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i + amVjdHMvZjcvYjM1ZDVkOGQ5YzgwM2UzZjJlZTUzZTlhN2NiYWY0MzQ2MzE5MGEBngBh/3gBnY7b + CQIxEAD9ThXbgJLH5pKAiGANFrDZ3XgH3oMjWr9iCX7OwMDwOs9TB+/joe+qEAJiC+pIpcQQGtuc + nc9NhAcOTXxiThXRbLTr0iGzYBIZmpeq6gq1EqUkKzXaXAfCWLNmRUOvPq473Oj5nha4jbTAmX/A + Iy7Xx0zT88TrfAE3WF88umjhaJO15mu/j13/q819E+oKaD5bGUc9UEsDBBQAAAAIAN14U1FRWInv + 7gAAAOkAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2ZhLzFhNzY1 + ZjJkZjhhNTFlYmUxODM1MTkwYjUzMjdlNTQ1NDJkYmMwAekAFv94AVWQz27CMAzGd+5TeJEmgtSl + QA6TiuDChdumjRcIrQWRojgkptsEe/clKxzmmz9/P//bO9qDnuuHjnxiODIHWEHE09lGlJOST6bL + qhrLCeOAMRuKrrqIhvHjT5OyMJi4znAKuRlOYbWGSwU57pL6jJZxi6aXi9mshovYkGf0/Lz7Diha + EIxf3ARnrBc/ee4/GH0vxRadI9gYN1gP+lFkUzHeFgwUOa8XInWYkkI/qLfX9x1crzDX+mVZjRco + Z1MeK4v9DpND5eggxXgQxLP31h/AjF9pm8ZRZ9yRErdPvajhBv8CLq5qTlBLAwQUAAAACADdeFNR + KiV1rKsHAAAUCwAAWwAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9wYWNr + L3BhY2stY2E1ZjIxODkwNTUzOGVkNzNhZTg1ZGNiMzA4ZmY2NTcyNzM2NTJiMy5pZHid1nk01Osf + B/AxTRLG2MYwKOuIwqDGOmS5SSaKqwUzKCQRupSQNVu6Yy1rJNso6krWiGu7GVIITWKMOLYYe2XI + 7zm/4w/H4d7b/Z7zOt/nPN/zfM7z/ev9Xvc2vwiBQKCQ//aw7QC6YdcGGLB7kz3b4NjB3m1wboPr + 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 + eHByZXNzQXBwL3BhY2thZ2UtbG9jay5qc29uq+blUgACpbzE3FQlKwWlxIIC3eLUorLM5FTdjNSc + nHzd8vyinBQlHai6stSi4sz8PJBSAz0DPUO4RE5+cnZaZk5qGFyBIS9XLS8XAFBLAwQUAAAACADd + eFNRsDZHUq8AAAAaAQAAMQAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9w + YWNrYWdlLmpzb249jrEOgyAURXcT/+GFuRq7dnNrh3axSWciz0iDQB5om5r+e0EshOne827OWhYQ + HtN8QnYCxq2tHNIie6xGVMpUL0NKsMPOCXQ9Seul0RHv5GQVwjmS8Igk3IzA+unA8a0aDEH7mQmh + tRa6NJ3nFiS3TzV1Ux9zYUku3EclTzP+UxVutdtEr5d7hvnsR0NbKnsyzgw+d0nXhXJNSUo9Jx8P + dLAFqQW+gzNLxLcswv8BUEsDBBQAAAAIAN14U1EgEDXUuAAAAFEBAAAxAAAAbm9kZWpzLWRvY3Mt + aGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3Byb2Nlc3MuanNvbl2PPQ+CMBCGdxP/w6WzYBxcmBlY + SEycdGkaOLDSD9IW0Rj/uycoEt6lzT1P73oAAM/1CoYwIzQy+CYB1lvXoGObSfCFk21gkxBvpSnx + Hl/9TJLGB2EK9GyQdn+i0dXIla0/KIHgOvxDKvNSBOSVdVrQEOp/okR5HqUpZFmiNZxnc3oRigtb + thmq3LZBWuOJTtsRq6xStj8+tJKm8cunJHQeD+RIU49/X3JpArqbUGzcf/9Dr/FCxxtQSwMEFAAA + AAgA3XhTUaki5WtgAQAAzQIAAC4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NB + cHAvUkVBRE1FLm1klZGxTgMxDIb3Sn0HCxY63N1+ExUSYgGEQGKoEHITXy/VJQ6JDwRPj9ODUioW + Nsf+7e+3U1XVfBZxQ8/yHqmFjD4ONJ8NGDajpnM7n1UQ2NI2l2iLr5hNclG0LbEdjUwS/BgT7YMK + Y6wypVdnNGlpanEcWjh56F3+4oAlzyFLQqEMCOLCO1zRMDA8chos3Ci43mopRug4wbIMh6W+7qfh + 9Ykyyw7z2elefTChFP4DDEfA1QELHmld2E9nvUjMbdNYNrn2ziTO3Elt2De79ZuD9as3Wi/qncFT + uOAgya1H5W721vSOWzICPSrXchSyID3B6vp7MtxGCnDPY1IXF2oRuCuzyvl/3LCK8k5z5MloB3dm + 0jeLGi51M896SRd0SY/lZyATTdgjAFwu7/4N6fClWYBiNCGoQ1alsWjOf7U9nXl0g3D7d3kBb056 + QP0ltNYVnzjAy0i5hHkCeE9Bsp74E1BLAwQUAAAACADdeFNRSegmiIYEAAAGCgAALwAAAG5vZGVq + cy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC93ZWIuY29uZmlntVZdb9s2FH0PkP9wp5cC + wWQ22x6GzEoQNA5goM26OOkwrFtASbTFRiJVkrLsDv3vO6RkWc6SYS8LjBiieT/Ouefeq+nFpipp + LYyVWiXR6eR1REJlOpdqlUSNW8Y/Rhfnx0fTb+L4+Ij8310hLWVaLeWqMdzBjpayFIRTIz430oic + 5JKktErn4bixOHKaTKMonNVGZ8JaYSkVhVR573k+X5A24Wu2qQ1uTIiucVJpA0dqqU0VAn5La2ml + Ozs+6i0L52p7xthKuqJJJ5mumPvEVfaleWR9Iiwtdcoqbp0wzJqMWV7VpbDsAAprhTf3J8dHcXzu + I0wPbpz7kFO7hZ9qgtsLYUDfeZeIp4k++NxCSsgIUVd2UtlchaxS1gKvbi3/0hjBuMkKuRbsu9en + 37PTU3b6A5PKGZ03mY8VOx0jhNXZo3A2xkFvHQdz/1uMWMJOuK03tHyGKsLnV2QZXJBt6lobRwFZ + SLgdfhOKp6XIk2jJSysiYrsrBVd5CYX0zz3KucplxhGbXMEd/gmygYrJJzsIgod6+xOfptdAKqjz + l1O6DVY7oVRADashNcTheU6KVyKJ+ksR1dwVeFS52MBt5KWbJtFJ1Jvb/dUhf/YEwNSI1iCdfRzj + LYfHHuCVRvIOXEIwSwFWW4grSFxYZwPZPk4sla1F5vCYi7RZrdA5YxC9+x7HDSzmO4OABt7VYqsc + 3yTR7M27y0VmZO0isk7X77s+Cb3oTCOikVf4RYWzghpTJtGfO0Y+spDF7x/ZHxf7GnY8+DzOh57Z + 4byWxjpqhe9pK3NhqC0ECmO66mAYVB7S/e1bCgGFL2tdbC3KX/aVVuEuq5u0lBmoKb2bF0lYOEgz + e6PBrHJPMPEgfHLbGhdvu0JFHcbO+1+3s1/uZ4u7h/vb+dfovwC8LEvSARAwIHmUsuJ13c0kn/eB + RpGS2VKtUfeXEVxt8f0SBPCYS4/CHpz3epaqblwSDTCu529nN5fvZl+jjt67gHxur0FsREqs0GNJ + dOerzw7jsBcC/RuHQ+M8S9z4cegWdtguo0H3KpXqFeWY+F7NWzS2BZfk1S0hjUpw5ZUj1cAwGpFA + PfYHV34U1CXP/LpQJMdDyYqsQcjtqEO7tgMp6Bc4HWdfyDwXaiFWFWrxhAojKr32kyn8mETI+An0 + F6w97GdDTtkouxEZ7/gj4mAqkzAGwwDrq0ZlRCe4UiwdNcrpBg2Uj6D6NTHzBpbERlqHQLe9ZRK9 + 59beFUY3q6Lr5X28XZ6/6SaQCS1gb5RU6JZu+r1baCypPMwtMOzXauNnSdA8erTUrX/SdZDQ2Z6U + E2pDo+deg/YM7FUyznQJTVlRc+xBeC2RLOllGAD9DmglOg1V7a3DiMwwfFf+gvaMOG7Gq2Ic0kvk + Qaj12eAGbwk1X4VgTncvDhDYzc9Xs4fZzQc06loarXzZaM2N9Ntr7HCYxrNusVG8I8keTLi0QYUx + xXsDnIK6fhnuZ8lCiP/lLSOQxGnZAPOO0r4iXei9VFD16W5ZjguURHt3P510zd1bQaz/fFGZsqcv + NH8DUEsBAhQAFAAAAAgA3XhTUTko1a0LAAAACQAAACsAAAAAAAAAAAAAALaBAAAAAG5vZGVqcy1k + b2NzLWhlbGxvLXdvcmxkLy5naXQvQ09NTUlUX0VESVRNU0dQSwECFAAUAAAACADdeFNRQExnl8oA + AAA7AQAAIwAAAAAAAAAAAAAAtoFUAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9jb25m + aWdQSwECFAAUAAAACADdeFNRN4sHHz8AAABJAAAAKAAAAAAAAAAAAAAAtoFfAQAAbm9kZWpzLWRv + Y3MtaGVsbG8td29ybGQvLmdpdC9kZXNjcmlwdGlvblBLAQIUABQAAAAIAN14U1GHLufaZgAAAG4A + AAAnAAAAAAAAAAAAAAC2geQBAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L0ZFVENIX0hF + QURQSwECFAAUAAAACADdeFNRK2lzpxkAAAAXAAAAIQAAAAAAAAAAAAAAtoGPAgAAbm9kZWpzLWRv + Y3MtaGVsbG8td29ybGQvLmdpdC9IRUFEUEsBAhQAFAAAAAgA3XhTUT3zOwKpAQAAqQIAACIAAAAA + AAAAAAAAALaB5wIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaW5kZXhQSwECFAAUAAAA + CADdeFNRXTKUHCkAAAApAAAAJgAAAAAAAAAAAAAAtoHQBAAAbm9kZWpzLWRvY3MtaGVsbG8td29y + bGQvLmdpdC9PUklHX0hFQURQSwECFAAUAAAACADdeFNRhU/4CRcBAADeAQAAOAAAAAAAAAAAAAAA + toE9BQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9hcHBseXBhdGNoLW1zZy5z + YW1wbGVQSwECFAAUAAAACADdeFNR6fjKEPcBAACAAwAANAAAAAAAAAAAAAAAtoGqBgAAbm9kZWpz + LWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9jb21taXQtbXNnLnNhbXBsZVBLAQIUABQAAAAI + AN14U1FQuZhj/wYAAC8SAAA8AAAAAAAAAAAAAAC2gfMIAABub2RlanMtZG9jcy1oZWxsby13b3Js + ZC8uZ2l0L2hvb2tzL2ZzbW9uaXRvci13YXRjaG1hbi5zYW1wbGVQSwECFAAUAAAACADdeFNRmgz3 + wIoAAAC9AAAANQAAAAAAAAAAAAAAtoFMEAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9o + b29rcy9wb3N0LXVwZGF0ZS5zYW1wbGVQSwECFAAUAAAACADdeFNRz8BMAgkBAACoAQAAOAAAAAAA + AAAAAAAAtoEpEQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtYXBwbHlw + YXRjaC5zYW1wbGVQSwECFAAUAAAACADdeFNR77MyDIwDAABrBgAANAAAAAAAAAAAAAAAtoGIEgAA + bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtY29tbWl0LnNhbXBsZVBLAQIU + ABQAAAAIAN14U1FEP/Ne/wAAAKABAAA6AAAAAAAAAAAAAAC2gWYWAABub2RlanMtZG9jcy1oZWxs + by13b3JsZC8uZ2l0L2hvb2tzL3ByZS1tZXJnZS1jb21taXQuc2FtcGxlUEsBAhQAFAAAAAgA3XhT + UQTYj7GdAgAARAUAADIAAAAAAAAAAAAAALaBvRcAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n + aXQvaG9va3MvcHJlLXB1c2guc2FtcGxlUEsBAhQAFAAAAAgA3XhTUYTsWFHfBwAAIhMAADQAAAAA + AAAAAAAAALaBqhoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLXJlYmFz + ZS5zYW1wbGVQSwECFAAUAAAACADdeFNRksT4lkkBAAAgAgAANQAAAAAAAAAAAAAAtoHbIgAAbm9k + ZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtcmVjZWl2ZS5zYW1wbGVQSwECFAAU + AAAACADdeFNR7RM2MOgCAADUBQAAPAAAAAAAAAAAAAAAtoF3JAAAbm9kZWpzLWRvY3MtaGVsbG8t + d29ybGQvLmdpdC9ob29rcy9wcmVwYXJlLWNvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgA3XhT + UYhk77V4BAAAMw4AADAAAAAAAAAAAAAAALaBuScAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n + aXQvaG9va3MvdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIAN14U1F3Pc0hrQAAAPAAAAApAAAAAAAA + AAAAAAC2gX8sAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2luZm8vZXhjbHVkZVBLAQIU + ABQAAAAIAN14U1HwgMT9NgIAAHUHAAAmAAAAAAAAAAAAAAC2gXMtAABub2RlanMtZG9jcy1oZWxs + by13b3JsZC8uZ2l0L2xvZ3MvSEVBRFBLAQIUABQAAAAIAN14U1HwgMT9NgIAAHUHAAAzAAAAAAAA + AAAAAAC2ge0vAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2xvZ3MvcmVmcy9oZWFkcy9t + YXN0ZXJQSwECFAAUAAAACADdeFNRhJfpgboBAAB7BgAAPAAAAAAAAAAAAAAAtoF0MgAAbm9kZWpz + LWRvY3MtaGVsbG8td29ybGQvLmdpdC9sb2dzL3JlZnMvcmVtb3Rlcy9vcmlnaW4vbWFzdGVyUEsB + AhQAFAAAAAgA3XhTURjM6OyhAAAAnAAAAE4AAAAAAAAAAAAAALaBiDQAAG5vZGVqcy1kb2NzLWhl + bGxvLXdvcmxkLy5naXQvb2JqZWN0cy8wMS8wNGRiNjgyMmEwZGRmYmY1MDNlNmNmNGNkMmMzYzIy + OWQxOGIxOVBLAQIUABQAAAAIAN14U1EL/uZsuQAAALQAAABOAAAAAAAAAAAAAAC2gZU1AABub2Rl + anMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMDYvN2NlMjVkMDY2NTVjZDI2OTA4YzM2 + YzA3NWQ2NWZjZWI4NDQ5MmZQSwECFAAUAAAACADdeFNR0Mkxhj4BAAA5AQAATgAAAAAAAAAAAAAA + toG6NgAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzBiL2FhZGY1ZDQ4YjJj + MjZmZmE3Yzg4MTAwMTBhMmIwODgwZjZhY2FkUEsBAhQAFAAAAAgA3XhTURN4xB+uAAAAqQAAAE4A + AAAAAAAAAAAAALaBZDgAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xMy8y + ZTE3MWJjY2ZhZjBjNTFkNjRkNTM4MGFlMWIzZTBiMTU0YWNlNFBLAQIUABQAAAAIAN14U1Fqp/Im + rwAAAKoAAABOAAAAAAAAAAAAAAC2gX45AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i + amVjdHMvMTMvZThjNjJkZDNiMDQxNDIwYTNkMmFlMWIzODkwMTMzZmYxNGVmYzJQSwECFAAUAAAA + CADdeFNRgYo4CdkBAADUAQAATgAAAAAAAAAAAAAAtoGZOgAAbm9kZWpzLWRvY3MtaGVsbG8td29y + bGQvLmdpdC9vYmplY3RzLzFkLzAyMjViMDA5MmMxMjUzNDVjMDEzZWMxZjBhZDljNGY0NmIwMTZi + UEsBAhQAFAAAAAgA3XhTUUEeqqSgAAAAmwAAAE4AAAAAAAAAAAAAALaB3jwAAG5vZGVqcy1kb2Nz + LWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xZi84MmM0ZTZjZjA4MzUyZjJmOGQ0NWJkOTY5OWVm + YjcxMzM1MTE3YlBLAQIUABQAAAAIAN14U1HXWUxXrgIAAKkCAABOAAAAAAAAAAAAAAC2geo9AABu + b2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMjEvMDcxMDc1YzI0NTk5ZWU5ODI1 + NGY3MDJiY2ZjNTA0Y2RjMjc1YTZQSwECFAAUAAAACADdeFNRfCB6aU0AAABIAAAATgAAAAAAAAAA + AAAAtoEEQQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzIxL2RhYzM1NWJi + MzdkOGEwYmUyMDQ5ODVmNzE5MmUwZGMyYzMwYTRmUEsBAhQAFAAAAAgA3XhTUZmXzfAfAQAAGgEA + AE4AAAAAAAAAAAAAALaBvUEAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8y + My9iY2M4ZmQ1YTI4YmY2ZDFlNTg3NjNkNTUzZTBjN2I2Y2RlM2EzZFBLAQIUABQAAAAIAN14U1Ff + UDIwOQAAADQAAABOAAAAAAAAAAAAAAC2gUhDAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0 + L29iamVjdHMvMjgvZTc2ZGIzNTk1NWY0NmUxMjJjNzhjZmJhNzk0OWYxZGNhNzVjMGFQSwECFAAU + AAAACADdeFNRmwVrkD8BAAA6AQAATgAAAAAAAAAAAAAAtoHtQwAAbm9kZWpzLWRvY3MtaGVsbG8t + d29ybGQvLmdpdC9vYmplY3RzLzMzLzQ0ZjNlMWFlZDk1MzNmYzA4ODEyOGZkZGM2YzNmZDI3Y2M3 + YjQ0UEsBAhQAFAAAAAgA3XhTUXThnirtAAAA6AAAAE4AAAAAAAAAAAAAALaBmEUAAG5vZGVqcy1k + b2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy80MS85MmEwZWQ3OWU5OTljNGRhMWMxY2JkMzRj + YzBiZjU3MWI3OWFiNVBLAQIUABQAAAAIAN14U1E4GZfvOAAAADMAAABOAAAAAAAAAAAAAAC2gfFG + AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNGMvN2RiNTAzMmNmNDVmYmE2 + ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGNQSwECFAAUAAAACADdeFNRXlCB8rUAAACwAAAATgAAAAAA + AAAAAAAAtoGVRwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzU4LzNhNzU2 + NTkzYmNlNzZlMjZjNmNjNzQ0YzE5ZGYyOWNhNzYyN2EwUEsBAhQAFAAAAAgA3XhTUV5CN0QgAQAA + GwEAAE4AAAAAAAAAAAAAALaBtkgAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0 + cy81Zi85ZTI3OWM3NmU2ZjdmNjczMDRiZDdjZTRkNjBjZDA5MTgyMjRmOVBLAQIUABQAAAAIAN14 + U1HVLTEg7gAAAOkAAABOAAAAAAAAAAAAAAC2gUJKAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u + Z2l0L29iamVjdHMvNjAvZDkxODkwYjA1ZGQ0NzRmYTVmMmNkZGNjYjkwYTIzMjJkMmE0ZTlQSwEC + FAAUAAAACADdeFNReljpW+4AAADpAAAATgAAAAAAAAAAAAAAtoGcSwAAbm9kZWpzLWRvY3MtaGVs + bG8td29ybGQvLmdpdC9vYmplY3RzLzYxLzM1N2NkNDk4ZWJmMWRjMzlmYjU3NWJjOTRkZmZkOTZm + YjcwZDlkUEsBAhQAFAAAAAgA3XhTUWRK9TS4AAAAswAAAE4AAAAAAAAAAAAAALaB9kwAAG5vZGVq + cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy82ZS9mODM2NTk2NDQyMDRhOTQ3M2FjOTBi + OWU1YTc5OTY5NDI1ZjY5ZVBLAQIUABQAAAAIAN14U1ECN1ry4AEAANsBAABOAAAAAAAAAAAAAAC2 + gRpOAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNzMvZTYwNGVmYTU0Y2M2 + OTljNGIzZDIwN2QyZDcxODFjZmNlOWFiM2VQSwECFAAUAAAACADdeFNRofppnt8BAADaAQAATgAA + AAAAAAAAAAAAtoFmUAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzc0L2Nl + YTZkZjJiMzYwZTE3MWViNWRlMGQwZDBiMGUxMWVjZmUzZjVjUEsBAhQAFAAAAAgA3XhTUXRcugk4 + AAAAMwAAAE4AAAAAAAAAAAAAALaBsVIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq + ZWN0cy83Zi9lMmEwOWVhNTU4YmQ1NmRiNzhhOTlmZWI0OWEyNThmNTc3OTI3NFBLAQIUABQAAAAI + AN14U1FxP2WTtQAAALAAAABOAAAAAAAAAAAAAAC2gVVTAABub2RlanMtZG9jcy1oZWxsby13b3Js + ZC8uZ2l0L29iamVjdHMvODAvYjJkMGMyNTYyN2RjNDk5MGVlZDliZGZkMGUwODExOWVkMGUyNWRQ + SwECFAAUAAAACADdeFNR9/hnJD8BAAA6AQAATgAAAAAAAAAAAAAAtoF2VAAAbm9kZWpzLWRvY3Mt + aGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzgzLzM0NzM3NTVlOWNkZjAxYmM1ZDAwMzA4OTA2MjFi + N2JjYWQ5ZGFmUEsBAhQAFAAAAAgA3XhTUdG2vNy2AAAAsQAAAE4AAAAAAAAAAAAAALaBIVYAAG5v + ZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy84Yy9kNDdkZDZmMmRiZWUxOWFmOTVk + OTcwZGI1MDhiNmE0NWI4ZThlNFBLAQIUABQAAAAIAN14U1ExgJVR3gEAANkBAABOAAAAAAAAAAAA + AAC2gUNXAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvOGUvNzdjM2RmOWRj + NjgzMjI4OGUzMGIyOWQzZTUwNTUyY2ZlMzcyOThQSwECFAAUAAAACADdeFNRVfMDvB8BAAAaAQAA + TgAAAAAAAAAAAAAAtoGNWQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzk5 + LzhlOWE3YWNhZGYyMDYyM2U1MDc2ZjI5NDZmNDdhMmU1MDY5YmYyUEsBAhQAFAAAAAgA3XhTUfZn + 2USkAAAAnwAAAE4AAAAAAAAAAAAAALaBGFsAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQv + b2JqZWN0cy85Yi9mMjgyODc1MDA5MzkzZjhkMTM0MGM2NWFhYmIxZDc0ZDVmNmYwNVBLAQIUABQA + AAAIAN14U1E91+AgeAEAAHMBAABOAAAAAAAAAAAAAAC2gShcAABub2RlanMtZG9jcy1oZWxsby13 + b3JsZC8uZ2l0L29iamVjdHMvOWMvNDQxYTI5NDhlZjg4MWMxYzE4ZWM0ZTg1MzFkZGJlZjk3Yjlh + ZjZQSwECFAAUAAAACADdeFNRC0v1WTgAAAAzAAAATgAAAAAAAAAAAAAAtoEMXgAAbm9kZWpzLWRv + Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2EzLzgxMDU0YTFmOTA4MmIwZTgxM2FjNzhkOGI1 + MGRkZDQxZGRlMDhhUEsBAhQAFAAAAAgA3XhTURwoF1e4AAAAswAAAE4AAAAAAAAAAAAAALaBsF4A + AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hNC8yYTVjMGNmMDU4Yjg2ZGUy + ZjQ2OTBjZjE2NWFkYzFkZjFlYzY4ZFBLAQIUABQAAAAIAN14U1FxFsVMTQAAAEgAAABOAAAAAAAA + AAAAAAC2gdRfAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYWEvZDI5MmZh + YTJlNWY3NTRhZmI2Y2JhZjQ1Y2E4MWMwYWE4NTU1ZjJQSwECFAAUAAAACADdeFNR/lEQgVwAAABX + AAAATgAAAAAAAAAAAAAAtoGNYAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3Rz + L2FjL2M3ZmEzZmRlY2Q1N2E4YjBhNTQzNmU4YWU5Yzc4MjZhMzY2YzJmUEsBAhQAFAAAAAgA3XhT + Ub6QNY8+AQAAOQEAAE4AAAAAAAAAAAAAALaBVWEAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n + aXQvb2JqZWN0cy9hZS9iNGQ5MGEzMDEzN2E4Zjk0NDkxOTIzYzg0Yzc4YWQ3OGFjOTJjZVBLAQIU + ABQAAAAIAN14U1EEyxdB7QAAAOgAAABOAAAAAAAAAAAAAAC2gf9iAABub2RlanMtZG9jcy1oZWxs + by13b3JsZC8uZ2l0L29iamVjdHMvYWYvNWVhNTQ1MGEwZWFmYjE2NmRhMjQ2YTdjYjZhNzZkYWU4 + NjY4MTFQSwECFAAUAAAACADdeFNRq8C8INgAAADTAAAATgAAAAAAAAAAAAAAtoFYZAAAbm9kZWpz + LWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2I3L2I3YjZmMzg1NDAyMjlmNzE5YTkzNTc2 + MmIwYjVmOTQ5OGZmZDQ1UEsBAhQAFAAAAAgA3XhTUbX2Ob3WAAAA0QAAAE4AAAAAAAAAAAAAALaB + nGUAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9iZS83OGUxZmVjYWY4Njc1 + ODI0MzE4ZmFkMDIzMTU4NjNiMGNjYjQ3NFBLAQIUABQAAAAIAN14U1H1PcDi1QAAANAAAABOAAAA + AAAAAAAAAAC2gd5mAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYzgvZDM3 + NGM2ZGYyYzI3OThlMGMyYThjNTljMWQwMmQ5ZDcxODQ5NDhQSwECFAAUAAAACADdeFNRHhokL4IA + AAB9AAAATgAAAAAAAAAAAAAAtoEfaAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmpl + Y3RzL2NiLzYwYTcwNGZlMmU4YzgzYTIyM2I3MjliYjI4YzRlODFkM2I0OThhUEsBAhQAFAAAAAgA + 3XhTUX986Eg+AQAAOQEAAE4AAAAAAAAAAAAAALaBDWkAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk + Ly5naXQvb2JqZWN0cy9jZi9iZTk0MjEzNTA2MTY0OTc0ZWJiNzJkOWZlMWE1YzdmMmUyZWZmMFBL + AQIUABQAAAAIAN14U1GYZ8JUTQAAAEgAAABOAAAAAAAAAAAAAAC2gbdqAABub2RlanMtZG9jcy1o + ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZDkvMGM2Y2RhMjYyMjQ0ZjU4MjY4ZjIxZjNmOTZlN2Q4 + Nzc5ZDJhNTZQSwECFAAUAAAACADdeFNRKaKThiABAAAbAQAATgAAAAAAAAAAAAAAtoFwawAAbm9k + ZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2RkLzc5YzIwOWI2NDdmNDYzYzFjMjVh + ZDhhZjE5ZWIxN2ZmOTgxYmI3UEsBAhQAFAAAAAgA3XhTUYn+aDpMAAAARwAAAE4AAAAAAAAAAAAA + ALaB/GwAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9kZS9jYzMxMjhmOGI5 + MGUyMGM4NGNiZjNmOTBjMTZlNzhhYzFjY2MwNlBLAQIUABQAAAAIAN14U1Eew56/IAEAABsBAABO + AAAAAAAAAAAAAAC2gbRtAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZGYv + OWY2NjM3ZTQyZGZlYzNkMmUyMTBiOWExNjY3ZGNkYmU2NzQwMTFQSwECFAAUAAAACADdeFNRVxA9 + trUAAACwAAAATgAAAAAAAAAAAAAAtoFAbwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9v + YmplY3RzL2UwL2M3MGQ5YmZkZTA5ZTgyZGRlMjIxM2M3MmY1ZDQ0NDM5NzQ2NzRkUEsBAhQAFAAA + AAgA3XhTUX0KXqI+AQAAOQEAAE4AAAAAAAAAAAAAALaBYXAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv + cmxkLy5naXQvb2JqZWN0cy9lNi9kMWEzNTcyMzFkNDI0ZjhmNmQ4N2UwY2E3NDYxMTllYmEzZWNh + YVBLAQIUABQAAAAIAN14U1FHXY8yuAAAALMAAABOAAAAAAAAAAAAAAC2gQtyAABub2RlanMtZG9j + cy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZWUvNmU3ZmI5NmJhZDQ0ZjdmYjU5MzQ4OTNkNjE0 + MTFjMmNlMDgyNjRQSwECFAAUAAAACADdeFNRFe9WQO4AAADpAAAATgAAAAAAAAAAAAAAtoEvcwAA + bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2VlLzcyYjQzYmY2OGNlYTJmMDYz + NWNjMDE1ZGRlYzY4MTdlNTVkNzY0UEsBAhQAFAAAAAgA3XhTUbFitb44AAAAMwAAAE4AAAAAAAAA + AAAAALaBiXQAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mMC9hYWQxMDYw + ZmZlODNhYjM1YTA5ZWM4ZGQyYmUwZGJkMzk5YjJmY1BLAQIUABQAAAAIAN14U1HztfOWaAAAAGMA + AABOAAAAAAAAAAAAAAC2gS11AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv + ZjAvYzhhMzZiNWFkYTUyMzA1MmM3MTgxZjQ4Zjk2MmE4NTllOGIzNzdQSwECFAAUAAAACADdeFNR + ya9lWj4BAAA5AQAATgAAAAAAAAAAAAAAtoEBdgAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp + dC9vYmplY3RzL2Y0L2VkNzM5YjlhNzViNWIyMzYzZTMzZDFjM2VmOTdlNTZiNDkzNjdiUEsBAhQA + FAAAAAgA3XhTUeAtL5k+AQAAOQEAAE4AAAAAAAAAAAAAALaBq3cAAG5vZGVqcy1kb2NzLWhlbGxv + LXdvcmxkLy5naXQvb2JqZWN0cy9mNy80OTFiODM1MmUwYjNkZmIxZDljYTY4NzQwM2VhYjE4ZTE0 + NWI3N1BLAQIUABQAAAAIAN14U1F4Yy5zowAAAJ4AAABOAAAAAAAAAAAAAAC2gVV5AABub2RlanMt + ZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjcvYjM1ZDVkOGQ5YzgwM2UzZjJlZTUzZTlh + N2NiYWY0MzQ2MzE5MGFQSwECFAAUAAAACADdeFNRUViJ7+4AAADpAAAATgAAAAAAAAAAAAAAtoFk + egAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2ZhLzFhNzY1ZjJkZjhhNTFl + YmUxODM1MTkwYjUzMjdlNTQ1NDJkYmMwUEsBAhQAFAAAAAgA3XhTUSoldayrBwAAFAsAAFsAAAAA + AAAAAAAAALaBvnsAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9wYWNrL3Bh + Y2stY2E1ZjIxODkwNTUzOGVkNzNhZTg1ZGNiMzA4ZmY2NTcyNzM2NTJiMy5pZHhQSwECFAAUAAAA + CADdeFNRWmHjbiU1AADtNgAAXAAAAAAAAAAAAAAAtoHigwAAbm9kZWpzLWRvY3MtaGVsbG8td29y + bGQvLmdpdC9vYmplY3RzL3BhY2svcGFjay1jYTVmMjE4OTA1NTM4ZWQ3M2FlODVkY2IzMDhmZjY1 + NzI3MzY1MmIzLnBhY2tQSwECFAAUAAAACADdeFNRs/U4pykAAAApAAAALgAAAAAAAAAAAAAAtoGB + uQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9yZWZzL2hlYWRzL21hc3RlclBLAQIUABQA + AAAIAN14U1Gz9TinKQAAACkAAAA3AAAAAAAAAAAAAAC2gfa5AABub2RlanMtZG9jcy1oZWxsby13 + b3JsZC8uZ2l0L3JlZnMvcmVtb3Rlcy9vcmlnaW4vbWFzdGVyUEsBAhQAFAAAAAgA3XhTUamxxldl + AQAAZwIAAC8AAAAAAAAAAAAAALaBdLoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVz + c0FwcC8uZ2l0aWdub3JlUEsBAhQAFAAAAAgA3XhTUbrgEiLdAAAAQQEAAC0AAAAAAAAAAAAAALaB + JrwAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9pbmRleC5qc1BLAQIUABQA + AAAIAN14U1FBwXdOjwIAAJ8EAAAsAAAAAAAAAAAAAAC2gU69AABub2RlanMtZG9jcy1oZWxsby13 + b3JsZC9teUV4cHJlc3NBcHAvTElDRU5TRVBLAQIUABQAAAAIAN14U1GqDG7dTAAAAGEAAAA2AAAA + AAAAAAAAAAC2gSfAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NBcHAvcGFja2Fn + ZS1sb2NrLmpzb25QSwECFAAUAAAACADdeFNRsDZHUq8AAAAaAQAAMQAAAAAAAAAAAAAAtoHHwAAA + bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3BhY2thZ2UuanNvblBLAQIUABQA + AAAIAN14U1EgEDXUuAAAAFEBAAAxAAAAAAAAAAAAAAC2gcXBAABub2RlanMtZG9jcy1oZWxsby13 + b3JsZC9teUV4cHJlc3NBcHAvcHJvY2Vzcy5qc29uUEsBAhQAFAAAAAgA3XhTUaki5WtgAQAAzQIA + AC4AAAAAAAAAAAAAALaBzMIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9S + RUFETUUubWRQSwECFAAUAAAACADdeFNRSegmiIYEAAAGCgAALwAAAAAAAAAAAAAAtoF4xAAAbm9k + ZWpzLWRvY3MtaGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3dlYi5jb25maWdQSwUGAAAAAFkAWQBZ + JwAAS8kAAAAA + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '61626' + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: POST + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 19 Oct 2020 22:08:02 GMT + expires: + - '-1' + location: + - https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-19_22-08-02Z + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;Secure;Domain=up-nodeapphlgspsdrcp24mo.scm.azurewebsites.net + - ARRAffinitySameSite=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapphlgspsdrcp24mo.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"caac0bba1039454fbe7fe80f2ca81107","status":1,"status_text":"Building + and Deploying ''caac0bba1039454fbe7fe80f2ca81107''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Preparing deployment for commit id ''caac0bba10''.","received_time":"2020-10-19T22:08:04.3417727Z","start_time":"2020-10-19T22:08:05.3891709Z","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":"up-nodeapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '583' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:08:05 GMT + expires: + - '-1' + location: + - https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;Secure;Domain=up-nodeapphlgspsdrcp24mo.scm.azurewebsites.net + - ARRAffinitySameSite=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapphlgspsdrcp24mo.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"caac0bba1039454fbe7fe80f2ca81107","status":1,"status_text":"Building + and Deploying ''caac0bba1039454fbe7fe80f2ca81107''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"Generating deployment script.","received_time":"2020-10-19T22:08:04.3417727Z","start_time":"2020-10-19T22:08:05.3891709Z","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":"up-nodeapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:08:11 GMT + expires: + - '-1' + location: + - https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;Secure;Domain=up-nodeapphlgspsdrcp24mo.scm.azurewebsites.net + - ARRAffinitySameSite=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapphlgspsdrcp24mo.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 + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Type: + - application/octet-stream + User-Agent: + - AZURECLI/2.13.0 + method: GET + uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"caac0bba1039454fbe7fe80f2ca81107","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created + via a push deployment","progress":"","received_time":"2020-10-19T22:08:04.3417727Z","start_time":"2020-10-19T22:08:05.3891709Z","end_time":"2020-10-19T22:08:17.9495807Z","last_success_end_time":"2020-10-19T22:08:17.9495807Z","complete":true,"active":false,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '682' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;Secure;Domain=up-nodeapphlgspsdrcp24mo.scm.azurewebsites.net + - ARRAffinitySameSite=3f2172767c4e6c3dbda08cf9b2c8a2d19aba675d62af7c7ed63b89c940e40a8b;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapphlgspsdrcp24mo.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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:47.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5411' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:08:18 GMT + etag: + - '"1D6A664476CE16B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:47.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5411' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:08:18 GMT + etag: + - '"1D6A664476CE16B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:47.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}' + headers: + cache-control: + - no-cache + content-length: + - '5411' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:08:19 GMT + etag: + - '"1D6A664476CE16B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-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 show + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/xml + date: + - Mon, 19 Oct 2020 22:08: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: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "up-nodeapp000003", "type": "Microsoft.Web/sites"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2019-08-01 + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"Hostname + ''up-nodeapp000003'' already exists. Please select a different name."}' + headers: + cache-control: + - no-cache + content-length: + - '144' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:08: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjbwqotnoveq2do/providers/Microsoft.Web/sites/web-msiklix37hgr6ls7","name":"web-msiklix37hgr6ls7","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"web-msiklix37hgr6ls7","state":"Running","hostNames":["web-msiklix37hgr6ls7.azurewebsites.net"],"webSpace":"clitest.rgjbwqotnoveq2do-WestUSwebspace","selfLink":"https://waws-prod-bay-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgjbwqotnoveq2do-WestUSwebspace/sites/web-msiklix37hgr6ls7","repositorySiteName":"web-msiklix37hgr6ls7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msiklix37hgr6ls7.azurewebsites.net","web-msiklix37hgr6ls7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"web-msiklix37hgr6ls7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msiklix37hgr6ls7.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.rgjbwqotnoveq2do/providers/Microsoft.Web/serverfarms/web-msi-planenuynfg6","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T23:01:01.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"web-msiklix37hgr6ls7","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.42.231.5","possibleInboundIpAddresses":"104.42.231.5,40.112.243.21","ftpUsername":"web-msiklix37hgr6ls7\\$web-msiklix37hgr6ls7","ftpsHostName":"ftps://waws-prod-bay-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.42.225.41,104.42.224.45,104.42.225.216,104.42.230.71","possibleOutboundIpAddresses":"104.42.225.41,104.42.224.45,104.42.225.216,104.42.230.71,104.42.222.120,104.42.222.245,104.42.220.176,104.42.221.41,23.100.37.159,104.42.231.5,40.112.243.21","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgjbwqotnoveq2do","defaultHostName":"web-msiklix37hgr6ls7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/sites/up-statichtmlapp4vsnekcu","name":"up-statichtmlapp4vsnekcu","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-statichtmlapp4vsnekcu","state":"Running","hostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net"],"webSpace":"clitesthuglyqrr7qkql463o-CentralUSwebspace","selfLink":"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthuglyqrr7qkql463o-CentralUSwebspace/sites/up-statichtmlapp4vsnekcu","repositorySiteName":"up-statichtmlapp4vsnekcu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-statichtmlapp4vsnekcu.azurewebsites.net","up-statichtmlapp4vsnekcu.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-statichtmlapp4vsnekcu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-statichtmlapp4vsnekcu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthuglyqrr7qkql463o/providers/Microsoft.Web/serverfarms/up-statichtmlplang5vqnr2","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:05:11.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-statichtmlapp4vsnekcu","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"52.176.165.69","possibleInboundIpAddresses":"52.176.165.69","ftpUsername":"up-statichtmlapp4vsnekcu\\$up-statichtmlapp4vsnekcu","ftpsHostName":"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","possibleOutboundIpAddresses":"52.176.165.69,52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-039","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesthuglyqrr7qkql463o","defaultHostName":"up-statichtmlapp4vsnekcu.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/sites/up-different-skuswrab6t6boitz27icj63tfec","name":"up-different-skuswrab6t6boitz27icj63tfec","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuswrab6t6boitz27icj63tfec","state":"Running","hostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net"],"webSpace":"clitestlwibndn7vu2dqzpkb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestlwibndn7vu2dqzpkb-CentralUSwebspace/sites/up-different-skuswrab6t6boitz27icj63tfec","repositorySiteName":"up-different-skuswrab6t6boitz27icj63tfec","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","up-different-skuswrab6t6boitz27icj63tfec.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuswrab6t6boitz27icj63tfec.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/clitestlwibndn7vu2dqzpkb/providers/Microsoft.Web/serverfarms/up-different-skus-plan7q6i7g5hkcq24kqmvz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:24.1133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuswrab6t6boitz27icj63tfec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.7","possibleInboundIpAddresses":"13.89.172.7","ftpUsername":"up-different-skuswrab6t6boitz27icj63tfec\\$up-different-skuswrab6t6boitz27icj63tfec","ftpsHostName":"ftps://waws-prod-dm1-161.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45","possibleOutboundIpAddresses":"13.89.172.7,168.61.219.133,168.61.222.59,168.61.218.81,23.99.226.45,168.61.218.191,168.61.222.132,168.61.222.163,168.61.222.157,168.61.219.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestlwibndn7vu2dqzpkb","defaultHostName":"up-different-skuswrab6t6boitz27icj63tfec.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/sites/up-pythonapps6e3u75ftog6","name":"up-pythonapps6e3u75ftog6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonapps6e3u75ftog6","state":"Running","hostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net"],"webSpace":"clitestc2ofripo2j6eanpg2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestc2ofripo2j6eanpg2-CentralUSwebspace/sites/up-pythonapps6e3u75ftog6","repositorySiteName":"up-pythonapps6e3u75ftog6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapps6e3u75ftog6.azurewebsites.net","up-pythonapps6e3u75ftog6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonapps6e3u75ftog6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapps6e3u75ftog6.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/clitestc2ofripo2j6eanpg2/providers/Microsoft.Web/serverfarms/up-pythonplani3aho5ctv47","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:45.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonapps6e3u75ftog6","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-pythonapps6e3u75ftog6\\$up-pythonapps6e3u75ftog6","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136","possibleOutboundIpAddresses":"13.89.172.23,40.122.152.175,13.89.56.149,40.77.105.187,40.77.107.136,40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-173","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestc2ofripo2j6eanpg2","defaultHostName":"up-pythonapps6e3u75ftog6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-gh-action/providers/Microsoft.Web/sites/node-windows-gha","name":"node-windows-gha","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"node-windows-gha","state":"Running","hostNames":["node-windows-gha.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/node-windows-gha","repositorySiteName":"node-windows-gha","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha.azurewebsites.net","node-windows-gha.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"node-windows-gha.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-17T08:46:47.42","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"node-windows-gha","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"node-windows-gha\\$node-windows-gha","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-gh-action","defaultHostName":"node-windows-gha.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf200","name":"asdfsdf200","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf200","state":"Running","hostNames":["asdfsdf200.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf200","repositorySiteName":"asdfsdf200","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf200.azurewebsites.net","asdfsdf200.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"-"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf200.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf200.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus__1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-16T18:26:27.4633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf200","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf200\\$asdfsdf200","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf200.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf211","name":"asdfsdf211","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf211","state":"Running","hostNames":["asdfsdf211.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf211","repositorySiteName":"asdfsdf211","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf211.azurewebsites.net","asdfsdf211.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf211.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf211.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T21:54:49.41","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf211","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf211\\$asdfsdf211","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf211.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf172","name":"asdfsdf172","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"asdfsdf172","state":"Running","hostNames":["asdfsdf172.azurewebsites.net"],"webSpace":"calvin-test-bug2-CentralUSwebspace","selfLink":"https://waws-prod-dm1-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-bug2-CentralUSwebspace/sites/asdfsdf172","repositorySiteName":"asdfsdf172","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf172.azurewebsites.net","asdfsdf172.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf172.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf172.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/calvin-test-bug2/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-16T19:14:36.6966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf172","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.69.190.41","possibleInboundIpAddresses":"40.69.190.41","ftpUsername":"asdfsdf172\\$asdfsdf172","ftpsHostName":"ftps://waws-prod-dm1-095.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.36.174,52.173.33.211,52.173.38.3","possibleOutboundIpAddresses":"40.69.190.41,13.89.184.220,52.176.48.248,52.165.230.98,13.89.189.195,52.173.36.174,52.173.33.211,52.173.38.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf172.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-155.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.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/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T22:07:47.9266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"13.89.172.6","possibleInboundIpAddresses":"13.89.172.6","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-155.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51","possibleOutboundIpAddresses":"13.89.172.6,13.67.218.66,23.101.119.168,13.67.143.202,104.43.212.51,52.173.22.3,168.61.210.239,13.89.41.125","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-155","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/sites/up-nodeappw7dasd6yvl7f2y","name":"up-nodeappw7dasd6yvl7f2y","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappw7dasd6yvl7f2y","state":"Running","hostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net"],"webSpace":"clitestdmxelovafxoqlnmzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdmxelovafxoqlnmzl-CentralUSwebspace/sites/up-nodeappw7dasd6yvl7f2y","repositorySiteName":"up-nodeappw7dasd6yvl7f2y","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappw7dasd6yvl7f2y.azurewebsites.net","up-nodeappw7dasd6yvl7f2y.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappw7dasd6yvl7f2y.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/clitestdmxelovafxoqlnmzl/providers/Microsoft.Web/serverfarms/up-nodeplanlauzzhqihh5cb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:01:12.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappw7dasd6yvl7f2y","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"40.122.36.65","possibleInboundIpAddresses":"40.122.36.65","ftpUsername":"up-nodeappw7dasd6yvl7f2y\\$up-nodeappw7dasd6yvl7f2y","ftpsHostName":"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31","possibleOutboundIpAddresses":"40.122.36.65,104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-135","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestdmxelovafxoqlnmzl","defaultHostName":"up-nodeappw7dasd6yvl7f2y.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4","state":"Running","hostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net"],"webSpace":"clitestx43gh6t3qkhk3xpfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-159.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx43gh6t3qkhk3xpfo-CentralUSwebspace/sites/up-different-skusrex7cyhhprsyw34d3cy4cs4","repositorySiteName":"up-different-skusrex7cyhhprsyw34d3cy4cs4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","up-different-skusrex7cyhhprsyw34d3cy4cs4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skusrex7cyhhprsyw34d3cy4cs4.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/clitestx43gh6t3qkhk3xpfo/providers/Microsoft.Web/serverfarms/up-different-skus-plan4lxblh7q5dmmkbfpjk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.5033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skusrex7cyhhprsyw34d3cy4cs4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.3","possibleInboundIpAddresses":"13.89.172.3","ftpUsername":"up-different-skusrex7cyhhprsyw34d3cy4cs4\\$up-different-skusrex7cyhhprsyw34d3cy4cs4","ftpsHostName":"ftps://waws-prod-dm1-159.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42","possibleOutboundIpAddresses":"13.89.172.3,104.43.201.250,104.208.37.158,104.208.34.190,104.208.36.42,104.208.36.234,104.43.202.37,104.208.35.64,104.43.196.83,104.43.201.174","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-159","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestx43gh6t3qkhk3xpfo","defaultHostName":"up-different-skusrex7cyhhprsyw34d3cy4cs4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/sites/up-nodeappheegmu2q2voxwc","name":"up-nodeappheegmu2q2voxwc","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeappheegmu2q2voxwc","state":"Running","hostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net"],"webSpace":"clitestt2w4pfudbh2xccddp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestt2w4pfudbh2xccddp-CentralUSwebspace/sites/up-nodeappheegmu2q2voxwc","repositorySiteName":"up-nodeappheegmu2q2voxwc","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappheegmu2q2voxwc.azurewebsites.net","up-nodeappheegmu2q2voxwc.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeappheegmu2q2voxwc.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappheegmu2q2voxwc.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/clitestt2w4pfudbh2xccddp/providers/Microsoft.Web/serverfarms/up-nodeplanpzwdne62lyt24","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:48:18.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeappheegmu2q2voxwc","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"52.173.151.229","possibleInboundIpAddresses":"52.173.151.229","ftpUsername":"up-nodeappheegmu2q2voxwc\\$up-nodeappheegmu2q2voxwc","ftpsHostName":"ftps://waws-prod-dm1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243","possibleOutboundIpAddresses":"52.173.151.229,52.173.255.250,52.173.145.112,52.165.223.181,52.165.223.243,52.176.167.96,52.173.78.232","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestt2w4pfudbh2xccddp","defaultHostName":"up-nodeappheegmu2q2voxwc.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/sites/up-dotnetcoreapp7svor77g","name":"up-dotnetcoreapp7svor77g","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"up-dotnetcoreapp7svor77g","state":"Running","hostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net"],"webSpace":"clitestopfizajda2xz5oesc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestopfizajda2xz5oesc-CentralUSwebspace/sites/up-dotnetcoreapp7svor77g","repositorySiteName":"up-dotnetcoreapp7svor77g","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp7svor77g.azurewebsites.net","up-dotnetcoreapp7svor77g.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-dotnetcoreapp7svor77g.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp7svor77g.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Shared","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestopfizajda2xz5oesc/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanj4nwo2u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:14:25.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-dotnetcoreapp7svor77g","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"23.101.120.195","possibleInboundIpAddresses":"23.101.120.195","ftpUsername":"up-dotnetcoreapp7svor77g\\$up-dotnetcoreapp7svor77g","ftpsHostName":"ftps://waws-prod-dm1-115.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116","possibleOutboundIpAddresses":"23.101.120.195,23.99.196.200,168.61.209.6,168.61.212.223,23.99.227.116,23.99.198.83,23.99.224.230,23.99.225.216","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestopfizajda2xz5oesc","defaultHostName":"up-dotnetcoreapp7svor77g.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/sites/up-pythonappfg4cw4tu646o","name":"up-pythonappfg4cw4tu646o","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappfg4cw4tu646o","state":"Running","hostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net"],"webSpace":"clitest7v26ts2wyzg23npzl-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7v26ts2wyzg23npzl-CentralUSwebspace/sites/up-pythonappfg4cw4tu646o","repositorySiteName":"up-pythonappfg4cw4tu646o","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappfg4cw4tu646o.azurewebsites.net","up-pythonappfg4cw4tu646o.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappfg4cw4tu646o.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappfg4cw4tu646o.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/clitest7v26ts2wyzg23npzl/providers/Microsoft.Web/serverfarms/up-pythonplansquryr3ua2u","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:27:58.1533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappfg4cw4tu646o","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappfg4cw4tu646o\\$up-pythonappfg4cw4tu646o","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7v26ts2wyzg23npzl","defaultHostName":"up-pythonappfg4cw4tu646o.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck","state":"Running","hostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net"],"webSpace":"clitestefrbvfmhoghdtjour-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestefrbvfmhoghdtjour-CentralUSwebspace/sites/up-different-skuszuxsnrdp4wmteeb6kya5bck","repositorySiteName":"up-different-skuszuxsnrdp4wmteeb6kya5bck","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","up-different-skuszuxsnrdp4wmteeb6kya5bck.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuszuxsnrdp4wmteeb6kya5bck.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/clitestefrbvfmhoghdtjour/providers/Microsoft.Web/serverfarms/up-different-skus-plan2gxcmuoi4n7opcysxe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:11:02.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuszuxsnrdp4wmteeb6kya5bck","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-different-skuszuxsnrdp4wmteeb6kya5bck\\$up-different-skuszuxsnrdp4wmteeb6kya5bck","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestefrbvfmhoghdtjour","defaultHostName":"up-different-skuszuxsnrdp4wmteeb6kya5bck.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/sites/up-pythonappvcyuuzngd2kz","name":"up-pythonappvcyuuzngd2kz","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappvcyuuzngd2kz","state":"Running","hostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net"],"webSpace":"clitestertz54nc4mbsxijwc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestertz54nc4mbsxijwc-CentralUSwebspace/sites/up-pythonappvcyuuzngd2kz","repositorySiteName":"up-pythonappvcyuuzngd2kz","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappvcyuuzngd2kz.azurewebsites.net","up-pythonappvcyuuzngd2kz.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappvcyuuzngd2kz.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappvcyuuzngd2kz.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/clitestertz54nc4mbsxijwc/providers/Microsoft.Web/serverfarms/up-pythonplan6wgon7wikjn","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T20:18:09.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappvcyuuzngd2kz","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappvcyuuzngd2kz\\$up-pythonappvcyuuzngd2kz","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestertz54nc4mbsxijwc","defaultHostName":"up-pythonappvcyuuzngd2kz.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/sites/up-pythonappv54a5xrhcyum","name":"up-pythonappv54a5xrhcyum","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-pythonappv54a5xrhcyum","state":"Running","hostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net"],"webSpace":"clitesttzxlripkg2ro75kfo-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttzxlripkg2ro75kfo-CentralUSwebspace/sites/up-pythonappv54a5xrhcyum","repositorySiteName":"up-pythonappv54a5xrhcyum","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappv54a5xrhcyum.azurewebsites.net","up-pythonappv54a5xrhcyum.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-pythonappv54a5xrhcyum.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappv54a5xrhcyum.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/clitesttzxlripkg2ro75kfo/providers/Microsoft.Web/serverfarms/up-pythonplanuocv6f5rdbo","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:11:58.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-pythonappv54a5xrhcyum","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-pythonappv54a5xrhcyum\\$up-pythonappv54a5xrhcyum","ftpsHostName":"ftps://waws-prod-dm1-179.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190","possibleOutboundIpAddresses":"13.86.62.220,13.86.62.224,13.86.62.234,13.86.63.92,13.86.63.124,13.86.63.190,13.89.112.174,13.89.113.247,13.89.115.189,13.89.115.253,13.89.116.25,13.89.116.109,13.86.38.212,13.86.39.43,13.89.105.11,52.143.247.236,52.143.247.253,52.154.168.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-179","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttzxlripkg2ro75kfo","defaultHostName":"up-pythonappv54a5xrhcyum.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/asdfsdf173","name":"asdfsdf173","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf173","state":"Running","hostNames":["asdfsdf173.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf173","repositorySiteName":"asdfsdf173","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf173.azurewebsites.net","asdfsdf173.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf173.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf173.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-16T19:08:06.3466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf173","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf173\\$asdfsdf173","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"asdfsdf173.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf153","name":"asdfsdf153","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf153","state":"Running","hostNames":["asdfsdf153.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf153","repositorySiteName":"asdfsdf153","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf153.azurewebsites.net","asdfsdf153.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf153.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf153.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:09:26.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf153","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf153\\$asdfsdf153","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf153.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-12","name":"calvin-tls-12","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-12","state":"Running","hostNames":["calvin-tls-12.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-12","repositorySiteName":"calvin-tls-12","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["calvin-tls-12.azurewebsites.net","calvin-tls-12.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"calvin-tls-12.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-12.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-12","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-12\\$calvin-tls-12","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-12.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf20","name":"asdfsdf20","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf20","state":"Running","hostNames":["asdfsdf20.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf20","repositorySiteName":"asdfsdf20","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf20.azurewebsites.net","asdfsdf20.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf20.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf20.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:48:12.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf20","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf20\\$asdfsdf20","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf20.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-bug2/providers/Microsoft.Web/sites/calvin-tls-11","name":"calvin-tls-11","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"calvin-tls-11","state":"Running","hostNames":["111.calvinnamtest.com","11.calvinnamtest.com","calvin-tls-11.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/calvin-tls-11","repositorySiteName":"calvin-tls-11","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["11.calvinnamtest.com","111.calvinnamtest.com","calvin-tls-11.azurewebsites.net","calvin-tls-11.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"11.calvinnamtest.com","sslState":"IpBasedEnabled","ipBasedSslResult":null,"virtualIP":"13.67.212.158","thumbprint":"7F7439C835E6425350C09DAAA6303D5226387EE8","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"111.calvinnamtest.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"calvin-tls-11.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:29:11.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"calvin-tls-11","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"calvin-tls-11\\$calvin-tls-11","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-bug2","defaultHostName":"calvin-tls-11.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf100","name":"asdfsdf100","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf100","state":"Running","hostNames":["asdfsdf100.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf100","repositorySiteName":"asdfsdf100","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf100.azurewebsites.net","asdfsdf100.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf100.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf100.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T22:27:46.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf100","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf100\\$asdfsdf100","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf100.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf154","name":"asdfsdf154","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf154","state":"Running","hostNames":["asdfsdf154.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf154","repositorySiteName":"asdfsdf154","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf154.azurewebsites.net","asdfsdf154.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf154.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf154.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:12:22.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf154","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf154\\$asdfsdf154","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf154.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf115","name":"asdfsdf115","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf115","state":"Running","hostNames":["asdfsdf115.azurewebsites.net"],"webSpace":"calcha_rg_Linux_centralus-CentralUSwebspace","selfLink":"https://waws-prod-dm1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calcha_rg_Linux_centralus-CentralUSwebspace/sites/asdfsdf115","repositorySiteName":"asdfsdf115","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf115.azurewebsites.net","asdfsdf115.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf115.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf115.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/calcha_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:37:23.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf115","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf115\\$asdfsdf115","ftpsHostName":"ftps://waws-prod-dm1-163.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","possibleOutboundIpAddresses":"13.89.172.8,23.99.137.208,168.61.145.147,40.122.175.86,104.43.167.211,23.99.134.30,40.122.170.142,104.43.136.75,104.43.140.0,23.99.128.183","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf115.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-nodelts-runtime","name":"test-nodelts-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-nodelts-runtime","state":"Running","hostNames":["test-nodelts-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-nodelts-runtime","repositorySiteName":"test-nodelts-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-nodelts-runtime.azurewebsites.net","test-nodelts-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-nodelts-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-nodelts-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:18:04.7833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-nodelts-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-nodelts-runtime\\$test-nodelts-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-nodelts-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf150","name":"asdfsdf150","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf150","state":"Running","hostNames":["asdfsdf150.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf150","repositorySiteName":"asdfsdf150","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf150.azurewebsites.net","asdfsdf150.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf150.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf150.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:54:16.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf150","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf150\\$asdfsdf150","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf150.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf210","name":"asdfsdf210","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf210","state":"Running","hostNames":["asdfsdf210.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf210","repositorySiteName":"asdfsdf210","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf210.azurewebsites.net","asdfsdf210.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf210.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf210.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-19T20:57:33.0766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf210","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf210\\$asdfsdf210","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf210.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf141","name":"asdfsdf141","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf141","state":"Running","hostNames":["asdfsdf141.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf141","repositorySiteName":"asdfsdf141","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf141.azurewebsites.net","asdfsdf141.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf141.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf141.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:58:03.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf141","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf141\\$asdfsdf141","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf141.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf151","name":"asdfsdf151","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf151","state":"Running","hostNames":["asdfsdf151.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf151","repositorySiteName":"asdfsdf151","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf151.azurewebsites.net","asdfsdf151.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf151.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf151.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:55:30.4466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf151","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf151\\$asdfsdf151","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf151.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf152","name":"asdfsdf152","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf152","state":"Running","hostNames":["asdfsdf152.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf152","repositorySiteName":"asdfsdf152","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf152.azurewebsites.net","asdfsdf152.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf152.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf152.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T05:01:48.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf152","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf152\\$asdfsdf152","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf152.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf41","name":"asdfsdf41","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf41","state":"Running","hostNames":["asdfsdf41.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf41","repositorySiteName":"asdfsdf41","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf41.azurewebsites.net","asdfsdf41.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PHP|7.3"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf41.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf41.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T02:19:09.8033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf41","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf41\\$asdfsdf41","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf41.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/testasdfdelete","name":"testasdfdelete","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"testasdfdelete","state":"Running","hostNames":["testasdfdelete.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/testasdfdelete","repositorySiteName":"testasdfdelete","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["testasdfdelete.azurewebsites.net","testasdfdelete.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"testasdfdelete.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"testasdfdelete.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T19:26:22.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"testasdfdelete","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"testasdfdelete\\$testasdfdelete","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"testasdfdelete.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf122","name":"asdfsdf122","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf122","state":"Running","hostNames":["asdfsdf122.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf122","repositorySiteName":"asdfsdf122","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf122.azurewebsites.net","asdfsdf122.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf122.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf122.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:20:35.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf122","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf122\\$asdfsdf122","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf122.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf142","name":"asdfsdf142","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf142","state":"Running","hostNames":["asdfsdf142.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf142","repositorySiteName":"asdfsdf142","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf142.azurewebsites.net","asdfsdf142.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf142.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf142.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:24:08.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf142","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf142\\$asdfsdf142","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf142.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf17","name":"asdfsdf17","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf17","state":"Running","hostNames":["asdfsdf17.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf17","repositorySiteName":"asdfsdf17","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf17.azurewebsites.net","asdfsdf17.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf17.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf17.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:34:58.2766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf17","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf17\\$asdfsdf17","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf17.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf171","name":"asdfsdf171","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf171","state":"Running","hostNames":["asdfsdf171.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf171","repositorySiteName":"asdfsdf171","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf171.azurewebsites.net","asdfsdf171.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf171.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf171.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T23:39:08.6833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf171","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf171\\$asdfsdf171","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf171.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf18","name":"asdfsdf18","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf18","state":"Running","hostNames":["asdfsdf18.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf18","repositorySiteName":"asdfsdf18","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf18.azurewebsites.net","asdfsdf18.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf18.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf18.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T18:40:25.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf18","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf18\\$asdfsdf18","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf18.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf140","name":"asdfsdf140","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf140","state":"Running","hostNames":["asdfsdf140.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf140","repositorySiteName":"asdfsdf140","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf140.azurewebsites.net","asdfsdf140.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf140.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf140.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:17:11.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf140","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf140\\$asdfsdf140","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf140.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/test-node-runtime","name":"test-node-runtime","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"test-node-runtime","state":"Running","hostNames":["test-node-runtime.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/test-node-runtime","repositorySiteName":"test-node-runtime","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["test-node-runtime.azurewebsites.net","test-node-runtime.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"test-node-runtime.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"test-node-runtime.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T02:00:42.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"test-node-runtime","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"test-node-runtime\\$test-node-runtime","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"test-node-runtime.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf143","name":"asdfsdf143","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf143","state":"Running","hostNames":["asdfsdf143.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf143","repositorySiteName":"asdfsdf143","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf143.azurewebsites.net","asdfsdf143.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf143.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf143.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T04:29:40.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf143","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf143\\$asdfsdf143","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf143.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf121","name":"asdfsdf121","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf121","state":"Running","hostNames":["asdfsdf121.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf121","repositorySiteName":"asdfsdf121","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf121.azurewebsites.net","asdfsdf121.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf121.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf121.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T19:08:52.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf121","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf121\\$asdfsdf121","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf121.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf26","name":"asdfsdf26","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf26","state":"Running","hostNames":["asdfsdf26.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf26","repositorySiteName":"asdfsdf26","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf26.azurewebsites.net","asdfsdf26.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf26.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf26.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-06T19:28:07.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf26","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf26\\$asdfsdf26","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf26.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf116","name":"asdfsdf116","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf116","state":"Running","hostNames":["asdfsdf116.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf116","repositorySiteName":"asdfsdf116","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf116.azurewebsites.net","asdfsdf116.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf116.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf116.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T18:43:21.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf116","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf116\\$asdfsdf116","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf116.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf110","name":"asdfsdf110","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf110","state":"Running","hostNames":["asdfsdf110.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf110","repositorySiteName":"asdfsdf110","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf110.azurewebsites.net","asdfsdf110.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JBOSSEAP|7.2-java8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf110.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf110.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Linux_centralus__1","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T17:57:54.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf110","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf110\\$asdfsdf110","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf110.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf130","name":"asdfsdf130","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"asdfsdf130","state":"Running","hostNames":["asdfsdf130.azurewebsites.net"],"webSpace":"calvin-test-rg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/calvin-test-rg-CentralUSwebspace/sites/asdfsdf130","repositorySiteName":"asdfsdf130","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf130.azurewebsites.net","asdfsdf130.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"JAVA|11-java11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf130.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf130.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/calvin-test-rg/providers/Microsoft.Web/serverfarms/calcha_asp_Windows_centralus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-14T20:56:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf130","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"asdfsdf130\\$asdfsdf130","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"calvin-test-rg","defaultHostName":"asdfsdf130.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/sites/up-different-skuslpnlcoukuobhkgutpl363h4","name":"up-different-skuslpnlcoukuobhkgutpl363h4","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-different-skuslpnlcoukuobhkgutpl363h4","state":"Running","hostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net"],"webSpace":"clitest7olbhjfitdoc6bnqw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest7olbhjfitdoc6bnqw-CentralUSwebspace/sites/up-different-skuslpnlcoukuobhkgutpl363h4","repositorySiteName":"up-different-skuslpnlcoukuobhkgutpl363h4","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","up-different-skuslpnlcoukuobhkgutpl363h4.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"python|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-different-skuslpnlcoukuobhkgutpl363h4.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/clitest7olbhjfitdoc6bnqw/providers/Microsoft.Web/serverfarms/up-different-skus-plan3qimdudnef7ek7vj3n","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:12:29.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-different-skuslpnlcoukuobhkgutpl363h4","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-different-skuslpnlcoukuobhkgutpl363h4\\$up-different-skuslpnlcoukuobhkgutpl363h4","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest7olbhjfitdoc6bnqw","defaultHostName":"up-different-skuslpnlcoukuobhkgutpl363h4.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/sites/up-nodeapphrsxllh57cyft7","name":"up-nodeapphrsxllh57cyft7","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapphrsxllh57cyft7","state":"Running","hostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net"],"webSpace":"clitestcwa7ajy3igskeypil-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcwa7ajy3igskeypil-CentralUSwebspace/sites/up-nodeapphrsxllh57cyft7","repositorySiteName":"up-nodeapphrsxllh57cyft7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapphrsxllh57cyft7.azurewebsites.net","up-nodeapphrsxllh57cyft7.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapphrsxllh57cyft7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapphrsxllh57cyft7.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/clitestcwa7ajy3igskeypil/providers/Microsoft.Web/serverfarms/up-nodeplanvafozpctlyujk","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:57:21.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapphrsxllh57cyft7","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapphrsxllh57cyft7\\$up-nodeapphrsxllh57cyft7","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcwa7ajy3igskeypil","defaultHostName":"up-nodeapphrsxllh57cyft7.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/sites/up-nodeapppyer4hyxx4ji6p","name":"up-nodeapppyer4hyxx4ji6p","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central + US","properties":{"name":"up-nodeapppyer4hyxx4ji6p","state":"Running","hostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net"],"webSpace":"clitesttmcpwg4oypti5aaag-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttmcpwg4oypti5aaag-CentralUSwebspace/sites/up-nodeapppyer4hyxx4ji6p","repositorySiteName":"up-nodeapppyer4hyxx4ji6p","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppyer4hyxx4ji6p.azurewebsites.net","up-nodeapppyer4hyxx4ji6p.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppyer4hyxx4ji6p.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/clitesttmcpwg4oypti5aaag/providers/Microsoft.Web/serverfarms/up-nodeplans3dm7ugpu2jno","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T03:43:57.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapppyer4hyxx4ji6p","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux","inboundIpAddress":"13.89.172.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-nodeapppyer4hyxx4ji6p\\$up-nodeapppyer4hyxx4ji6p","ftpsHostName":"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97","possibleOutboundIpAddresses":"13.89.172.22,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-171","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitesttmcpwg4oypti5aaag","defaultHostName":"up-nodeapppyer4hyxx4ji6p.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo/providers/Microsoft.Web/sites/webapp-quick-cd574qwrkqq","name":"webapp-quick-cd574qwrkqq","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-quick-cd574qwrkqq","state":"Running","hostNames":["webapp-quick-cd574qwrkqq.azurewebsites.net"],"webSpace":"clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo-JapanWestwebspace/sites/webapp-quick-cd574qwrkqq","repositorySiteName":"webapp-quick-cd574qwrkqq","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd574qwrkqq.azurewebsites.net","webapp-quick-cd574qwrkqq.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-quick-cd574qwrkqq.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd574qwrkqq.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.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo/providers/Microsoft.Web/serverfarms/plan-quickb4ojocbac75dn3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T21:18:27.6366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd574qwrkqq","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd574qwrkqq\\$webapp-quick-cd574qwrkqq","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6ygoczmyo6k7xd3wmngaqgbo4xggcj32kx2tbasrltpjggbulttqogvl5n3e32qvo","defaultHostName":"webapp-quick-cd574qwrkqq.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/sites/webapp-win-log4l2avnlrxh","name":"webapp-win-log4l2avnlrxh","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log4l2avnlrxh","state":"Running","hostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net"],"webSpace":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj-JapanWestwebspace/sites/webapp-win-log4l2avnlrxh","repositorySiteName":"webapp-win-log4l2avnlrxh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log4l2avnlrxh.azurewebsites.net","webapp-win-log4l2avnlrxh.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log4l2avnlrxh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log4l2avnlrxh.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.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj/providers/Microsoft.Web/serverfarms/win-logeez3blkm75aqkz775","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:34:13.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log4l2avnlrxh","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log4l2avnlrxh\\$webapp-win-log4l2avnlrxh","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rglcylsd6eonay637lhbqfa3i25mgocmxmmc4w2mofl3zbcxh643kpth3bwld6ingvj","defaultHostName":"webapp-win-log4l2avnlrxh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam/providers/Microsoft.Web/sites/webapp-win-log6hrh5b5vur","name":"webapp-win-log6hrh5b5vur","type":"Microsoft.Web/sites","kind":"app","location":"Japan + West","properties":{"name":"webapp-win-log6hrh5b5vur","state":"Running","hostNames":["webapp-win-log6hrh5b5vur.azurewebsites.net"],"webSpace":"clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam-JapanWestwebspace/sites/webapp-win-log6hrh5b5vur","repositorySiteName":"webapp-win-log6hrh5b5vur","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log6hrh5b5vur.azurewebsites.net","webapp-win-log6hrh5b5vur.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-win-log6hrh5b5vur.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log6hrh5b5vur.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.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam/providers/Microsoft.Web/serverfarms/win-log2k4ywxsnoihnlwkym","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-15T21:18:12.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log6hrh5b5vur","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log6hrh5b5vur\\$webapp-win-log6hrh5b5vur","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgu45jqbh4nkrdta6koa44wzb3vntduaelegv4vlpfr6hnhymjeaznmjlwtu7d6rwam","defaultHostName":"webapp-win-log6hrh5b5vur.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","type":"Microsoft.Web/sites","kind":"functionapp","location":"France + Central","properties":{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","state":"Running","hostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net"],"webSpace":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be-FranceCentralwebspace/sites/functionappelasticvxmm4j7fvtf4snuwyvm3yl","repositorySiteName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","functionappelasticvxmm4j7fvtf4snuwyvm3yl.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.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.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be/providers/Microsoft.Web/serverfarms/secondplanjfvflwwbzxkobuabmm6oapwyckppuw","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:51.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappelasticvxmm4j7fvtf4snuwyvm3yl","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappelasticvxmm4j7fvtf4snuwyvm3yl\\$functionappelasticvxmm4j7fvtf4snuwyvm3yl","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg6wzw72tr2dzfcj4an3ntcofnnehy2osenjumk6uv6zpm5xeiwmosti4at4gifm4be","defaultHostName":"functionappelasticvxmm4j7fvtf4snuwyvm3yl.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/sites/webapp-linux-multim5jgr5","name":"webapp-linux-multim5jgr5","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East + US 2","properties":{"name":"webapp-linux-multim5jgr5","state":"Running","hostNames":["webapp-linux-multim5jgr5.azurewebsites.net"],"webSpace":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7-EastUS2webspace/sites/webapp-linux-multim5jgr5","repositorySiteName":"webapp-linux-multim5jgr5","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multim5jgr5.azurewebsites.net","webapp-linux-multim5jgr5.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"webapp-linux-multim5jgr5.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multim5jgr5.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.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7/providers/Microsoft.Web/serverfarms/plan-linux-multi3ftm3i7e","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-07T05:10:28.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multim5jgr5","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"webapp-linux-multim5jgr5\\$webapp-linux-multim5jgr5","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgyfyvhrim57acvah6famdzpcsvkoaeeeaa3dr753p33dmjmwposxwgs64hegz6avf7","defaultHostName":"webapp-linux-multim5jgr5.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}]}' + headers: + cache-control: + - no-cache + content-length: + - '291537' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 22:08:21 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: + - 779da1dc-9cd4-4f45-a443-c585eb28b8e7 + - 27bc9afe-191b-491f-b169-58867ea44db5 + - 7a45cfc9-481c-4a05-9852-f911737b6a90 + - 06907399-05b3-46a2-8c14-1aeff5808267 + - 6c82f2b0-7e73-42a8-8e92-e423536ea6bf + - de71e148-efcf-43e6-aada-dbb948d35ff4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp up + Connection: + - keep-alive + ParameterSetName: + - -n -g --plan --os --runtime --sku + User-Agent: + - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":61585,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","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":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-155_61585","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: + - '1384' + content-type: + - application/json + date: + - Mon, 19 Oct 2020 22:08: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py index 06130e9d4fa..a414ff19037 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py @@ -430,7 +430,7 @@ def test_webapp_up_choose_os(self, resource_group): # test dryrun operation result = self.cmd( - 'webapp up -n {} -g {} --plan {} --os "linux" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + 'webapp up -n {} -g {} --plan {} --os-type "linux" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() self.assertTrue(result['sku'].lower() == 'premiumv2') self.assertTrue(result['name'].startswith(webapp_name)) self.assertTrue(result['src_path'].replace( @@ -440,7 +440,7 @@ def test_webapp_up_choose_os(self, resource_group): # test the full E2E operation works full_result = self.cmd( - 'webapp up -n {} -g {} --plan {} --os "linux"'.format(webapp_name, resource_group, plan)).get_output_in_json() + 'webapp up -n {} -g {} --plan {} --os-type "linux"'.format(webapp_name, resource_group, plan)).get_output_in_json() self.assertTrue(result['name'] == full_result['name']) # Verify app is created @@ -652,6 +652,190 @@ def test_webapp_up_runtime_delimiters(self, resource_group): import shutil shutil.rmtree(temp_dir) + @live_only() + @AllowLargeResponse() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) + def test_linux_to_windows_fail(self, resource_group): + plan = self.create_random_name('up-nodeplan', 24) + webapp_name = self.create_random_name('up-nodeapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'node-Express-up.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'myExpressApp') + os.chdir(up_working_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10.14" --sku "S1" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10.14') + self.assertTrue(result['os'].lower() == 'linux') + + # test the full E2E operation works + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10.14" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # Verify app is created + # since we set local context, -n and -g are no longer required + self.cmd('webapp show', checks=[ + JMESPathCheck('name', webapp_name), + JMESPathCheck('httpsOnly', True), + JMESPathCheck('kind', 'app,linux'), + JMESPathCheck('resourceGroup', resource_group) + ]) + + from azure.cli.core.util import CLIError + # changing existing linux app to windows should fail gracefully + with self.assertRaises(CLIError): + self.cmd('webapp up -n {} -g {} --plan {} --os "windows" --runtime "node|10.14" --sku "S1"'.format(webapp_name, resource_group, plan)) + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) + + @live_only() + @AllowLargeResponse() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=WINDOWS_ASP_LOCATION_WEBAPP) + def test_windows_to_linux_fail(self, resource_group): + plan = self.create_random_name('up-nodeplan', 24) + webapp_name = self.create_random_name('up-nodeapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'node-Express-up-windows.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'myExpressApp') + os.chdir(temp_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "windows" --runtime "node|10.14" --sku "S1" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10.14') + self.assertTrue(result['os'].lower() == 'windows') + + # test the full E2E operation works + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "windows" --runtime "node|10.14" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # Verify app is created + # since we set local context, -n and -g are no longer required + self.cmd('webapp show', checks=[ + JMESPathCheck('name', webapp_name), + JMESPathCheck('httpsOnly', True), + JMESPathCheck('kind', 'app'), + JMESPathCheck('resourceGroup', resource_group) + ]) + + from azure.cli.core.util import CLIError + # changing existing linux app to windows should fail gracefully + with self.assertRaises(CLIError): + self.cmd('webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10.14" --sku "S1"'.format(webapp_name, resource_group, plan)) + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) + + @live_only() + @AllowLargeResponse() + @ResourceGroupPreparer(random_name_length=24, name_prefix='clitest', location=LINUX_ASP_LOCATION_WEBAPP) + def test_webapp_up_change_runtime_version(self, resource_group): + plan = self.create_random_name('up-nodeplan', 24) + webapp_name = self.create_random_name('up-nodeapp', 24) + zip_file_name = os.path.join(TEST_DIR, 'node-Express-up.zip') + + # create a temp directory and unzip the code to this folder + import zipfile + import tempfile + temp_dir = tempfile.mkdtemp() + zip_ref = zipfile.ZipFile(zip_file_name, 'r') + zip_ref.extractall(temp_dir) + current_working_dir = os.getcwd() + + # change the working dir to the dir where the code has been extracted to + up_working_dir = os.path.join(temp_dir, 'myExpressApp') + os.chdir(up_working_dir) + + # test dryrun operation + result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10.14" --sku "S1" --dryrun'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['sku'].lower() == 'standard') + self.assertTrue(result['name'].startswith(webapp_name)) + self.assertTrue(result['src_path'].replace( + os.sep + os.sep, os.sep), up_working_dir) + self.assertTrue(result['runtime_version'] == 'node|10.14') + self.assertTrue(result['os'].lower() == 'linux') + + # test the full E2E operation works + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10.14" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # Verify app is created + # since we set local context, -n and -g are no longer required + self.cmd('webapp show', checks=[ + JMESPathCheck('name', webapp_name), + JMESPathCheck('httpsOnly', True), + JMESPathCheck('kind', 'app,linux'), + JMESPathCheck('resourceGroup', resource_group) + ]) + + # test changing runtime to newer version + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|12-lts" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # verify newer version + self.cmd('webapp config show', checks=[ + JMESPathCheck('linuxFxVersion', "node|12-lts"), + JMESPathCheck('tags.cli', 'None') + ]) + + # test changing runtime to older version + full_result = self.cmd( + 'webapp up -n {} -g {} --plan {} --os "linux" --runtime "node|10.14" --sku "S1"'.format(webapp_name, resource_group, plan)).get_output_in_json() + self.assertTrue(result['name'] == full_result['name']) + + # verify older version + self.cmd('webapp config show', checks=[ + JMESPathCheck('linuxFxVersion', "node|10.14"), + JMESPathCheck('tags.cli', 'None') + ]) + + # cleanup + # switch back the working dir + os.chdir(current_working_dir) + # delete temp_dir + import shutil + shutil.rmtree(temp_dir) if __name__ == '__main__': unittest.main() From a21b33e6a3cd8bcbaf8f1b0f99aa8e6f15a0dcca Mon Sep 17 00:00:00 2001 From: Calvin Chan Date: Tue, 20 Oct 2020 16:52:55 -0700 Subject: [PATCH 7/7] Update runtimes, CLI linter error --- .../azure/cli/command_modules/appservice/custom.py | 4 ++-- .../appservice/resources/WebappRuntimeStacks.json | 7 ++++--- .../appservice/tests/latest/test_webapp_up_commands.py | 1 + 3 files changed, 7 insertions(+), 5 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 047510edc70..1ff2a761379 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -3685,13 +3685,13 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku site_config.linux_fx_version, runtime_version) update_site_configs(cmd, rg_name, name, linux_fx_version=runtime_version) logger.warning('Waiting for runtime version to propagate ...') - time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. Currently there is no way to poll for this + time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. Currently no way to poll for this elif os_name.lower() == 'windows' and site_config.windows_fx_version != runtime_version: logger.warning('Updating runtime version from %s to %s', site_config.windows_fx_version, runtime_version) update_site_configs(cmd, rg_name, name, windows_fx_version=runtime_version) logger.warning('Waiting for runtime version to propagate ...') - time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. Currently there is no way to poll for this + time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. Currently no way to poll for this create_json['runtime_version'] = runtime_version # Zip contents & Deploy logger.warning("Creating zip with contents of dir %s ...", src_dir) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json b/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json index 3ed1c60c47a..82749494964 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json +++ b/src/azure-cli/azure/cli/command_modules/appservice/resources/WebappRuntimeStacks.json @@ -1,7 +1,7 @@ { "windows": [ { - "displayName": "aspnet|V4.7", + "displayName": "aspnet|V4.8", "configs": { "net_framework_version": "v4.0" } @@ -152,6 +152,7 @@ "linux": [ {"displayName": "DOTNETCORE|2.1"}, {"displayName": "DOTNETCORE|3.1"}, + {"displayName": "NODE|14-lts"}, {"displayName": "NODE|12-lts"}, {"displayName": "NODE|10-lts"}, {"displayName": "NODE|10.1"}, @@ -170,7 +171,7 @@ {"displayName": "PYTHON|3.8"}, {"displayName": "PYTHON|3.7"}, {"displayName": "PYTHON|3.6"}, - {"displayName": "RUBY|2.5.5"}, - {"displayName": "RUBY|2.6.2"} + {"displayName": "RUBY|2.5"}, + {"displayName": "RUBY|2.6"} ] } diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py index a414ff19037..85230b5c81a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_up_commands.py @@ -837,5 +837,6 @@ def test_webapp_up_change_runtime_version(self, resource_group): import shutil shutil.rmtree(temp_dir) + if __name__ == '__main__': unittest.main()