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 6af26662f52..652bc4ebedd 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/_constants.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/_constants.py
@@ -5,12 +5,16 @@
import os
NODE_VERSION_DEFAULT = "10.14"
+NODE_VERSION_NEWER = "12-lts"
NODE_EXACT_VERSION_DEFAULT = "10.14.1"
NETCORE_VERSION_DEFAULT = "3.1"
-DOTNET_VERSION_DEFAULT = "4.7"
+ASPDOTNET_VERSION_DEFAULT = "4.8"
+DOTNET_VERSION_DEFAULT = "5.0"
+DOTNET_TARGET_FRAMEWORK_STRING = "net5.0"
PYTHON_VERSION_DEFAULT = "3.7"
NETCORE_RUNTIME_NAME = "dotnetcore"
-DOTNET_RUNTIME_NAME = "aspnet"
+ASPDOTNET_RUNTIME_NAME = "aspnet"
+DOTNET_RUNTIME_NAME = "dotnet"
NODE_RUNTIME_NAME = "node"
PYTHON_RUNTIME_NAME = "python"
OS_DEFAULT = "Windows"
@@ -18,7 +22,7 @@
NODE_VERSIONS = ['10.6', '10.14']
PYTHON_VERSIONS = ['3.8', '3.7', '3.6']
NETCORE_VERSIONS = ['2.1', '3.1']
-DOTNET_VERSIONS = ['3.5', '4.7']
+DOTNET_VERSIONS = ['3.5', '4.8']
LINUX_SKU_DEFAULT = "P1V2"
FUNCTIONS_VERSIONS = ['2', '3']
FUNCTIONS_STACKS_API_JSON_PATHS = {
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 6134a4c862e..1c616fc2224 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
@@ -11,9 +11,11 @@
from azure.mgmt.web.models import SkuDescription
from ._constants import (NETCORE_VERSION_DEFAULT, NETCORE_VERSIONS, NODE_VERSION_DEFAULT,
- NODE_VERSIONS, NETCORE_RUNTIME_NAME, NODE_RUNTIME_NAME, DOTNET_RUNTIME_NAME,
- DOTNET_VERSION_DEFAULT, DOTNET_VERSIONS, STATIC_RUNTIME_NAME,
- PYTHON_RUNTIME_NAME, PYTHON_VERSION_DEFAULT, LINUX_SKU_DEFAULT, OS_DEFAULT)
+ NODE_VERSIONS, NETCORE_RUNTIME_NAME, NODE_RUNTIME_NAME, ASPDOTNET_RUNTIME_NAME,
+ ASPDOTNET_VERSION_DEFAULT, DOTNET_VERSIONS, STATIC_RUNTIME_NAME,
+ PYTHON_RUNTIME_NAME, PYTHON_VERSION_DEFAULT, LINUX_SKU_DEFAULT, OS_DEFAULT,
+ NODE_VERSION_NEWER, DOTNET_RUNTIME_NAME, DOTNET_VERSION_DEFAULT,
+ DOTNET_TARGET_FRAMEWORK_STRING)
logger = get_logger(__name__)
@@ -73,11 +75,14 @@ def zip_contents_from_dir(dirPath, lang):
def get_runtime_version_details(file_path, lang_name):
version_detected = None
version_to_create = None
- if lang_name.lower() == NETCORE_RUNTIME_NAME:
+ if lang_name.lower() == DOTNET_RUNTIME_NAME:
+ version_detected = DOTNET_VERSION_DEFAULT
+ version_to_create = DOTNET_VERSION_DEFAULT
+ elif lang_name.lower() == NETCORE_RUNTIME_NAME:
# method returns list in DESC, pick the first
version_detected = parse_netcore_version(file_path)[0]
version_to_create = detect_netcore_version_tocreate(version_detected)
- elif lang_name.lower() == DOTNET_RUNTIME_NAME:
+ elif lang_name.lower() == ASPDOTNET_RUNTIME_NAME:
# method returns list in DESC, pick the first
version_detected = parse_dotnet_version(file_path)
version_to_create = detect_dotnet_version_tocreate(version_detected)
@@ -187,11 +192,17 @@ def detect_dotnet_lang(csproj_path):
parsed_file = ET.parse(csproj_path)
root = parsed_file.getroot()
version_lang = ''
+ version_full = ''
for target_ver in root.iter('TargetFramework'):
+ version_full = target_ver.text
+ version_full = ''.join(version_full.split()).lower()
version_lang = re.sub(r'([^a-zA-Z\s]+?)', '', target_ver.text)
+
+ if version_full and version_full.startswith(DOTNET_TARGET_FRAMEWORK_STRING):
+ return DOTNET_RUNTIME_NAME
if 'netcore' in version_lang.lower():
return NETCORE_RUNTIME_NAME
- return DOTNET_RUNTIME_NAME
+ return ASPDOTNET_RUNTIME_NAME
def parse_dotnet_version(file_path):
@@ -261,7 +272,7 @@ def detect_dotnet_version_tocreate(detected_ver):
return detected_ver
if detected_ver < min_ver:
return min_ver
- return DOTNET_VERSION_DEFAULT
+ return ASPDOTNET_VERSION_DEFAULT
def detect_node_version_tocreate(detected_ver):
@@ -274,7 +285,7 @@ def detect_node_version_tocreate(detected_ver):
if major_ver <= 11:
node_ver = NODE_VERSION_DEFAULT
else:
- node_ver = '12.9'
+ node_ver = NODE_VERSION_NEWER
return node_ver
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 bd36f729a46..a24dec60f12 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py
@@ -137,11 +137,11 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi
site_config.app_command_line = startup_file
if runtime:
- site_config.linux_fx_version = runtime
match = helper.resolve(runtime)
if not match:
raise CLIError("Linux Runtime '{}' is not supported."
" Please invoke 'az webapp list-runtimes --linux' to cross check".format(runtime))
+ match['setter'](cmd=cmd, stack=match, site_config=site_config)
elif deployment_container_image_name:
site_config.linux_fx_version = _format_fx_version(deployment_container_image_name)
if name_validation.name_available:
@@ -177,7 +177,7 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi
current_stack = get_current_stack_from_runtime(runtime)
else: # windows webapp without runtime specified
- if name_validation.name_available:
+ if name_validation.name_available: # If creating new webapp
site_config.app_settings.append(NameValuePair(name="WEBSITE_NODE_DEFAULT_VERSION",
value=node_default_version))
@@ -198,9 +198,7 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi
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)
+ _update_webapp_current_stack_property_if_needed(cmd, resource_group_name, name, current_stack)
# 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,
@@ -2584,7 +2582,15 @@ def update_site_appsettings(cmd, stack, site_config):
NameValuePair = cmd.get_models('NameValuePair')
if site_config.app_settings is None:
site_config.app_settings = []
- site_config.app_settings += [NameValuePair(name=k, value=v) for k, v in stack['configs'].items()]
+
+ for k, v in stack['configs'].items():
+ already_in_appsettings = False
+ for app_setting in site_config.app_settings:
+ if app_setting.name == k:
+ already_in_appsettings = True
+ app_setting.value = v
+ if not already_in_appsettings:
+ site_config.app_settings.append(NameValuePair(name=k, value=v))
return site_config
def _load_stacks_hardcoded(self):
@@ -2593,6 +2599,8 @@ def _load_stacks_hardcoded(self):
result = []
if self._linux:
result = get_file_json(RUNTIME_STACKS)['linux']
+ for r in result:
+ r['setter'] = _StackRuntimeHelper.update_site_config
else: # Windows stacks
result = get_file_json(RUNTIME_STACKS)['windows']
for r in result:
@@ -3701,18 +3709,26 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku
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
+ helper = _StackRuntimeHelper(cmd, client, linux=_is_linux)
+ match = helper.resolve(runtime_version)
+
if os_name.lower() == 'linux' and site_config.linux_fx_version != runtime_version:
- 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 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 no way to poll for this
+ if match and site_config.linux_fx_version != match['configs']['linux_fx_version']:
+ logger.warning('Updating runtime version from %s to %s',
+ site_config.linux_fx_version, match['configs']['linux_fx_version'])
+ update_site_configs(cmd, rg_name, name, linux_fx_version=match['configs']['linux_fx_version'])
+ logger.warning('Waiting for runtime version to propagate ...')
+ time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. No way to poll for this
+ elif not match:
+ 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. No way to poll for this
+ elif os_name.lower() == 'windows':
+ # may need to update stack runtime settings. For node its site_config.app_settings, otherwise site_config
+ if match:
+ _update_app_settings_for_windows_if_needed(cmd, rg_name, name, match, site_config, runtime_version)
create_json['runtime_version'] = runtime_version
# Zip contents & Deploy
logger.warning("Creating zip with contents of dir %s ...", src_dir)
@@ -3740,6 +3756,54 @@ def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku
return create_json
+def _update_app_settings_for_windows_if_needed(cmd, rg_name, name, match, site_config, runtime_version):
+ update_needed = False
+ if 'node' in runtime_version:
+ settings = []
+ for k, v in match['configs'].items():
+ for app_setting in site_config.app_settings:
+ if app_setting.name == k and app_setting.value != v:
+ update_needed = True
+ settings.append('%s=%s', k, v)
+ if update_needed:
+ logger.warning('Updating runtime version to %s', runtime_version)
+ update_app_settings(cmd, rg_name, name, settings=settings, slot=None, slot_settings=None)
+ else:
+ for k, v in match['configs'].items():
+ if getattr(site_config, k, None) != v:
+ update_needed = True
+ setattr(site_config, k, v)
+ if update_needed:
+ logger.warning('Updating runtime version to %s', runtime_version)
+ update_site_configs(cmd,
+ rg_name,
+ name,
+ net_framework_version=site_config.net_framework_version,
+ php_version=site_config.php_version,
+ python_version=site_config.python_version,
+ java_version=site_config.java_version,
+ java_container=site_config.java_container,
+ java_container_version=site_config.java_container_version)
+
+ current_stack = get_current_stack_from_runtime(runtime_version)
+ _update_webapp_current_stack_property_if_needed(cmd, rg_name, name, current_stack)
+
+ if update_needed:
+ logger.warning('Waiting for runtime version to propagate ...')
+ time.sleep(30) # wait for kudu to get updated runtime before zipdeploy. No way to poll for this
+
+
+def _update_webapp_current_stack_property_if_needed(cmd, resource_group, name, current_stack):
+ if not current_stack:
+ return
+ # portal uses this current_stack value to display correct runtime for windows webapps
+ client = web_client_factory(cmd.cli_ctx)
+ app_metadata = client.web_apps.list_metadata(resource_group, name)
+ if 'CURRENT_STACK' not in app_metadata.properties or app_metadata.properties["CURRENT_STACK"] != current_stack:
+ app_metadata.properties["CURRENT_STACK"] = current_stack
+ client.web_apps.update_metadata(resource_group, name, kind="app", properties=app_metadata.properties)
+
+
def _ping_scm_site(cmd, resource_group, name, instance=None):
from azure.cli.core.util import should_disable_connection_verify
# wake up kudu, by making an SCM call
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 82749494964..2c6baeda0ef 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
@@ -20,6 +20,12 @@
"displayName": "DOTNETCORE|3.1",
"configs": {}
},
+ {
+ "displayName": "DOTNET|5.0",
+ "configs": {
+ "net_framework_version": "v5.0"
+ }
+ },
{
"displayName": "node|10.6",
"configs": {
@@ -150,28 +156,149 @@
}
],
"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"},
- {"displayName": "NODE|10.6"},
- {"displayName": "NODE|10.14"},
- {"displayName": "JAVA|8-jre8"},
- {"displayName": "JAVA|11-java11"},
- {"displayName": "TOMCAT|8.5-jre8"},
- {"displayName": "TOMCAT|9.0-jre8"},
- {"displayName": "TOMCAT|8.5-java11"},
- {"displayName": "TOMCAT|9.0-java11"},
- {"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"},
- {"displayName": "RUBY|2.5"},
- {"displayName": "RUBY|2.6"}
+ {
+ "displayName": "DOTNETCORE|2.1",
+ "configs": {
+ "linux_fx_version": "DOTNETCORE|2.1"
+ }
+ },
+ {
+ "displayName": "DOTNETCORE|3.1",
+ "configs": {
+ "linux_fx_version": "DOTNETCORE|3.1"
+ }
+ },
+ {
+ "displayName": "DOTNET|5.0",
+ "configs": {
+ "linux_fx_version": "DOTNETCORE|5.0"
+ }
+ },
+ {
+ "displayName": "NODE|14-lts",
+ "configs": {
+ "linux_fx_version": "NODE|14-lts"
+ }
+ },
+ {
+ "displayName": "NODE|12-lts",
+ "configs": {
+ "linux_fx_version": "NODE|12-lts"
+ }
+ },
+ {
+ "displayName": "NODE|10-lts",
+ "configs": {
+ "linux_fx_version": "NODE|10-lts"
+ }
+ },
+ {
+ "displayName": "NODE|10.1",
+ "configs": {
+ "linux_fx_version": "NODE|10.1"
+ }
+ },
+ {
+ "displayName": "NODE|10.6",
+ "configs": {
+ "linux_fx_version": "NODE|10.6"
+ }
+ },
+ {
+ "displayName": "NODE|10.14",
+ "configs": {
+ "linux_fx_version": "NODE|10.14"
+ }
+ },
+ {
+ "displayName": "JAVA|8-jre8",
+ "configs": {
+ "linux_fx_version": "JAVA|8-jre8"
+ }
+ },
+ {
+ "displayName": "JAVA|11-java11",
+ "configs": {
+ "linux_fx_version": "JAVA|11-java11"
+ }
+ },
+ {
+ "displayName": "TOMCAT|8.5-jre8",
+ "configs": {
+ "linux_fx_version": "TOMCAT|8.5-jre8"
+ }
+ },
+ {
+ "displayName": "TOMCAT|9.0-jre8",
+ "configs": {
+ "linux_fx_version": "TOMCAT|9.0-jre8"
+ }
+ },
+ {
+ "displayName": "TOMCAT|8.5-java11",
+ "configs": {
+ "linux_fx_version": "TOMCAT|8.5-java11"
+ }
+ },
+ {
+ "displayName": "TOMCAT|9.0-java11",
+ "configs": {
+ "linux_fx_version": "TOMCAT|9.0-java11"
+ }
+ },
+ {
+ "displayName": "JBOSSEAP|7.2-java8",
+ "configs": {
+ "linux_fx_version": "JBOSSEAP|7.2-java8"
+ }
+ },
+ {
+ "displayName": "PHP|7.2",
+ "configs": {
+ "linux_fx_version": "PHP|7.2"
+ }
+ },
+ {
+ "displayName": "PHP|7.3",
+ "configs": {
+ "linux_fx_version": "PHP|7.3"
+ }
+ },
+ {
+ "displayName": "PHP|7.4",
+ "configs": {
+ "linux_fx_version": "PHP|7.4"
+ }
+ },
+ {
+ "displayName": "PYTHON|3.8",
+ "configs": {
+ "linux_fx_version": "PYTHON|3.8"
+ }
+ },
+ {
+ "displayName": "PYTHON|3.7",
+ "configs": {
+ "linux_fx_version": "PYTHON|3.7"
+ }
+ },
+ {
+ "displayName": "PYTHON|3.6",
+ "configs": {
+ "linux_fx_version": "PYTHON|3.6"
+ }
+ },
+ {
+ "displayName": "RUBY|2.5",
+ "configs": {
+ "linux_fx_version": "RUBY|2.5"
+ }
+ },
+ {
+ "displayName": "RUBY|2.6",
+ "configs": {
+ "linux_fx_version": "RUBY|2.6"
+ }
+ }
]
}
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/python-hello-world-up.zip b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/python-hello-world-up.zip
index 39c01a78744..bd2143a7267 100644
Binary files a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/python-hello-world-up.zip and b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/python-hello-world-up.zip differ
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
index 7851b6c3e08..b5786275d33 100644
--- 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
@@ -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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:01 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:02 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 21:32:02 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -280,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:32:02 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -323,7 +323,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 21:32:03 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -350,7 +350,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -366,7 +366,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:32:03 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -399,7 +399,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -415,7 +415,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:04 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -452,7 +452,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -524,7 +524,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -563,11 +563,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:04 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -604,7 +604,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -618,7 +618,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 21:32:05 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -645,7 +645,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -661,7 +661,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:32:05 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -690,7 +690,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -704,7 +704,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 21:32:05 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -731,7 +731,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -747,7 +747,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:32:06 GMT
+ - Fri, 30 Oct 2020 02:40:32 GMT
expires:
- '-1'
pragma:
@@ -782,7 +782,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -790,8 +790,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":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}}'
+ US","properties":{"serverFarmId":22731,"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_22731","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
@@ -800,7 +800,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:18 GMT
+ - Fri, 30 Oct 2020 02:41:32 GMT
expires:
- '-1'
pragma:
@@ -839,7 +839,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -847,8 +847,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":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}}'
+ US","properties":{"serverFarmId":22731,"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_22731","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 +857,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:19 GMT
+ - Fri, 30 Oct 2020 02:41:32 GMT
expires:
- '-1'
pragma:
@@ -898,7 +898,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -914,7 +914,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:19 GMT
+ - Fri, 30 Oct 2020 02:41:32 GMT
expires:
- '-1'
pragma:
@@ -939,7 +939,7 @@ interactions:
- 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",
+ "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:
@@ -959,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -967,20 +967,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-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
+ 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.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-30T02:41:36.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":[{"ipAddress":"Any","action":"Allow","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}}'
+ 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:
- - '5635'
+ - '5658'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:40 GMT
+ - Fri, 30 Oct 2020 02:41:53 GMT
etag:
- - '"1D6A65F55E43C95"'
+ - '"1D6AE663053BDE0"'
expires:
- '-1'
pragma:
@@ -1023,7 +1023,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1031,18 +1031,18 @@ interactions:
response:
body:
string:
@@ -1050,11 +1050,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 21:32:41 GMT
+ - Fri, 30 Oct 2020 02:41:54 GMT
expires:
- '-1'
pragma:
@@ -1089,7 +1089,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1097,18 +1097,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-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}}'
+ 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.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-30T02:41:37.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":"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:
- - '5440'
+ - '5453'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:41 GMT
+ - Fri, 30 Oct 2020 02:41:54 GMT
etag:
- - '"1D6A65F55E43C95"'
+ - '"1D6AE663053BDE0"'
expires:
- '-1'
pragma:
@@ -1150,7 +1150,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1167,9 +1167,9 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:43 GMT
+ - Fri, 30 Oct 2020 02:41:56 GMT
etag:
- - '"1D6A65F6127216B"'
+ - '"1D6AE663BA4E08B"'
expires:
- '-1'
pragma:
@@ -1210,7 +1210,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1218,7 +1218,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":"iv9T9Q2x6TbdRGKRFP9QlwQ8iuDWMmHLYrwlE0gj5kWkPAysbQ1G7kCQQaek","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:iv9T9Q2x6TbdRGKRFP9QlwQ8iuDWMmHLYrwlE0gj5kWkPAysbQ1G7kCQQaek@up-nodeapp000003.scm.azurewebsites.net"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"1lMRjrG7qLMtj7SWAChSjRWGG6pRnWCbAHLXfRjreBSjBFE1mrFmEbH3wBeu","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:1lMRjrG7qLMtj7SWAChSjRWGG6pRnWCbAHLXfRjreBSjBFE1mrFmEbH3wBeu@up-nodeapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1227,7 +1227,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:44 GMT
+ - Fri, 30 Oct 2020 02:41:56 GMT
expires:
- '-1'
pragma:
@@ -1266,7 +1266,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1274,18 +1274,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-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}}'
+ 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.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-30T02:41:56.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":"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:
- - '5440'
+ - '5458'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:32:44 GMT
+ - Fri, 30 Oct 2020 02:41:57 GMT
etag:
- - '"1D6A65F6127216B"'
+ - '"1D6AE663BA4E08B"'
expires:
- '-1'
pragma:
@@ -1326,7 +1326,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1334,18 +1334,18 @@ interactions:
response:
body:
string:
@@ -1353,11 +1353,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 21:32:45 GMT
+ - Fri, 30 Oct 2020 02:41:58 GMT
expires:
- '-1'
pragma:
@@ -1379,7 +1379,7 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIAP1zU1HSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ UEsDBBQAAAAIAAmdXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
@@ -1388,7 +1388,7 @@ interactions:
y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
- inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgA/XNTUTHV79fVAQAAMgQAAAYA
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgACZ1dUTHV79fVAQAAMgQAAAYA
AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
@@ -1397,7 +1397,7 @@ interactions:
iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
/r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
- lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAAB0U1HrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAA2dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
@@ -1556,11 +1556,11 @@ interactions:
V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
- m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgAAHRTUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgADZ1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
- GfdO1uQLUEsDBBQAAAAIAP1zU1HOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ GfdO1uQLUEsDBBQAAAAIAAmdXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
@@ -1573,34 +1573,34 @@ interactions:
5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
- iDtN2Ck/AFBLAwQUAAAACAAAdFNRDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ iDtN2Ck/AFBLAwQUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
- AFBLAwQUAAAACAAAdFNRxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ AFBLAwQUAAAACAANnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
- GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAAAdFNRyvs205UAAADLAAAADwAAAHJv
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAANnV1Ryvs205UAAADLAAAADwAAAHJv
dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
- AAB0U1HguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ AA2dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
- FAAAAAgAAHRTUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
- SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAA
- dFNRn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FAAAAAgADZ1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
- vYbWD3apPpOvxVBseABQSwECFAAUAAAACAD9c1NR0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
- AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAP1zU1Ex1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
- AABhcHAuanNQSwECFAAUAAAACAAAdFNR6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
- a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAAAdFNR22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
- JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgA/XNTUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
- UygAAGJpbi93d3dQSwECFAAUAAAACAAAdFNRDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
- cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAAB0U1HEkPudlgAAAM0AAAAP
- AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACAAAdFNRyvs205UAAADL
- AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgAAHRTUeC7KhZK
- AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAAB0U1HO
- 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACAAA
- dFNRn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAJnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAAmdXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACAANnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAANnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgACZ1dUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
+ UygAAGJpbi93d3dQSwECFAAUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
+ cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAA2dXVHEkPudlgAAAM0AAAAP
+ AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACAANnV1Ryvs205UAAADL
+ AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgADZ1dUeC7KhZK
+ AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAA2dXVHO
+ 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
CwALAJYCAADQLgAAAAA=
headers:
Accept:
@@ -1616,7 +1616,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -1626,13 +1626,14 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 21:33:41 GMT
+ - Fri, 30 Oct 2020 02:42:34 GMT
location:
- - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-19_21-33-41Z
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-42-34Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -1650,279 +1651,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:02 GMT
+ - Fri, 30 Oct 2020 02:42:39 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1944,27 +1694,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:06 GMT
+ - Fri, 30 Oct 2020 02:42: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1986,27 +1737,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:08 GMT
+ - Fri, 30 Oct 2020 02:42:44 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2028,27 +1780,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:12 GMT
+ - Fri, 30 Oct 2020 02:42:47 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2070,27 +1823,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:15 GMT
+ - Fri, 30 Oct 2020 02:42:50 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2112,27 +1866,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:18 GMT
+ - Fri, 30 Oct 2020 02:42: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2154,27 +1909,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:21 GMT
+ - Fri, 30 Oct 2020 02:42: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2196,27 +1952,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:24 GMT
+ - Fri, 30 Oct 2020 02:43: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2238,27 +1995,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:27 GMT
+ - Fri, 30 Oct 2020 02:43:03 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2280,27 +2038,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:30 GMT
+ - Fri, 30 Oct 2020 02:43: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2322,27 +2081,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:32 GMT
+ - Fri, 30 Oct 2020 02:43:09 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2364,27 +2124,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:35 GMT
+ - Fri, 30 Oct 2020 02:43: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2406,27 +2167,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:38 GMT
+ - Fri, 30 Oct 2020 02:43: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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2448,27 +2210,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","status":1,"status_text":"Building
+ and Deploying ''630debf90d2e4c1989cec4441356e282''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Deployment successful.","received_time":"2020-10-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_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'
+ - '536'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:41 GMT
+ - Fri, 30 Oct 2020 02:43:17 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
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2490,24 +2253,25 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"630debf90d2e4c1989cec4441356e282","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-30T02:42:36.8746988Z","start_time":"2020-10-30T02:42:36.9722134Z","end_time":"2020-10-30T02:43:18.1981169Z","last_success_end_time":"2020-10-30T02:43:18.1981169Z","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'
+ - '660'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:44 GMT
+ - Fri, 30 Oct 2020 02:43:20 GMT
server:
- Kestrel
set-cookie:
- - ARRAffinity=c5ca023cf00c2c55d26fd9fde28b31ebeba5d4ab2694580a387d9fd4508b6a79;Path=/;HttpOnly;Domain=up-nodeapp6nxiu3qixrhg4s.scm.azurewebsites.net
+ - ARRAffinity=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
+ - ARRAffinitySameSite=27001002d8b8551188d2c7cc4823ffdcadf45dae9b5914f9158d130543bcca9c;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp773sruovjgj5go.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2530,7 +2294,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2538,18 +2302,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-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}}'
+ 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.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-30T02:41:56.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":"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:
- - '5440'
+ - '5458'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:34:45 GMT
+ - Fri, 30 Oct 2020 02:43:21 GMT
etag:
- - '"1D6A65F6127216B"'
+ - '"1D6AE663BA4E08B"'
expires:
- '-1'
pragma:
@@ -2584,7 +2348,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2592,18 +2356,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-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}}'
+ 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.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-30T02:41:56.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":"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:
- - '5440'
+ - '5458'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:34:45 GMT
+ - Fri, 30 Oct 2020 02:43:21 GMT
etag:
- - '"1D6A65F6127216B"'
+ - '"1D6AE663BA4E08B"'
expires:
- '-1'
pragma:
@@ -2638,7 +2402,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2646,18 +2410,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-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}}'
+ 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.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-30T02:41:56.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":"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:
- - '5440'
+ - '5458'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:34:45 GMT
+ - Fri, 30 Oct 2020 02:43:21 GMT
etag:
- - '"1D6A65F6127216B"'
+ - '"1D6AE663BA4E08B"'
expires:
- '-1'
pragma:
@@ -2696,7 +2460,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -2704,18 +2468,18 @@ interactions:
response:
body:
string:
@@ -2723,11 +2487,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 21:34:46 GMT
+ - Fri, 30 Oct 2020 02:43:22 GMT
expires:
- '-1'
pragma:
@@ -2766,7 +2530,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -2783,7 +2547,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:34:46 GMT
+ - Fri, 30 Oct 2020 02:43:22 GMT
expires:
- '-1'
pragma:
@@ -2820,7 +2584,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2828,35 +2592,57 @@ interactions:
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":"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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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/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/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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/sites/up-nodeapp3ngwpwaky6to4q","name":"up-nodeapp3ngwpwaky6to4q","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp3ngwpwaky6to4q","state":"Running","hostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net"],"webSpace":"clitestll2w665itavskk4be-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestll2w665itavskk4be-CentralUSwebspace/sites/up-nodeapp3ngwpwaky6to4q","repositorySiteName":"up-nodeapp3ngwpwaky6to4q","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net","up-nodeapp3ngwpwaky6to4q.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-nodeapp3ngwpwaky6to4q.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/serverfarms/up-nodeplanzcxyeyslctxis","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp3ngwpwaky6to4q","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeapp3ngwpwaky6to4q\\$up-nodeapp3ngwpwaky6to4q","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":"clitestll2w665itavskk4be","defaultHostName":"up-nodeapp3ngwpwaky6to4q.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/sites/up-nodeapplpdfzfrwj6r7p3","name":"up-nodeapplpdfzfrwj6r7p3","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapplpdfzfrwj6r7p3","state":"Running","hostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net"],"webSpace":"clitesttb2x34sdpupxs4z6p-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttb2x34sdpupxs4z6p-CentralUSwebspace/sites/up-nodeapplpdfzfrwj6r7p3","repositorySiteName":"up-nodeapplpdfzfrwj6r7p3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","up-nodeapplpdfzfrwj6r7p3.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-nodeapplpdfzfrwj6r7p3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/serverfarms/up-nodeplanoahghpyhvvcf7","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapplpdfzfrwj6r7p3","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-nodeapplpdfzfrwj6r7p3\\$up-nodeapplpdfzfrwj6r7p3","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":"clitesttb2x34sdpupxs4z6p","defaultHostName":"up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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":"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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":"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/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/sites/up-nodeapp6wjlg76g65ruht","name":"up-nodeapp6wjlg76g65ruht","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp6wjlg76g65ruht","state":"Running","hostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net"],"webSpace":"clitestfmkfvpjtnqimkcuns-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestfmkfvpjtnqimkcuns-CentralUSwebspace/sites/up-nodeapp6wjlg76g65ruht","repositorySiteName":"up-nodeapp6wjlg76g65ruht","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net","up-nodeapp6wjlg76g65ruht.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":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/serverfarms/up-nodeplanyzjydyzusvae6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:23.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":"up-nodeapp6wjlg76g65ruht","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-nodeapp6wjlg76g65ruht\\$up-nodeapp6wjlg76g65ruht","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":"clitestfmkfvpjtnqimkcuns","defaultHostName":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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
@@ -2869,27 +2655,37 @@ interactions:
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":"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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
+ 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/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-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.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-30T02:41:56.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":"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}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.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
+ 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.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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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}}]}'
+ 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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.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'
+ - '461529'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 21:34:48 GMT
+ - Fri, 30 Oct 2020 02:43:26 GMT
expires:
- '-1'
pragma:
@@ -2901,12 +2697,12 @@ interactions:
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
+ - d3f12238-9909-424f-a959-6119c167d0f7
+ - e4ae9a39-2d90-499a-a1b8-82b83ae184cc
+ - 0ef6ace6-5097-450b-bfd5-4d4cc91b9f33
+ - 4633a9bf-dbb5-4358-a574-1a8a789fd6f1
+ - dc743c45-bd75-41d7-9c72-3f45c328c5ca
+ - 80b15e56-f8e5-4bfa-8658-d4a0d2f217d4
status:
code: 200
message: OK
@@ -2925,7 +2721,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2933,8 +2729,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":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}}'
+ US","properties":{"serverFarmId":22731,"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_22731","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
@@ -2943,7 +2739,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 21:34:49 GMT
+ - Fri, 30 Oct 2020 02:43:26 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_change_runtime_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_change_runtime_version.yaml
new file mode 100644
index 00000000000..b58a9d9310b
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_up_change_runtime_version.yaml
@@ -0,0 +1,5887 @@
+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.14.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:
+ - Fri, 30 Oct 2020 02:40:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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;DSERIES"}},{"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:
+ - '17011'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:40: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: 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.14.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:
+ - Fri, 30 Oct 2020 02:40:29 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.14.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:
+ - Fri, 30 Oct 2020 02:40:29 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.14.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:
+ - Fri, 30 Oct 2020 02:40:29 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.14.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:
+ - Fri, 30 Oct 2020 02:40:29 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.14.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:
+ - Fri, 30 Oct 2020 02:40: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: 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.14.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;DSERIES"}},{"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:
+ - '17011'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:40: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 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.14.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:
+ - Fri, 30 Oct 2020 02:40:31 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.14.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:
+ - Fri, 30 Oct 2020 02:40:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - 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.14.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:
+ - Fri, 30 Oct 2020 02:40:31 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.14.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:
+ - Fri, 30 Oct 2020 02:40:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"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.14.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":11922,"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-173_11922","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:
+ - Fri, 30 Oct 2020 02:41:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp 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.14.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":11922,"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-173_11922","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:
+ - Fri, 30 Oct 2020 02:41: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-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.14.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:
+ - Fri, 30 Oct 2020 02:41: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-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.14.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-173.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-30T02:41:25.6933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5667'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:41:42 GMT
+ etag:
+ - '"1D6AE6629AF676B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-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.14.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:
+ - '1738'
+ content-type:
+ - application/xml
+ date:
+ - Fri, 30 Oct 2020 02:41:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp 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.14.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-173.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-30T02:41:26.3266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:41:43 GMT
+ etag:
+ - '"1D6AE6629AF676B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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:
+ - Fri, 30 Oct 2020 02:41:44 GMT
+ etag:
+ - '"1D6AE6634C507B5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-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.14.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":"PZxfd8kldY2NwQWduinXhdGh6JZ9TAzdmdqgi8pay5tZZMZ5NpvWDLkeKa0h","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:PZxfd8kldY2NwQWduinXhdGh6JZ9TAzdmdqgi8pay5tZZMZ5NpvWDLkeKa0h@up-nodeapp000003.scm.azurewebsites.net"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '723'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:41: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 -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.14.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-173.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-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:41:49 GMT
+ etag:
+ - '"1D6AE6634C507B5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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:
+ - '1738'
+ content-type:
+ - application/xml
+ date:
+ - Fri, 30 Oct 2020 02:41:49 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 |
+ UEsDBBQAAAAIAAmdXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
+ iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
+ XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
+ BfC58FDcXsUyofXcEBBXkGrv9rXmD8PgBHKg3qRpMAV19dF1OcyOh7oTsNhV07Hb+YD0oPqWIewf
+ 0xkLWMwYLUaz3EzQ2InpR8H0Pg0Pqn1uuU5OkaWiNkGy2J31jieIO+9m1synqJrO3ZlM8bmuIk2Z
+ y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
+ i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
+ 319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgACZ1dUTHV79fVAQAAMgQAAAYA
+ AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
+ zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
+ S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
+ a4PgMUS3YVrNLykS5EW1NF+/Wm3ky0unyagJK8jolmVuErIWpwkX+6V2wtmJvPQuRYfzNS/Fs6P6
+ 1Vsj7wGRRjSt7bCTJ/YfkGfQPcFRjR7hXGaUu7gr5YMKupX3W3Lxx6hb9la6Fg33UmylEBV5wFW5
+ iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
+ 6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
+ /r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAA2dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
+ q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
+ tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
+ eCtRvbW6U4B79l5Vylt6HPvRfwFAqGpGFIf5b9d3zOi3F2rAIzzQvK41K9jfsXa4QBturGqhEecl
+ dqSLGAQ3FTImpVBuBPNBDq2U3WBjkunMdtHGaBV0hJVojQbRajCDJ6vBkLb26AqZggQ47Hv9EUWG
+ DLmXYyQERxC54JL9YmYQ1mbB/+Mfv6qX/vM/75mR2xXVzxiB/4bw39i/wYkS+8iFstQ84r1mQTaA
+ Vayl2r4JrdHcdVm/HQjuyo5m82GEu0isjfqTXdrpD1KVS0EnsQe8bS8R1AXnMJZshASyQH3GWqs1
+ 3WqDJJQLKJEWLLii5KvXnAmv6yG//tev0xP/vOGgKMuqH9f1Ieg38kEfOmEWLDuVmhXOa44N7RbI
+ R/DK3NjMkJwcJhaLs5vAXo7n0na01gYZ7M1BfwHszNkgp/wGR+0obgPOkFW34ONyGotJpkP6NJto
+ wx0m7QmF9zuvOeYYjnrh1L/g39BvGP36UjnMVc2LDTH2wuN4xn/Ddez0wrp+iBRMAD9gZoFYsbL4
+ bFYYf2Yk1JypEyDC8IkHMFKYcMACdo0EahmdtXc3fo6gmu1Jol3XB5CCGx82+4z81fxTvVlhviID
+ 2DBpO2sQwlZMSS4Y9pL1YrueumOp9VKiZzn8+hstXoR+Cevra08n16civOdHCQghV73jU1kegW64
+ UMMJihaWoT3RIV9t95d5d7Ed6eG6ZU9Q+R+/vr76z+c90jY0txmrWVwj36IRv9Hvy/cLtqTnq9Ks
+ 0F5JtlcM7KXenbcgkHWEZTQM5b7d43BwJr+UrGW4StPbVbItxwJ8PU6L6VlTo7i6WfYw6PpmWIhc
+ jJsFIYarnR7Bageyo6g7w1VrJ8Zr8LeZdgItWXYqNiukVwwTbLYbktsBq1pwXzq0pzE9a5C7qbVb
+ 3I/oMBTz5s4W41itm4ig4oUfNP4auaTgut6sMF+R4dht36L7GZbKB5ZjtS4jjrZTz18qw3syCkWq
+ pvVwwTD8+60vAMtGFx/NCuFVWzF+MtjMoIbI273hMGmHjf0o3Sd9abG5a+txoQ0TNzacuv5SLBj4
+ B7PoDfSXInaqN4+grwix7Sxd9cWpFi4VFUApIB8j+2G8mgHoy8FWzFNq06xWxb/hYlyDt+NJU101
+ LFfFK+p//V3053LFeDqsXqut/xannims73HJI8hDYxGAbijhSxmyh6534FHSZJjXU9J9B/j19x0R
+ xTNqlMSGfebkw7SliJF+Wq4g4veN7hF7zZ0YxU0/9Hw1jI/r1XF6Q2qZ/Gd1uPUZgx/14NYrxpZa
+ XQAsKHPXZ+Cug3jskoB6zKGtwNiccwMs1MnlCObRXaeYFLqIKYeKSzSEKKJyiR5maWe/5xqbbtTd
+ TNhE0z0aQfqZlssPWwFJjAy5KSax/od54/uz3gW2ovxcqeaQF/NdSfuEbqh+QinuYrO0+4kuZpIU
+ NJQ9E8fpyO1vGhsjs9f2mMJYn8dWSNdddzB5OXfVDSJwEtebWbI5loxdmDr0Ru7a2nSraq812kjc
+ qU0p2e3USmPFSo22prN4St70xTCqnqxZLlq/ke9z7gJcsu5Sax4BX43IVW7pDgcoy3mE9/KeCtJW
+ aK/sZT7iX4/IPD4OE+Rr6326I3vFi9y4mhsqZR+q9MOrJxRVSrRjh8F/t2/v+MrpO9DtAC7Z0FTD
+ 0Auj0wP472sV8ZdRvHfftI1YPapc6G/45n4xnAptwIj0I1uLLQhy2+4gOo5d7PbFoZg2S9Ye24vc
+ vrSksWlcWgThNV3gxK3n2j/4yWRRIpZSLz+bFcYrcYO5tuQpyLN9F11ZuNXwlCUym/obSrsb6bLo
+ qLYsRvW6GfzBQP9CLZr9VW5WWC/VGmKRzgV0tHSc0WiwGnVZLgiUwDZM677pRdcrBkClL/9BHf/+
+ YLsGLgm4qlYq+cvRFmhgvvHjBF8PNZIcjCBqI1uDfTfGwdebrestRrX+3/ZDWzzkTVmUdfXVyiXr
+ YijKZdP/OCPBhVS+3ynvwUs+3V1qVsiveJW1UK8FQ6PDVqGwHdDNdgd1MBg7g1bnJa+MqFnqTdlL
+ Ttiq6DblqH5cFlNI6/s8OMOWxJ/LzSPYK7L3mU3jXWDY5ZYrW5UUPElJvkO0O8Dr/bjsOY5Y7LfD
+ o/hav7PrDhJ5SSirTafS+avZMavjipEYtZ3iEztFhVgxo/hswu/YJQRQWW+4RoexMnjU89Z9fpxY
+ 8q7hTajXfLidAI6D5XaXamh6/KcHUi9U0vDMKrBuXb/m+HN2tT6ZJc+oJcvO5WaF9YptZIjCu8a+
+ 7Y3HaaCjAZmD7Xy9sRjl9XquFaNU3SWFkq2Kim24Von63//4C6pWpxr63SgWC5Xc9Xy7bqlAbhby
+ 95lwDV1x4vpCZd2CX+uGucrJZEDR+mgaCGScbqb9vgCp2cADIigzVWttGK6OGrE/4fvdBGU7kJpw
+ OrTTQGICp+PhfLvmLfJAYJNYiSE57m+95GP78N/Evar0YFwv9zUQfquA3KM87nzuvt/6g8AqzUwx
+ It+LjNio3cGAN1rQN6R2j38U3f3VZoX/0obFiaNEQaBWiGEbeeot1uZIVxLXLNXTp4SdVM46c9L3
+ bXDXwFekVGpfhfi6D+pDDqEoLmrFZLszh0aNySKI02nHj1DHgree1GqPV+vxwBystLZj2DRgol7k
+ uvxoTXZJmrSAeD/sA/FCbjvTBWNwpM6tO/d7M9nzLKOO9mIJ/GgiKiErqstCs0J5adNpdPWG2u7F
+ YwO37Exe+ZJHxrQnE9HTFr/aF6EfCe0K+dL+r60R+o7YbA9C4oBGGCqmpwSdd9B2N5B0kbYia8aA
+ CbDoGMOJFg7X6qy7QSG51QIOWRxSXbvVYQcICepmO4DAho6wcWtIsPYKjd+YOr4EeSe1C8eiYt0S
+ 4yRUz926Zs/x5PG6gfF9Y989+IXNX5eqAfLSCIimU08LJ91Dj/Bym8LVrbOeTIJDaKQPHeZsKXu+
+ 2BYz3yedvAKtml+Vmkeg1x0ES03XF+cAoiwbaxKVvJCK3M6Gl3UXBNeCNu+s2J5FBfsG22LVvSkd
+ HG/H4vqOac+3Q9s34QmY8X6huBOcMeON1SA4rLT7cX3eKteR3P42xRViQW/1WVHbfk2s1CUoO1QY
+ kXE5qcM1IMqLN/tgG0mIKttYauDkrvhj5gt54qU+Lu8jXwPN9cGdzdme6QAU0VE0mlyqHW45nshs
+ PxqM3zk2jM52pZolTVGrnaRx+NNW9fs66wW24tS5Um1WX2qvbXsyoWdCV5SGvUWiNlCnzQ8wb0v5
+ nQfpVuaOuhOE76/AJWDVYl+pzgterrFOCxLQRcooMOcKEgNmvVkCJkstFu831opavMvLf3R5PWFW
+ La5K7yyqUNNG9fWsm1EKg3VJh2pMsJlBbphgv3lgsCf/yRIOfbShOYOWzT4VK2a/7Bi4183IQIem
+ A2VqmD672qM+pwoMyt4zW1WbOyOM6g4UPzteOoMW7T4X3ztUWvGZTq8iFt3PU2Yp597SyLdhtop0
+ 8L7druwpahLaf+gm3+/VX6hly8/lqqu87N/hHADzPtEFu1Y+grxuijsOGdkSBz2wPJLFQqvTY+dP
+ jf++3egKt2z+pVYR8NJq1LHNAJtwfDFEJ6hM+/0hkZIzUOlv7o12l/OPOtv8J42vMKuGV6XKKv+i
+ 0eWCYS0jOVhb6LTr4y1hCyqWRrFLAwdahomAIEuu5kyAwBygbNTVXEhZFFrl80y0J5A6czrYtr1Y
+ AKN1u0fQK8FZtoXOJsMfVkc1FusWR+ijzXcJWBJbfDShd7bcvIgmOLze+wbjhSEQaHjWVgVH6g7l
+ +7YevddqmouW277vT6An0LLJx1LzCPRaQCYEL5JcQulxqAAB33HwpDvoWFw8bdG9+YzZkj0F68Hs
+ dASrI/EA5YuJsiCByXSYB6CxQIOiMxYK9aIbunSPI2XXipLpG8cmF2+o0mKOXHmN/fV4tH430ZVb
+ 3ZuzlPuDk9o97t2G9nHL+OSU4iNN/N885bieP49Nur19M0cdH7ih/jQgyjut2ybvDFe0ddFV7C/O
+ 3T1QiEp/yipHDTW1WazQcmj48ekA5sH3w1Fj3VOi53S9PHypRHqhG7n9ui/GejP2jnbdk1kOunKb
+ Kx8JvSxviooSnl5wJ83a0x1Xu9qElu+Gb1v29Jzv+r7qKqcW4fd3wn3RSWIxNuQTy5H7J+Ki3bFX
+ dsKjw82tRlI+Unw9idQzX+8cBJ6cP13dPc7YlfieimwvhvmVvJ4q2Hf95ue0kWvgYv66rr6jlZRz
+ 2AbqL3oe0lYPqDjopMQ4j9xFD2MOm3VjJQ7N1hAjrCkiUtwc2tGzERqFhGOqRpugNTfVO3l+mG0c
+ fivOBxLcaCdbSOHiN+aw+pH9747ff3Oc/LmzJK5vXE12NTuqnRemYqiodRsT8KONyRdqKepzuTo3
+ e71FGQ/bQUZD23UyJtecd4gO234KZObw3gx4nsJ+zqJZIZZNLj/fs1pymzyGeXi9Xbm4BgVZYyrk
+ U51ckeK9RrBLXLmyhkqG+6dt4Adj6xq5bP51/d3RlQ+9fecwXqPtiG5tbKy1E7orBov2wigRDYnL
+ 1jxDjxxyKs2TbgiOdxBrcJ7fH7cnBm0aG7Ir7UQRpnVcClUe70yW8yH4YLh8du7wc+6AD+gFMx6u
+ vecgOGcbsRJmRqvb0KbSCJv7XhvEpzM/v3cQ1MX6/eYnSniBVzS7+P+dHUMpuR2s7KfgcoFPVZOY
+ WSumH6q6KR3GHZP2MWDJcj4Wz/3VcIkyg8GWhQAyk+hZvAMiowMLq7kKtmWx5yzjzeawooYSKaCH
+ N2yX9x26PH4tu+/TeebWoeM5t/BPuHXBLbl2qTUrvFdiNqCl1yWEBtvzRitgHoxMfdNtDLZj7fUp
+ fb1eZ7i6Wrzmy5qF/BtaQHUoV0ztf/3vv2rW7BtXmOeT4Y13zLusveAWnL1Umke41/3SVfP5YknH
+ om7uQIdElO2cIJJGawryZKtt0opLWgrGQYy24SRONEREW6+nyxG8C1rLfAFr43GPEMQJwSfWnAR8
+ Z73Z996wIpYqXHilwxUcrAIQCg7W+AZcyevnNtNn0JJ5p+I722mouTmkkdbgRD5YdNtCsT02hE67
+ 2+1uFPRu6jH8UgP+XWslh363PzB4faGWLT+XmxXWa6GPUcF08QnQmOLAcC0wkcoGA4+WGxit9BkY
+ jtaBa859ZZuqAxZHxweK6+T8NqcWyAxgZ3u4P/JEwp3EGtCFqT3uEIeG+rCMGNFFvnXr6PdPOb5Q
+ S8LP5Wr9fHGuUTkmykpnlPpra+5g2/1esggvnS6E/XJPsj2N5TBATXdr6uA6PL2L0O3MEd2pypJz
+ c7Y0LRHhaW+Cr5lGm0YWQrAbBHNxgaVPCD9t/etPcz/zMLtBPjLgUn/P42wq5oHY2LUHh1mGUKMB
+ v8L01BqvQ+Yb8SX/Qu/VaE8yVTluilF0duGoAj3+Pw5BKWRTLCGOUeux95nrzgX2KP9T5T0nHlVk
+ fWK6S+1E4yYxm7eIdJXu2qMWcB8jdeWx9XNnC2fQY8ur4nunC8uZMnSgWWpJ3XlPs1fLMSGsE7th
+ M6+dj46q3zky5qmoipnzGB9j7P50mPL9vco1cEH0dfU9Wzl9kNpI287nuWGK3VDemN1kZ+ErVbk/
+ uzcLZNGNio2c84cZ95NJ5wa5ouKqXpHxst8Rm31q6eiey4gFJPetOaynbswMhtH4Hd/Byzg6hhHc
+ br+vbhL1Mr5EUD2fjuEPxHvCLHhyKjUrnFfcGKue7h8EPJGStJXPHJiZJv4MY7n+a5+w60X1qMtj
+ z+m9cT/9uSF8gS2ovlTeG8aeonIpvqCUcdLRaZCYwqjiMz4lefdK01dsSI1hnvgNfT+2+Qhatrsq
+ NE84r9WGVjaVZ4N913Q9WREw2U/X/Hp5cBwdU7FGJFIw3/dU3pFYZybgDLLkfZ+bDmNw7DpUA83s
+ rZc4Odjn+mAPHC+HvDTpQA/60iWM7+c22yfMiuaq9N7Gesx2c9g0kQnS89iFNxkmW2MdK+0Oc28w
+ cVTFECuLfd2kA34UAHyFWzT+qlb5PL2ccPSstw7TwGH2JtDQD1pnpS8WzthegvdHdM8s6T/H/wf0
+ ipi7a+/JJOoEwXKFbGJq6dE8wYCSPW8B1jiBqQeSzmb/n/NiOGFWza9K7/kyLAXHgtztggIJORO2
+ ztKbSD10IQLT+xHv1IcRllvrD1h/DB6sotwrhNfjnB1CjWC6TbCevMJTMd8MhMMMiNdst9fFpg4a
+ QQeYZ8zeYnQYyc4O6e0PAuHZyQYddOehXGwLDNZZLTR1MtKIFZIM+X0WP8RsVS1SpHpiP/GOOYGe
+ CVak5hHoNdELacd0Z+iis5xNtLG/GzoHEIuczpolGnJj68am2IHxziS21iN7qrZRoiNq2EEZyiy/
+ GHUMut0N0FVGGm1zEWEHq9NCpc1zov/k91Ht/r8/p19wz6QfnT+OcG+4jLG6EAcklvnzjtoPWLIz
+ 1lJxM3Z5wyJilZ+gw86hS7h+b49bB3WB++HOmuGEJLcIBrJWY65veeJWCKCiTWo21iyHWr5xXnHp
+ BGeJP13FnYJGsT6iuf3JuKggS25Vhcpm8MbYGPBCzA2XaI6Iu7nR3SwzIxQt3e7u+tYQwiGZwC2W
+ lkWCtiAmicYAwKsepJrwWhy7hjFRxa1lj5ehjuzn8fDgH1LJd94wFN1EOB4PEW/Uv0+OdF8e6RQP
+ 6KqoqF+BbbVqpfMne9QHw7jqxkcb1MtFbqkZSbhLO3sn9TtKe+f0adRUe0u7db/I3WTyeL5I4x8s
+ ChfYotWXSrNCe8MNe7uWCRZWG5ymDiG1R6oABHZCBVUtaReGQb9F+Y0W4+xQZtiDpYlGTPZdbrqd
+ NKwdjRGoT/NDwkkcuLMIeobisYE8nz5YY+4tEzUa5Qcj6Qa54MBNvYm+48Y15J04w7YbvQV01qP9
+ go/C4Z6I4G5/fE/GTZ993uM+UbSucEsSLrUm/I6iNeSow3bYT7UWBI0RR/BWdhYYMC8uXkeQX3nU
+ /frDqcTNYPy5vfkF9kj3qfLOvrzsvP62QzVoZuTlw3keKwELLrCoQQ99cwIyHDI90AaQtGZZg1pi
+ wKrBzFf9db+V0Qd1TxEdk9z1gsEeaO1HrYCPhvrADWZW+LAnuDpbrstU9H2j9xm0oPtcrHIVvXFc
+ 0DVydZrRc4DZ5hPMAQ9tbrdOUaFLMriQaweo59tgGpi23qP6fZKD+m60WFIj0McR3etDO9lEdoPc
+ XRvtyWaKuqvpqBE8KAuVb0nVtD9I/Pum4wtsRfm58o5TfEl7X3Cmc5iSBuFwQu7awozo9qhRajOt
+ DjWxEN4lpobFoi696STINFbhBrOZLPeW36F4BwHmownF0D0g2zLmIc80hCVX08PDdPXgV1N34P/9
+ DFW30GcefF2ojv5f5KuCmghMkmqH3C2M1hIHBR7LZ3gfCIpJ+j444M/WT+KjAJiL6fNs9yReh8BU
+ 51yeza+3ADpqSByw6NvWThwm5rpNslk/dfj2dI460xjL93nLYCEdSYM5xXQN89DvTObdrt12V+YG
+ hcwk77gwi/CQPhrN3/GtO6Z0OSouNSdbN35SdbrE91XjC+yRXadKpVu8oRnHADHLBmtugMtMzIH+
+ rI9HjhC2ecZQdLKBWOsEZLW1K/U3Y+1AuYtsxqPAqKfspumWGudDHQGygdTi1kjcsHej9qGxWfJv
+ nFhfObv8+hf4cGx7dZx2Ojt7ztQ/xGgUulVTUmPxg+AUvwrU8KswjQvMSzOuuHdCqENljRE30zkr
+ cmd2vpyF6/S1/bp8V+nB1NSO/pd/P7gJlk/sDDs+qat/w88esNXsZDR8yA5R3TZc63T/IVFLdd8T
+ la+72P3di7Pe829fZ4l5OGsvHyjN4n6zjK1V3fhir685TC+/IcZxrUIAf2Ta/EI9CbgqV2J+w3d3
+ Lm7RLTxfLbgeIy+R1Fwgs3ixHocKYo3R1cGUVIRauUK05SIGGfWGII3kXXcHAyuC42i6oSoLmgcH
+ Wm8EDb1MOGBsi3pjtDwE/B7leyP+u+ONJ0nCnsmoxq581x1/zkHqGvgkgXP1vZCIASe7s2kr6GB4
+ IpqTTh54M3IjC6up9iNsvApcOQ5C8PtMPvfamnFSecWcvn3vb/tqGO09Q2mqtnoZQfB9C1LjuIv+
+ G6v3Nbxuxg+qnGfUk2Sr8rtKZ0AhG50SONiZdVZjmtFYJZ5jPUK25vpMkNez1Np5DSoMNJFQckbZ
+ INsgiXw/HHdNoB0xsGE6mL6mVzwFdBAb9b3xynhUOm9m0ToT1QfL8AX3RPypVtmo3smoaqUExMZh
+ F40yW2WNoCEvbP4QGSO35Y+xxr6rWV19BVO4N5kexGAuDEl2yGOyjXq6mvQOe2bTnQubw0xcGu54
+ ES7RzeidqeUqGUc5HO5sJO/NPLeHkncnkO/1+lS0ra8xd7P0nCTwdfPW01qzy2PWrzxueN3+8np1
+ /LlUoF+oJ6FX5TdTgPL6QYkFR5HmkIsCe94wejyILzVx+Fpoj7lknigE9x4qNUrBvWDq2XfWHn7O
+ M+sCe2ZgVXnPOys6DADPlhFEFWXKjVcpD2Q7HIMl2XtL3/pOj/wTW45KU21etu8bLc6oZ54UxWNS
+ tjcsFovA1/p+nq9nG42JgDUORhQuDHetBRk58mDDTsSpLOfLEZXM8SlHDsceno053WPcICYRHiGl
+ KbpFSPOABb1osdLRcB29sQV65hoEPXa2G6a26pn6IkfSJ6agC+yJr195kd5w0VjgYufQJvmpkqep
+ C3YtRmgJruUY0uu8SC/6WuxZhfJTNFYVneO2v9YOfase/OAm8oJ74s05D+eb20iuEa5Zt5246I7f
+ EEQa+3JC53taJNOUANrQDjEHIoShwQLGA7rjTlVcWEFdadiTM6OP2SO2PRAPm2It7ya9/UTr8RM/
+ frSaPNtD/JzXwyP8iRm3F9/NP2JghV7SFdCc1oVs4GMGyw1SQxMNDVgu21qD1mbqiFmtBtRA2rOR
+ FIxAjwNYLJGSkezhqwRhRRfziYQIrFYH9UYjHd+/4Qz+2N3qLBKX8Vin4H8/C9cZ9MS6slgp9i9S
+ cFWmt3GCjDF3MUJ2ZoICqrZOt1NwPTLw3QpgkTmynGs0D6H9bGK0pNjOtDkWbEcAwKRb2gFgWsRR
+ BuAmQquzVfMISY2xtXwwtgb12Vk/CVQJyk4SlKlYX4aoVL6p2LazRoFRxjh0g0gnBOovenjQ0dtA
+ 6u4VXjaD9nxrqvv9+iAsPELaOWkbisRgbB76ApwFbQjwlAmsrIDV1CYCfjDp9R9ovAuu+7lMgtfA
+ Bd3X1XfyCVZHjKEWZQ0vDLxccx2dllhxQOEy3MaZxmDe4ddeRtG4Nkn82dRx+szMyw+7PiLLnb0a
+ dMkwDQE4z3iMXCpAf25jojZNhYcA5avkkXWnKN/XVs6gFeXHYnV+8sbupq1GBmXvITLcekMk7PaS
+ acJ2yZmUdPx+X+xx/M4UdnY/U3K0IDjQ9CzBLZuyrOVwT5pqg6ZBct2WPWrfYoMVvgYI13xjMqjP
+ FnqX1/PbaT0vQW1/iGl7nke5xtj9iT3hyQtK6TxebR5f8IbbvJb025hnmOCui/BLZDHboUtY6G36
+ jM64TD/YD4eaQnXVaa87b7dSYdXrMG1UEJKlv+EX3lzuL4YjfITmE5IwoR5NDwTysX/eJWyvC8P5
+ hCNXyBUvrupVKM5LG4sph5Y8HQyNMI03HQAQXMXQYx/CzHvHsMverGYF+cT8f3qsantVah6B3ji4
+ yoKp1F232NYm7uhTcqY17FBW3MaIbaw2U6EVC2Yg0JIZh0OMcwUc4Tl9a6ONnN2Fi3asRNI4aXfc
+ EBAdVZu3iHF7i7+z5F4fZR2NQjW5oW5TIP5cktQr3JJvl9p7KVI386kkG4DjQfTKEKgJM6XHti70
+ qcYb8QKPKVJr1NfbiO5nxN8Geb9L/BVuQfxVrYm9l66wr8CLLcn0rLW9IfoSk+0iqgW4e9ZaUAuo
+ j7RkKDImOM/hYpubt8fOgGz1XT+SBWfMCB7dGk2HYdxKFCDlYs/MI7SPNx7G/F00VK1/1Ef0h7cM
+ OFePLlJvRHRvPYRtFdMcMTNyA6Qgiuc8c3QgLF/1XYEftoc5Jw0GGrRer9W9hCnMkIj9fAJ3ellf
+ 5qVBn9jL+WxggbKUBjIfGov4kQNqbbztXRT/26SrVZxt+dE8QrymlcLRDc0toogeUDS59yXJDFF0
+ 0h3FQ6jj6Rnf2goGY/KjyOoobBIaG4rDl3mfima9QUuQvUPft8Q1RPb3uugG3dSSqe0bs8QnTkyX
+ 5E9PEmX8P0xaUZuT4lk68NukFSfb9a0/51+3KcWuLr9003ojU8Rj9P3z+ec2L0TtkvVJN7wgV93x
+ Uj0uXu/4mgCxwoRTdIG0iFnbG5sS5JlEIIzF8c6Z5gpqtvUp7WVbFZZEPjpoA1lYmUkuAl1jjlna
+ dsvOEmUwmXZAf7Oe2q2Qx9w3uuW/24teZEa4zdJRI5e7ONyfSxl2C12J5vrCO+nDStmQewqYp/52
+ jdJrKsum2Taf9Xl+j2PQWEidFbst9EKHk2dDsxesEgknrDmbDMcZisjbbSgAMkkeUlKe9FYencXw
+ mqKH/sPhxE2u6Lrw4e/bNS6wJf1flSp6+GU0B47PIdhPJ/nWVcXOODbANkwftkIHjl5rBpcfGvr1
+ 3/8Af1//WtUt4ZcBXOca/oHoT6Al0adi5SL+hrgPutCN49YenvTCmc3xfncSp4CubkfxbtELMnIM
+ JUpgWBIwkCwMHrGoywtpCIEJQRie311hoygf+MlaAPsuJaMtZ6SqD+asp79+8nPZCx7hC048Xnwv
+ G1rSW2YNCx4zkpYMs6iP4mN6rc7ZvnW/JbgzZz7vxp9EWVwDV5Rcqk3wndiKQ0K05LUPZz16Tzng
+ yJUCe73G2i3yPi7ykt2ndl/2fcvYCbRs+rF03Iy9YRibWzM2bEeLeUYNWmNll3QFjlgaByY/zCZj
+ 04QZWPFgJkTY3CnIYZYKZUXJgeO7rk1zK9TK23zD6DQcsU32HRBf82Teesd9/Sbs5y7G56+63xZ8
+ OsKvz+nqUrbD38+p+gVbcPWr3DyCveoOrLw8jBcarRJzvQ0hhxUSyHGOBSvldcKJ26z+/yq1pBtd
+ 59SWYrRJoZcW6sDJX+BfD0ejuRhqR/YVO9xrO8pXC+pjqZ+uF4+DDbtJ2PUT6wZ250FYw2FDmyqj
+ WUcHDVD1FnkHnvp9Ax/tuVb6MrC6hoM/5xn87AWXXnRz+b0oXkmzLCiEnVgETEGditJq7C3YHqqF
+ 107Snl8mahFLban8Ndxbms8mtZ8L6z1ClnRVhfcCeaOwPcVpmg0d2o6HNMoqQ2m0F7bk9N778zbR
+ 2c9F1F3hlm2/1N6LonOxZdaDusYWmxGjcSrMwAHZ8XgXy+4d7k+Z2H4uhK4ELJpcfrwXPDf03XTU
+ R+LxRLBtPRq5yEwQdBOecPfMvvf9qT1x/n6jr5HL1l/X3/k9MKiZ9sV9vGGJwYgXzFUvsEwrsSfF
+ atu4JyM1XMVLm1F96mjwI1X/Crcg4apWmcBex9n0zMkosIhhl8CnutswhmqCtWzOZe5z7Z4crOrs
+ V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
+ Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
+ 8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgADZ1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
+ 2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
+ UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
+ GfdO1uQLUEsDBBQAAAAIAAmdXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
+ KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
+ Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
+ cE3nuLIm4zCqk6w/X9/C0xOIN7PZjFsSucShjwWnimmoMGJyblF6hI+3t2toZxh1awHqx/yTLITe
+ BCymsqMqV8p51GA0EJdG5ZiHPlNGZFmCRv9g7D3N5NEWMhvk71qWIT/uuHWg0bFAa40VXGfJX4eX
+ bZbSdyHgqj+NeK16nUC20hEBQ9+63m3QTklpSwmUbaGQpcOOVVHrzCvifqhzI8sJfI8ARpuopHV4
+ qcPlFF7PuDmAKiBWbiVX7UhtFkCagpY7FkdVGBCLvraaCpZzOj/3uaH42wXMRpkBa4mPUxkecjss
+ zDKPngcdlg2/rVYvWmhB8442DsdB5mNADvtVg076OMS0fJhiOCZu7zJe8NFiAd0+RM/Zb615gBA3
+ EGTlyKE5Kef3FZqi05HT22WIkPsOxJo0AgGnISKAZwRydA8GqUmZLZmG3O0qzFShsm7OtrODB+W3
+ 5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
+ 5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
+ 9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
+ iDtN2Ck/AFBLAwQUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
+ pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
+ AFBLAwQUAAAACAANnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
+ 90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAANnV1Ryvs205UAAADLAAAADwAAAHJv
+ dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
+ hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
+ nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
+ AA2dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
+ FAAAAAgADZ1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAJnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAAmdXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACAANnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAANnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgACZ1dUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
+ UygAAGJpbi93d3dQSwECFAAUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
+ cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAA2dXVHEkPudlgAAAM0AAAAP
+ AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACAANnV1Ryvs205UAAADL
+ AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgADZ1dUeC7KhZK
+ AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAA2dXVHO
+ 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
+ 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.14.0
+ method: POST
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 30 Oct 2020 02:42:27 GMT
+ location:
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-42-27Z
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:31 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:34 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:37 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:40 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:44 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:46 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:50 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:53 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:56 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:42:59 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:43:02 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","status":1,"status_text":"Building
+ and Deploying ''852432842b6a4d54a8621ed6433cf21a''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_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:
+ - Fri, 30 Oct 2020 02:43:05 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"852432842b6a4d54a8621ed6433cf21a","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-30T02:42:30.2622688Z","start_time":"2020-10-30T02:42:30.4143647Z","end_time":"2020-10-30T02:43:07.6060453Z","last_success_end_time":"2020-10-30T02:43:07.6060453Z","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:
+ - Fri, 30 Oct 2020 02:43:08 GMT
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.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-173.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-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:43:09 GMT
+ etag:
+ - '"1D6AE6634C507B5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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-173.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-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:43:09 GMT
+ etag:
+ - '"1D6AE6634C507B5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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-173.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-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:43:09 GMT
+ etag:
+ - '"1D6AE6634C507B5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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:
+ - '1738'
+ content-type:
+ - application/xml
+ date:
+ - Fri, 30 Oct 2020 02:43:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"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.14.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:
+ - Fri, 30 Oct 2020 02:43: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 --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.14.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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"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/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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"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-173.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-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/sites/up-nodeapp3ngwpwaky6to4q","name":"up-nodeapp3ngwpwaky6to4q","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp3ngwpwaky6to4q","state":"Running","hostNames":[],"webSpace":"clitestll2w665itavskk4be-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestll2w665itavskk4be-CentralUSwebspace/sites/up-nodeapp3ngwpwaky6to4q","repositorySiteName":"up-nodeapp3ngwpwaky6to4q","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net","up-nodeapp3ngwpwaky6to4q.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-nodeapp3ngwpwaky6to4q.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/serverfarms/up-nodeplanzcxyeyslctxis","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:05.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp3ngwpwaky6to4q","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.122.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-nodeapp3ngwpwaky6to4q\\$up-nodeapp3ngwpwaky6to4q","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":"clitestll2w665itavskk4be","defaultHostName":"up-nodeapp3ngwpwaky6to4q.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/sites/up-nodeapplpdfzfrwj6r7p3","name":"up-nodeapplpdfzfrwj6r7p3","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapplpdfzfrwj6r7p3","state":"Running","hostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net"],"webSpace":"clitesttb2x34sdpupxs4z6p-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttb2x34sdpupxs4z6p-CentralUSwebspace/sites/up-nodeapplpdfzfrwj6r7p3","repositorySiteName":"up-nodeapplpdfzfrwj6r7p3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","up-nodeapplpdfzfrwj6r7p3.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-nodeapplpdfzfrwj6r7p3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/serverfarms/up-nodeplanoahghpyhvvcf7","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapplpdfzfrwj6r7p3","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-nodeapplpdfzfrwj6r7p3\\$up-nodeapplpdfzfrwj6r7p3","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":"clitesttb2x34sdpupxs4z6p","defaultHostName":"up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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/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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/sites/up-nodeapp773sruovjgj5go","name":"up-nodeapp773sruovjgj5go","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp773sruovjgj5go","state":"Running","hostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net"],"webSpace":"clitestpfvhm5kzbcebdfssu-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestpfvhm5kzbcebdfssu-CentralUSwebspace/sites/up-nodeapp773sruovjgj5go","repositorySiteName":"up-nodeapp773sruovjgj5go","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net","up-nodeapp773sruovjgj5go.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-nodeapp773sruovjgj5go.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp773sruovjgj5go.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/serverfarms/up-nodeplani6inxawfrpcxz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:56.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":"up-nodeapp773sruovjgj5go","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-nodeapp773sruovjgj5go\\$up-nodeapp773sruovjgj5go","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":"clitestpfvhm5kzbcebdfssu","defaultHostName":"up-nodeapp773sruovjgj5go.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","slotSwapStatus":null,"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:
+ - '461472'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 30 Oct 2020 02:43:13 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:
+ - 7b9201f6-80b0-49f5-b1bd-4d9d47614b7c
+ - 5b5650e0-952c-49f6-b706-fb65a4074c8a
+ - b2e56600-bc3f-4a8c-9ba6-d7adc4f56c5e
+ - 09233491-d501-4691-beb2-280b7ea67e1f
+ - 0b9859a3-9f0c-46f4-9bb4-6b0550ccd9b1
+ - c4bc21b4-5d3b-4cc9-bf37-d2408256ff16
+ 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.14.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":11922,"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-173_11922","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:
+ - Fri, 30 Oct 2020 02:43: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: 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.14.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:
+ - Fri, 30 Oct 2020 02:43: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": "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.14.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":11922,"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":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-173_11922","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:
+ - Fri, 30 Oct 2020 02:43:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '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.14.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:
+ - Fri, 30 Oct 2020 02:43: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: 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.14.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:
+ - Fri, 30 Oct 2020 02:43:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp 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.14.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:
+ - Fri, 30 Oct 2020 02:43: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: '{"kind": "", "properties": {"SCM_DO_BUILD_DURING_DEPLOYMENT":
+ "True", "WEBSITE_HTTPLOGGING_RETENTION_DAYS": "3"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ 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.14.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/appsettings?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:
+ - Fri, 30 Oct 2020 02:43:21 GMT
+ etag:
+ - '"1D6AE666E577E95"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-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: '{"properties": {"numberOfWorkers": 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|12-lts", "requestTracingEnabled": false, "remoteDebuggingEnabled": false,
+ "httpLoggingEnabled": true, "acrUseManagedIdentityCreds": false, "logsDirectorySizeLimit":
+ 100, "detailedErrorLoggingEnabled": false, "publishingUsername": "$up-nodeapp000003",
+ "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false,
+ "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated",
+ "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules":
+ []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress":
+ "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description":
+ "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled":
+ true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount":
+ 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1424'
+ 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.14.0
+ accept-language:
+ - en-US
+ method: PATCH
+ 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","name":"up-nodeapp000003","type":"Microsoft.Web/sites","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|12-lts","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","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:
+ - '3588'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:43:23 GMT
+ etag:
+ - '"1D6AE666E577E95"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-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.14.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":"PZxfd8kldY2NwQWduinXhdGh6JZ9TAzdmdqgi8pay5tZZMZ5NpvWDLkeKa0h","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:PZxfd8kldY2NwQWduinXhdGh6JZ9TAzdmdqgi8pay5tZZMZ5NpvWDLkeKa0h@up-nodeapp000003.scm.azurewebsites.net"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '723'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:44:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-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.14.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-173.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|12-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-30T02:43:23.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":"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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5468'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:44:24 GMT
+ etag:
+ - '"1D6AE666F68A075"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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:
+ - '1738'
+ content-type:
+ - application/xml
+ date:
+ - Fri, 30 Oct 2020 02:44:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: !!binary |
+ UEsDBBQAAAAIAAmdXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
+ iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
+ XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
+ BfC58FDcXsUyofXcEBBXkGrv9rXmD8PgBHKg3qRpMAV19dF1OcyOh7oTsNhV07Hb+YD0oPqWIewf
+ 0xkLWMwYLUaz3EzQ2InpR8H0Pg0Pqn1uuU5OkaWiNkGy2J31jieIO+9m1synqJrO3ZlM8bmuIk2Z
+ y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
+ i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
+ 319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgACZ1dUTHV79fVAQAAMgQAAAYA
+ AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
+ zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
+ S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
+ a4PgMUS3YVrNLykS5EW1NF+/Wm3ky0unyagJK8jolmVuErIWpwkX+6V2wtmJvPQuRYfzNS/Fs6P6
+ 1Vsj7wGRRjSt7bCTJ/YfkGfQPcFRjR7hXGaUu7gr5YMKupX3W3Lxx6hb9la6Fg33UmylEBV5wFW5
+ iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
+ 6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
+ /r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAA2dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
+ q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
+ tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
+ eCtRvbW6U4B79l5Vylt6HPvRfwFAqGpGFIf5b9d3zOi3F2rAIzzQvK41K9jfsXa4QBturGqhEecl
+ dqSLGAQ3FTImpVBuBPNBDq2U3WBjkunMdtHGaBV0hJVojQbRajCDJ6vBkLb26AqZggQ47Hv9EUWG
+ DLmXYyQERxC54JL9YmYQ1mbB/+Mfv6qX/vM/75mR2xXVzxiB/4bw39i/wYkS+8iFstQ84r1mQTaA
+ Vayl2r4JrdHcdVm/HQjuyo5m82GEu0isjfqTXdrpD1KVS0EnsQe8bS8R1AXnMJZshASyQH3GWqs1
+ 3WqDJJQLKJEWLLii5KvXnAmv6yG//tev0xP/vOGgKMuqH9f1Ieg38kEfOmEWLDuVmhXOa44N7RbI
+ R/DK3NjMkJwcJhaLs5vAXo7n0na01gYZ7M1BfwHszNkgp/wGR+0obgPOkFW34ONyGotJpkP6NJto
+ wx0m7QmF9zuvOeYYjnrh1L/g39BvGP36UjnMVc2LDTH2wuN4xn/Ddez0wrp+iBRMAD9gZoFYsbL4
+ bFYYf2Yk1JypEyDC8IkHMFKYcMACdo0EahmdtXc3fo6gmu1Jol3XB5CCGx82+4z81fxTvVlhviID
+ 2DBpO2sQwlZMSS4Y9pL1YrueumOp9VKiZzn8+hstXoR+Cevra08n16civOdHCQghV73jU1kegW64
+ UMMJihaWoT3RIV9t95d5d7Ed6eG6ZU9Q+R+/vr76z+c90jY0txmrWVwj36IRv9Hvy/cLtqTnq9Ks
+ 0F5JtlcM7KXenbcgkHWEZTQM5b7d43BwJr+UrGW4StPbVbItxwJ8PU6L6VlTo7i6WfYw6PpmWIhc
+ jJsFIYarnR7Bageyo6g7w1VrJ8Zr8LeZdgItWXYqNiukVwwTbLYbktsBq1pwXzq0pzE9a5C7qbVb
+ 3I/oMBTz5s4W41itm4ig4oUfNP4auaTgut6sMF+R4dht36L7GZbKB5ZjtS4jjrZTz18qw3syCkWq
+ pvVwwTD8+60vAMtGFx/NCuFVWzF+MtjMoIbI273hMGmHjf0o3Sd9abG5a+txoQ0TNzacuv5SLBj4
+ B7PoDfSXInaqN4+grwix7Sxd9cWpFi4VFUApIB8j+2G8mgHoy8FWzFNq06xWxb/hYlyDt+NJU101
+ LFfFK+p//V3053LFeDqsXqut/xannims73HJI8hDYxGAbijhSxmyh6534FHSZJjXU9J9B/j19x0R
+ xTNqlMSGfebkw7SliJF+Wq4g4veN7hF7zZ0YxU0/9Hw1jI/r1XF6Q2qZ/Gd1uPUZgx/14NYrxpZa
+ XQAsKHPXZ+Cug3jskoB6zKGtwNiccwMs1MnlCObRXaeYFLqIKYeKSzSEKKJyiR5maWe/5xqbbtTd
+ TNhE0z0aQfqZlssPWwFJjAy5KSax/od54/uz3gW2ovxcqeaQF/NdSfuEbqh+QinuYrO0+4kuZpIU
+ NJQ9E8fpyO1vGhsjs9f2mMJYn8dWSNdddzB5OXfVDSJwEtebWbI5loxdmDr0Ru7a2nSraq812kjc
+ qU0p2e3USmPFSo22prN4St70xTCqnqxZLlq/ke9z7gJcsu5Sax4BX43IVW7pDgcoy3mE9/KeCtJW
+ aK/sZT7iX4/IPD4OE+Rr6326I3vFi9y4mhsqZR+q9MOrJxRVSrRjh8F/t2/v+MrpO9DtAC7Z0FTD
+ 0Auj0wP472sV8ZdRvHfftI1YPapc6G/45n4xnAptwIj0I1uLLQhy2+4gOo5d7PbFoZg2S9Ye24vc
+ vrSksWlcWgThNV3gxK3n2j/4yWRRIpZSLz+bFcYrcYO5tuQpyLN9F11ZuNXwlCUym/obSrsb6bLo
+ qLYsRvW6GfzBQP9CLZr9VW5WWC/VGmKRzgV0tHSc0WiwGnVZLgiUwDZM677pRdcrBkClL/9BHf/+
+ YLsGLgm4qlYq+cvRFmhgvvHjBF8PNZIcjCBqI1uDfTfGwdebrestRrX+3/ZDWzzkTVmUdfXVyiXr
+ YijKZdP/OCPBhVS+3ynvwUs+3V1qVsiveJW1UK8FQ6PDVqGwHdDNdgd1MBg7g1bnJa+MqFnqTdlL
+ Ttiq6DblqH5cFlNI6/s8OMOWxJ/LzSPYK7L3mU3jXWDY5ZYrW5UUPElJvkO0O8Dr/bjsOY5Y7LfD
+ o/hav7PrDhJ5SSirTafS+avZMavjipEYtZ3iEztFhVgxo/hswu/YJQRQWW+4RoexMnjU89Z9fpxY
+ 8q7hTajXfLidAI6D5XaXamh6/KcHUi9U0vDMKrBuXb/m+HN2tT6ZJc+oJcvO5WaF9YptZIjCu8a+
+ 7Y3HaaCjAZmD7Xy9sRjl9XquFaNU3SWFkq2Kim24Von63//4C6pWpxr63SgWC5Xc9Xy7bqlAbhby
+ 95lwDV1x4vpCZd2CX+uGucrJZEDR+mgaCGScbqb9vgCp2cADIigzVWttGK6OGrE/4fvdBGU7kJpw
+ OrTTQGICp+PhfLvmLfJAYJNYiSE57m+95GP78N/Evar0YFwv9zUQfquA3KM87nzuvt/6g8AqzUwx
+ It+LjNio3cGAN1rQN6R2j38U3f3VZoX/0obFiaNEQaBWiGEbeeot1uZIVxLXLNXTp4SdVM46c9L3
+ bXDXwFekVGpfhfi6D+pDDqEoLmrFZLszh0aNySKI02nHj1DHgree1GqPV+vxwBystLZj2DRgol7k
+ uvxoTXZJmrSAeD/sA/FCbjvTBWNwpM6tO/d7M9nzLKOO9mIJ/GgiKiErqstCs0J5adNpdPWG2u7F
+ YwO37Exe+ZJHxrQnE9HTFr/aF6EfCe0K+dL+r60R+o7YbA9C4oBGGCqmpwSdd9B2N5B0kbYia8aA
+ CbDoGMOJFg7X6qy7QSG51QIOWRxSXbvVYQcICepmO4DAho6wcWtIsPYKjd+YOr4EeSe1C8eiYt0S
+ 4yRUz926Zs/x5PG6gfF9Y989+IXNX5eqAfLSCIimU08LJ91Dj/Bym8LVrbOeTIJDaKQPHeZsKXu+
+ 2BYz3yedvAKtml+Vmkeg1x0ES03XF+cAoiwbaxKVvJCK3M6Gl3UXBNeCNu+s2J5FBfsG22LVvSkd
+ HG/H4vqOac+3Q9s34QmY8X6huBOcMeON1SA4rLT7cX3eKteR3P42xRViQW/1WVHbfk2s1CUoO1QY
+ kXE5qcM1IMqLN/tgG0mIKttYauDkrvhj5gt54qU+Lu8jXwPN9cGdzdme6QAU0VE0mlyqHW45nshs
+ PxqM3zk2jM52pZolTVGrnaRx+NNW9fs66wW24tS5Um1WX2qvbXsyoWdCV5SGvUWiNlCnzQ8wb0v5
+ nQfpVuaOuhOE76/AJWDVYl+pzgterrFOCxLQRcooMOcKEgNmvVkCJkstFu831opavMvLf3R5PWFW
+ La5K7yyqUNNG9fWsm1EKg3VJh2pMsJlBbphgv3lgsCf/yRIOfbShOYOWzT4VK2a/7Bi4183IQIem
+ A2VqmD672qM+pwoMyt4zW1WbOyOM6g4UPzteOoMW7T4X3ztUWvGZTq8iFt3PU2Yp597SyLdhtop0
+ 8L7druwpahLaf+gm3+/VX6hly8/lqqu87N/hHADzPtEFu1Y+grxuijsOGdkSBz2wPJLFQqvTY+dP
+ jf++3egKt2z+pVYR8NJq1LHNAJtwfDFEJ6hM+/0hkZIzUOlv7o12l/OPOtv8J42vMKuGV6XKKv+i
+ 0eWCYS0jOVhb6LTr4y1hCyqWRrFLAwdahomAIEuu5kyAwBygbNTVXEhZFFrl80y0J5A6czrYtr1Y
+ AKN1u0fQK8FZtoXOJsMfVkc1FusWR+ijzXcJWBJbfDShd7bcvIgmOLze+wbjhSEQaHjWVgVH6g7l
+ +7YevddqmouW277vT6An0LLJx1LzCPRaQCYEL5JcQulxqAAB33HwpDvoWFw8bdG9+YzZkj0F68Hs
+ dASrI/EA5YuJsiCByXSYB6CxQIOiMxYK9aIbunSPI2XXipLpG8cmF2+o0mKOXHmN/fV4tH430ZVb
+ 3ZuzlPuDk9o97t2G9nHL+OSU4iNN/N885bieP49Nur19M0cdH7ih/jQgyjut2ybvDFe0ddFV7C/O
+ 3T1QiEp/yipHDTW1WazQcmj48ekA5sH3w1Fj3VOi53S9PHypRHqhG7n9ui/GejP2jnbdk1kOunKb
+ Kx8JvSxviooSnl5wJ83a0x1Xu9qElu+Gb1v29Jzv+r7qKqcW4fd3wn3RSWIxNuQTy5H7J+Ki3bFX
+ dsKjw82tRlI+Unw9idQzX+8cBJ6cP13dPc7YlfieimwvhvmVvJ4q2Hf95ue0kWvgYv66rr6jlZRz
+ 2AbqL3oe0lYPqDjopMQ4j9xFD2MOm3VjJQ7N1hAjrCkiUtwc2tGzERqFhGOqRpugNTfVO3l+mG0c
+ fivOBxLcaCdbSOHiN+aw+pH9747ff3Oc/LmzJK5vXE12NTuqnRemYqiodRsT8KONyRdqKepzuTo3
+ e71FGQ/bQUZD23UyJtecd4gO234KZObw3gx4nsJ+zqJZIZZNLj/fs1pymzyGeXi9Xbm4BgVZYyrk
+ U51ckeK9RrBLXLmyhkqG+6dt4Adj6xq5bP51/d3RlQ+9fecwXqPtiG5tbKy1E7orBov2wigRDYnL
+ 1jxDjxxyKs2TbgiOdxBrcJ7fH7cnBm0aG7Ir7UQRpnVcClUe70yW8yH4YLh8du7wc+6AD+gFMx6u
+ vecgOGcbsRJmRqvb0KbSCJv7XhvEpzM/v3cQ1MX6/eYnSniBVzS7+P+dHUMpuR2s7KfgcoFPVZOY
+ WSumH6q6KR3GHZP2MWDJcj4Wz/3VcIkyg8GWhQAyk+hZvAMiowMLq7kKtmWx5yzjzeawooYSKaCH
+ N2yX9x26PH4tu+/TeebWoeM5t/BPuHXBLbl2qTUrvFdiNqCl1yWEBtvzRitgHoxMfdNtDLZj7fUp
+ fb1eZ7i6Wrzmy5qF/BtaQHUoV0ztf/3vv2rW7BtXmOeT4Y13zLusveAWnL1Umke41/3SVfP5YknH
+ om7uQIdElO2cIJJGawryZKtt0opLWgrGQYy24SRONEREW6+nyxG8C1rLfAFr43GPEMQJwSfWnAR8
+ Z73Z996wIpYqXHilwxUcrAIQCg7W+AZcyevnNtNn0JJ5p+I722mouTmkkdbgRD5YdNtCsT02hE67
+ 2+1uFPRu6jH8UgP+XWslh363PzB4faGWLT+XmxXWa6GPUcF08QnQmOLAcC0wkcoGA4+WGxit9BkY
+ jtaBa859ZZuqAxZHxweK6+T8NqcWyAxgZ3u4P/JEwp3EGtCFqT3uEIeG+rCMGNFFvnXr6PdPOb5Q
+ S8LP5Wr9fHGuUTkmykpnlPpra+5g2/1esggvnS6E/XJPsj2N5TBATXdr6uA6PL2L0O3MEd2pypJz
+ c7Y0LRHhaW+Cr5lGm0YWQrAbBHNxgaVPCD9t/etPcz/zMLtBPjLgUn/P42wq5oHY2LUHh1mGUKMB
+ v8L01BqvQ+Yb8SX/Qu/VaE8yVTluilF0duGoAj3+Pw5BKWRTLCGOUeux95nrzgX2KP9T5T0nHlVk
+ fWK6S+1E4yYxm7eIdJXu2qMWcB8jdeWx9XNnC2fQY8ur4nunC8uZMnSgWWpJ3XlPs1fLMSGsE7th
+ M6+dj46q3zky5qmoipnzGB9j7P50mPL9vco1cEH0dfU9Wzl9kNpI287nuWGK3VDemN1kZ+ErVbk/
+ uzcLZNGNio2c84cZ95NJ5wa5ouKqXpHxst8Rm31q6eiey4gFJPetOaynbswMhtH4Hd/Byzg6hhHc
+ br+vbhL1Mr5EUD2fjuEPxHvCLHhyKjUrnFfcGKue7h8EPJGStJXPHJiZJv4MY7n+a5+w60X1qMtj
+ z+m9cT/9uSF8gS2ovlTeG8aeonIpvqCUcdLRaZCYwqjiMz4lefdK01dsSI1hnvgNfT+2+Qhatrsq
+ NE84r9WGVjaVZ4N913Q9WREw2U/X/Hp5cBwdU7FGJFIw3/dU3pFYZybgDLLkfZ+bDmNw7DpUA83s
+ rZc4Odjn+mAPHC+HvDTpQA/60iWM7+c22yfMiuaq9N7Gesx2c9g0kQnS89iFNxkmW2MdK+0Oc28w
+ cVTFECuLfd2kA34UAHyFWzT+qlb5PL2ccPSstw7TwGH2JtDQD1pnpS8WzthegvdHdM8s6T/H/wf0
+ ipi7a+/JJOoEwXKFbGJq6dE8wYCSPW8B1jiBqQeSzmb/n/NiOGFWza9K7/kyLAXHgtztggIJORO2
+ ztKbSD10IQLT+xHv1IcRllvrD1h/DB6sotwrhNfjnB1CjWC6TbCevMJTMd8MhMMMiNdst9fFpg4a
+ QQeYZ8zeYnQYyc4O6e0PAuHZyQYddOehXGwLDNZZLTR1MtKIFZIM+X0WP8RsVS1SpHpiP/GOOYGe
+ CVak5hHoNdELacd0Z+iis5xNtLG/GzoHEIuczpolGnJj68am2IHxziS21iN7qrZRoiNq2EEZyiy/
+ GHUMut0N0FVGGm1zEWEHq9NCpc1zov/k91Ht/r8/p19wz6QfnT+OcG+4jLG6EAcklvnzjtoPWLIz
+ 1lJxM3Z5wyJilZ+gw86hS7h+b49bB3WB++HOmuGEJLcIBrJWY65veeJWCKCiTWo21iyHWr5xXnHp
+ BGeJP13FnYJGsT6iuf3JuKggS25Vhcpm8MbYGPBCzA2XaI6Iu7nR3SwzIxQt3e7u+tYQwiGZwC2W
+ lkWCtiAmicYAwKsepJrwWhy7hjFRxa1lj5ehjuzn8fDgH1LJd94wFN1EOB4PEW/Uv0+OdF8e6RQP
+ 6KqoqF+BbbVqpfMne9QHw7jqxkcb1MtFbqkZSbhLO3sn9TtKe+f0adRUe0u7db/I3WTyeL5I4x8s
+ ChfYotWXSrNCe8MNe7uWCRZWG5ymDiG1R6oABHZCBVUtaReGQb9F+Y0W4+xQZtiDpYlGTPZdbrqd
+ NKwdjRGoT/NDwkkcuLMIeobisYE8nz5YY+4tEzUa5Qcj6Qa54MBNvYm+48Y15J04w7YbvQV01qP9
+ go/C4Z6I4G5/fE/GTZ993uM+UbSucEsSLrUm/I6iNeSow3bYT7UWBI0RR/BWdhYYMC8uXkeQX3nU
+ /frDqcTNYPy5vfkF9kj3qfLOvrzsvP62QzVoZuTlw3keKwELLrCoQQ99cwIyHDI90AaQtGZZg1pi
+ wKrBzFf9db+V0Qd1TxEdk9z1gsEeaO1HrYCPhvrADWZW+LAnuDpbrstU9H2j9xm0oPtcrHIVvXFc
+ 0DVydZrRc4DZ5hPMAQ9tbrdOUaFLMriQaweo59tgGpi23qP6fZKD+m60WFIj0McR3etDO9lEdoPc
+ XRvtyWaKuqvpqBE8KAuVb0nVtD9I/Pum4wtsRfm58o5TfEl7X3Cmc5iSBuFwQu7awozo9qhRajOt
+ DjWxEN4lpobFoi696STINFbhBrOZLPeW36F4BwHmownF0D0g2zLmIc80hCVX08PDdPXgV1N34P/9
+ DFW30GcefF2ojv5f5KuCmghMkmqH3C2M1hIHBR7LZ3gfCIpJ+j444M/WT+KjAJiL6fNs9yReh8BU
+ 51yeza+3ADpqSByw6NvWThwm5rpNslk/dfj2dI460xjL93nLYCEdSYM5xXQN89DvTObdrt12V+YG
+ hcwk77gwi/CQPhrN3/GtO6Z0OSouNSdbN35SdbrE91XjC+yRXadKpVu8oRnHADHLBmtugMtMzIH+
+ rI9HjhC2ecZQdLKBWOsEZLW1K/U3Y+1AuYtsxqPAqKfspumWGudDHQGygdTi1kjcsHej9qGxWfJv
+ nFhfObv8+hf4cGx7dZx2Ojt7ztQ/xGgUulVTUmPxg+AUvwrU8KswjQvMSzOuuHdCqENljRE30zkr
+ cmd2vpyF6/S1/bp8V+nB1NSO/pd/P7gJlk/sDDs+qat/w88esNXsZDR8yA5R3TZc63T/IVFLdd8T
+ la+72P3di7Pe829fZ4l5OGsvHyjN4n6zjK1V3fhir685TC+/IcZxrUIAf2Ta/EI9CbgqV2J+w3d3
+ Lm7RLTxfLbgeIy+R1Fwgs3ixHocKYo3R1cGUVIRauUK05SIGGfWGII3kXXcHAyuC42i6oSoLmgcH
+ Wm8EDb1MOGBsi3pjtDwE/B7leyP+u+ONJ0nCnsmoxq581x1/zkHqGvgkgXP1vZCIASe7s2kr6GB4
+ IpqTTh54M3IjC6up9iNsvApcOQ5C8PtMPvfamnFSecWcvn3vb/tqGO09Q2mqtnoZQfB9C1LjuIv+
+ G6v3Nbxuxg+qnGfUk2Sr8rtKZ0AhG50SONiZdVZjmtFYJZ5jPUK25vpMkNez1Np5DSoMNJFQckbZ
+ INsgiXw/HHdNoB0xsGE6mL6mVzwFdBAb9b3xynhUOm9m0ToT1QfL8AX3RPypVtmo3smoaqUExMZh
+ F40yW2WNoCEvbP4QGSO35Y+xxr6rWV19BVO4N5kexGAuDEl2yGOyjXq6mvQOe2bTnQubw0xcGu54
+ ES7RzeidqeUqGUc5HO5sJO/NPLeHkncnkO/1+lS0ra8xd7P0nCTwdfPW01qzy2PWrzxueN3+8np1
+ /LlUoF+oJ6FX5TdTgPL6QYkFR5HmkIsCe94wejyILzVx+Fpoj7lknigE9x4qNUrBvWDq2XfWHn7O
+ M+sCe2ZgVXnPOys6DADPlhFEFWXKjVcpD2Q7HIMl2XtL3/pOj/wTW45KU21etu8bLc6oZ54UxWNS
+ tjcsFovA1/p+nq9nG42JgDUORhQuDHetBRk58mDDTsSpLOfLEZXM8SlHDsceno053WPcICYRHiGl
+ KbpFSPOABb1osdLRcB29sQV65hoEPXa2G6a26pn6IkfSJ6agC+yJr195kd5w0VjgYufQJvmpkqep
+ C3YtRmgJruUY0uu8SC/6WuxZhfJTNFYVneO2v9YOfase/OAm8oJ74s05D+eb20iuEa5Zt5246I7f
+ EEQa+3JC53taJNOUANrQDjEHIoShwQLGA7rjTlVcWEFdadiTM6OP2SO2PRAPm2It7ya9/UTr8RM/
+ frSaPNtD/JzXwyP8iRm3F9/NP2JghV7SFdCc1oVs4GMGyw1SQxMNDVgu21qD1mbqiFmtBtRA2rOR
+ FIxAjwNYLJGSkezhqwRhRRfziYQIrFYH9UYjHd+/4Qz+2N3qLBKX8Vin4H8/C9cZ9MS6slgp9i9S
+ cFWmt3GCjDF3MUJ2ZoICqrZOt1NwPTLw3QpgkTmynGs0D6H9bGK0pNjOtDkWbEcAwKRb2gFgWsRR
+ BuAmQquzVfMISY2xtXwwtgb12Vk/CVQJyk4SlKlYX4aoVL6p2LazRoFRxjh0g0gnBOovenjQ0dtA
+ 6u4VXjaD9nxrqvv9+iAsPELaOWkbisRgbB76ApwFbQjwlAmsrIDV1CYCfjDp9R9ovAuu+7lMgtfA
+ Bd3X1XfyCVZHjKEWZQ0vDLxccx2dllhxQOEy3MaZxmDe4ddeRtG4Nkn82dRx+szMyw+7PiLLnb0a
+ dMkwDQE4z3iMXCpAf25jojZNhYcA5avkkXWnKN/XVs6gFeXHYnV+8sbupq1GBmXvITLcekMk7PaS
+ acJ2yZmUdPx+X+xx/M4UdnY/U3K0IDjQ9CzBLZuyrOVwT5pqg6ZBct2WPWrfYoMVvgYI13xjMqjP
+ FnqX1/PbaT0vQW1/iGl7nke5xtj9iT3hyQtK6TxebR5f8IbbvJb025hnmOCui/BLZDHboUtY6G36
+ jM64TD/YD4eaQnXVaa87b7dSYdXrMG1UEJKlv+EX3lzuL4YjfITmE5IwoR5NDwTysX/eJWyvC8P5
+ hCNXyBUvrupVKM5LG4sph5Y8HQyNMI03HQAQXMXQYx/CzHvHsMverGYF+cT8f3qsantVah6B3ji4
+ yoKp1F232NYm7uhTcqY17FBW3MaIbaw2U6EVC2Yg0JIZh0OMcwUc4Tl9a6ONnN2Fi3asRNI4aXfc
+ EBAdVZu3iHF7i7+z5F4fZR2NQjW5oW5TIP5cktQr3JJvl9p7KVI386kkG4DjQfTKEKgJM6XHti70
+ qcYb8QKPKVJr1NfbiO5nxN8Geb9L/BVuQfxVrYm9l66wr8CLLcn0rLW9IfoSk+0iqgW4e9ZaUAuo
+ j7RkKDImOM/hYpubt8fOgGz1XT+SBWfMCB7dGk2HYdxKFCDlYs/MI7SPNx7G/F00VK1/1Ef0h7cM
+ OFePLlJvRHRvPYRtFdMcMTNyA6Qgiuc8c3QgLF/1XYEftoc5Jw0GGrRer9W9hCnMkIj9fAJ3ellf
+ 5qVBn9jL+WxggbKUBjIfGov4kQNqbbztXRT/26SrVZxt+dE8QrymlcLRDc0toogeUDS59yXJDFF0
+ 0h3FQ6jj6Rnf2goGY/KjyOoobBIaG4rDl3mfima9QUuQvUPft8Q1RPb3uugG3dSSqe0bs8QnTkyX
+ 5E9PEmX8P0xaUZuT4lk68NukFSfb9a0/51+3KcWuLr9003ojU8Rj9P3z+ec2L0TtkvVJN7wgV93x
+ Uj0uXu/4mgCxwoRTdIG0iFnbG5sS5JlEIIzF8c6Z5gpqtvUp7WVbFZZEPjpoA1lYmUkuAl1jjlna
+ dsvOEmUwmXZAf7Oe2q2Qx9w3uuW/24teZEa4zdJRI5e7ONyfSxl2C12J5vrCO+nDStmQewqYp/52
+ jdJrKsum2Taf9Xl+j2PQWEidFbst9EKHk2dDsxesEgknrDmbDMcZisjbbSgAMkkeUlKe9FYencXw
+ mqKH/sPhxE2u6Lrw4e/bNS6wJf1flSp6+GU0B47PIdhPJ/nWVcXOODbANkwftkIHjl5rBpcfGvr1
+ 3/8Af1//WtUt4ZcBXOca/oHoT6Al0adi5SL+hrgPutCN49YenvTCmc3xfncSp4CubkfxbtELMnIM
+ JUpgWBIwkCwMHrGoywtpCIEJQRie311hoygf+MlaAPsuJaMtZ6SqD+asp79+8nPZCx7hC048Xnwv
+ G1rSW2YNCx4zkpYMs6iP4mN6rc7ZvnW/JbgzZz7vxp9EWVwDV5Rcqk3wndiKQ0K05LUPZz16Tzng
+ yJUCe73G2i3yPi7ykt2ndl/2fcvYCbRs+rF03Iy9YRibWzM2bEeLeUYNWmNll3QFjlgaByY/zCZj
+ 04QZWPFgJkTY3CnIYZYKZUXJgeO7rk1zK9TK23zD6DQcsU32HRBf82Teesd9/Sbs5y7G56+63xZ8
+ OsKvz+nqUrbD38+p+gVbcPWr3DyCveoOrLw8jBcarRJzvQ0hhxUSyHGOBSvldcKJ26z+/yq1pBtd
+ 59SWYrRJoZcW6sDJX+BfD0ejuRhqR/YVO9xrO8pXC+pjqZ+uF4+DDbtJ2PUT6wZ250FYw2FDmyqj
+ WUcHDVD1FnkHnvp9Ax/tuVb6MrC6hoM/5xn87AWXXnRz+b0oXkmzLCiEnVgETEGditJq7C3YHqqF
+ 107Snl8mahFLban8Ndxbms8mtZ8L6z1ClnRVhfcCeaOwPcVpmg0d2o6HNMoqQ2m0F7bk9N778zbR
+ 2c9F1F3hlm2/1N6LonOxZdaDusYWmxGjcSrMwAHZ8XgXy+4d7k+Z2H4uhK4ELJpcfrwXPDf03XTU
+ R+LxRLBtPRq5yEwQdBOecPfMvvf9qT1x/n6jr5HL1l/X3/k9MKiZ9sV9vGGJwYgXzFUvsEwrsSfF
+ atu4JyM1XMVLm1F96mjwI1X/Crcg4apWmcBex9n0zMkosIhhl8CnutswhmqCtWzOZe5z7Z4crOrs
+ V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
+ Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
+ 8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgADZ1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
+ 2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
+ UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
+ GfdO1uQLUEsDBBQAAAAIAGSdXVH7LGoTgAAAAJsAAAANAAAALmF6dXJlL2NvbmZpZ0WMOxICIRBE
+ c6q4w17AwEA28hSGlgHCgHwWEGbYYk8vmhh29+t312AkRWwPzmzNVJbroqJDaGi2YHrxmN5uC4pS
+ 46wFmvvtzJkspUHtTkGJMs2Syill/Uvj8EOPg1qXIDiLWUl0+QspSFhlpKna4fl/TZvYfbSrsOJS
+ 6YWccfYBUEsDBBQAAAAIAAmdXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
+ KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
+ Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
+ cE3nuLIm4zCqk6w/X9/C0xOIN7PZjFsSucShjwWnimmoMGJyblF6hI+3t2toZxh1awHqx/yTLITe
+ BCymsqMqV8p51GA0EJdG5ZiHPlNGZFmCRv9g7D3N5NEWMhvk71qWIT/uuHWg0bFAa40VXGfJX4eX
+ bZbSdyHgqj+NeK16nUC20hEBQ9+63m3QTklpSwmUbaGQpcOOVVHrzCvifqhzI8sJfI8ARpuopHV4
+ qcPlFF7PuDmAKiBWbiVX7UhtFkCagpY7FkdVGBCLvraaCpZzOj/3uaH42wXMRpkBa4mPUxkecjss
+ zDKPngcdlg2/rVYvWmhB8442DsdB5mNADvtVg076OMS0fJhiOCZu7zJe8NFiAd0+RM/Zb615gBA3
+ EGTlyKE5Kef3FZqi05HT22WIkPsOxJo0AgGnISKAZwRydA8GqUmZLZmG3O0qzFShsm7OtrODB+W3
+ 5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
+ 5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
+ 9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
+ iDtN2Ck/AFBLAwQUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
+ pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
+ AFBLAwQUAAAACAANnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
+ 90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAANnV1Ryvs205UAAADLAAAADwAAAHJv
+ dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
+ hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
+ nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
+ AA2dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
+ FAAAAAgADZ1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAJnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAAmdXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACAANnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAANnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgAZJ1dUfssahOAAAAAmwAAAA0AAAAAAAAAAAAAALaB
+ UygAAC5henVyZS9jb25maWdQSwECFAAUAAAACAAJnV1RznJP6cECAAA+BgAABwAAAAAAAAAAAAAA
+ toH+KAAAYmluL3d3d1BLAQIUABQAAAAIAA2dXVEMsgsvawAAAG8AAAAcAAAAAAAAAAAAAAC2geQr
+ AABwdWJsaWMvc3R5bGVzaGVldHMvc3R5bGUuY3NzUEsBAhQAFAAAAAgADZ1dUcSQ+52WAAAAzQAA
+ AA8AAAAAAAAAAAAAALaBiSwAAHJvdXRlcy9pbmRleC5qc1BLAQIUABQAAAAIAA2dXVHK+zbTlQAA
+ AMsAAAAPAAAAAAAAAAAAAAC2gUwtAAByb3V0ZXMvdXNlcnMuanNQSwECFAAUAAAACAANnV1R4Lsq
+ FkoAAABUAAAADwAAAAAAAAAAAAAAtoEOLgAAdmlld3MvZXJyb3IucHVnUEsBAhQAFAAAAAgADZ1d
+ Uc7opQ8+AAAAQgAAAA8AAAAAAAAAAAAAALaBhS4AAHZpZXdzL2luZGV4LnB1Z1BLAQIUABQAAAAI
+ AA2dXVGfUoDsXQAAAH0AAAAQAAAAAAAAAAAAAAC2gfAuAAB2aWV3cy9sYXlvdXQucHVnUEsFBgAA
+ AAAMAAwA0QIAAHsvAAAAAA==
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '12898'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - AZURECLI/2.14.0
+ method: POST
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 30 Oct 2020 02:44:28 GMT
+ location:
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-44-27Z
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:31 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:35 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:38 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:41 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:44 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:47 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:51 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:53 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:44:57 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:45:00 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","status":1,"status_text":"Building
+ and Deploying ''8160a47d057543c3b792b47ff5d7b336''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_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:
+ - Fri, 30 Oct 2020 02:45:03 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"8160a47d057543c3b792b47ff5d7b336","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-30T02:44:29.9974254Z","start_time":"2020-10-30T02:44:30.1157401Z","end_time":"2020-10-30T02:45:04.4347293Z","last_success_end_time":"2020-10-30T02:45:04.4347293Z","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:
+ - Fri, 30 Oct 2020 02:45:05 GMT
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.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-173.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|12-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-30T02:43:23.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":"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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5468'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:45:05 GMT
+ etag:
+ - '"1D6AE666F68A075"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config show
+ Connection:
+ - keep-alive
+ User-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.14.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|12-lts","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","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:
+ - '3606'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:45: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-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.14.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:
+ - Fri, 30 Oct 2020 02:45: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 -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.14.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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"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/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3nj2vc6mcbid4sm4l/providers/Microsoft.Web/sites/up-pythonappo527ox4wtvvl","name":"up-pythonappo527ox4wtvvl","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappo527ox4wtvvl","state":"Running","hostNames":["up-pythonappo527ox4wtvvl.azurewebsites.net"],"webSpace":"clitest3nj2vc6mcbid4sm4l-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest3nj2vc6mcbid4sm4l-CentralUSwebspace/sites/up-pythonappo527ox4wtvvl","repositorySiteName":"up-pythonappo527ox4wtvvl","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappo527ox4wtvvl.azurewebsites.net","up-pythonappo527ox4wtvvl.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-pythonappo527ox4wtvvl.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappo527ox4wtvvl.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3nj2vc6mcbid4sm4l/providers/Microsoft.Web/serverfarms/up-pythonplan4hp4k2kom7c","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:45:02.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-pythonappo527ox4wtvvl","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-pythonappo527ox4wtvvl\\$up-pythonappo527ox4wtvvl","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":"clitest3nj2vc6mcbid4sm4l","defaultHostName":"up-pythonappo527ox4wtvvl.azurewebsites.net","slotSwapStatus":null,"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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"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-173.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|12-lts"},{"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-30T02:43:23.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":"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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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/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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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/clitesthrtyfletarvfwcgqr/providers/Microsoft.Web/sites/up-pythonappa7ald4xreyzi","name":"up-pythonappa7ald4xreyzi","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappa7ald4xreyzi","state":"Running","hostNames":["up-pythonappa7ald4xreyzi.azurewebsites.net"],"webSpace":"clitesthrtyfletarvfwcgqr-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesthrtyfletarvfwcgqr-CentralUSwebspace/sites/up-pythonappa7ald4xreyzi","repositorySiteName":"up-pythonappa7ald4xreyzi","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappa7ald4xreyzi.azurewebsites.net","up-pythonappa7ald4xreyzi.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-pythonappa7ald4xreyzi.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappa7ald4xreyzi.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthrtyfletarvfwcgqr/providers/Microsoft.Web/serverfarms/up-pythonplankvb5lw3lsjf","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:45:00.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappa7ald4xreyzi","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-pythonappa7ald4xreyzi\\$up-pythonappa7ald4xreyzi","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":"clitesthrtyfletarvfwcgqr","defaultHostName":"up-pythonappa7ald4xreyzi.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwlhd3dw63b5uikoff/providers/Microsoft.Web/sites/up-name-exists-appfnoj5o7bas7lxqj3ppjgpj","name":"up-name-exists-appfnoj5o7bas7lxqj3ppjgpj","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appfnoj5o7bas7lxqj3ppjgpj","state":"Running","hostNames":["up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.azurewebsites.net"],"webSpace":"clitestwlhd3dw63b5uikoff-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwlhd3dw63b5uikoff-EastUS2webspace/sites/up-name-exists-appfnoj5o7bas7lxqj3ppjgpj","repositorySiteName":"up-name-exists-appfnoj5o7bas7lxqj3ppjgpj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.azurewebsites.net","up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.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-appfnoj5o7bas7lxqj3ppjgpj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwlhd3dw63b5uikoff/providers/Microsoft.Web/serverfarms/up-name-exists-planlj4zdngfc4i6n2d5pro7j","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:31.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appfnoj5o7bas7lxqj3ppjgpj","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appfnoj5o7bas7lxqj3ppjgpj\\$up-name-exists-appfnoj5o7bas7lxqj3ppjgpj","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwlhd3dw63b5uikoff","defaultHostName":"up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","slotSwapStatus":null,"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:
+ - '461877'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 30 Oct 2020 02:45:10 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:
+ - 6d284608-8d83-4b66-8a9a-9631fb98a052
+ - 4bd54f07-84c6-4690-bc53-e263a83b9721
+ - 2a1b6fda-f340-4d71-94e4-3adaa4af7064
+ - 552296e6-c8c1-429d-90ab-1c1b0aac71cb
+ - 32ac4e94-7ad7-4c2d-b6d6-b3cb3d3770bc
+ - cb90c3d9-3c26-4257-8be5-a71940c5182b
+ 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.14.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":11922,"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-173_11922","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:
+ - Fri, 30 Oct 2020 02:45: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.48.0 Azure-SDK-For-Python AZURECLI/2.14.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|12-lts","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","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:
+ - '3606'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:45: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: '{"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.14.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":11922,"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":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-173_11922","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:
+ - Fri, 30 Oct 2020 02:45: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 --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.14.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|12-lts","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","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:
+ - '3606'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:45:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - 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.14.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:
+ - Fri, 30 Oct 2020 02:45: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-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.14.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:
+ - Fri, 30 Oct 2020 02:45:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"kind": "", "properties": {"SCM_DO_BUILD_DURING_DEPLOYMENT":
+ "True", "WEBSITE_HTTPLOGGING_RETENTION_DAYS": "3"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ 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.14.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/appsettings?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:
+ - Fri, 30 Oct 2020 02:45:16 GMT
+ etag:
+ - '"1D6AE66B3083B4B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-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: '{"properties": {"numberOfWorkers": 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", "requestTracingEnabled": false, "remoteDebuggingEnabled": false,
+ "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": true, "acrUseManagedIdentityCreds":
+ false, "logsDirectorySizeLimit": 100, "detailedErrorLoggingEnabled": false,
+ "publishingUsername": "$up-nodeapp000003", "scmType": "None", "use32BitWorkerProcess":
+ true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode":
+ "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules":
+ []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress":
+ "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description":
+ "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled":
+ true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount":
+ 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1459'
+ 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.14.0
+ accept-language:
+ - en-US
+ method: PATCH
+ 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","name":"up-nodeapp000003","type":"Microsoft.Web/sites","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":"VS2019","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:
+ - '3587'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:45:18 GMT
+ etag:
+ - '"1D6AE66B3083B4B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-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.14.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":"PZxfd8kldY2NwQWduinXhdGh6JZ9TAzdmdqgi8pay5tZZMZ5NpvWDLkeKa0h","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:PZxfd8kldY2NwQWduinXhdGh6JZ9TAzdmdqgi8pay5tZZMZ5NpvWDLkeKa0h@up-nodeapp000003.scm.azurewebsites.net"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '723'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:46:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '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.14.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-173.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-30T02:45:18.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:46:19 GMT
+ etag:
+ - '"1D6AE66B40FB335"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-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.14.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:
+ - '1738'
+ content-type:
+ - application/xml
+ date:
+ - Fri, 30 Oct 2020 02:46: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 |
+ UEsDBBQAAAAIAAmdXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
+ iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
+ XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
+ BfC58FDcXsUyofXcEBBXkGrv9rXmD8PgBHKg3qRpMAV19dF1OcyOh7oTsNhV07Hb+YD0oPqWIewf
+ 0xkLWMwYLUaz3EzQ2InpR8H0Pg0Pqn1uuU5OkaWiNkGy2J31jieIO+9m1synqJrO3ZlM8bmuIk2Z
+ y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
+ i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
+ 319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgACZ1dUTHV79fVAQAAMgQAAAYA
+ AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
+ zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
+ S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
+ a4PgMUS3YVrNLykS5EW1NF+/Wm3ky0unyagJK8jolmVuErIWpwkX+6V2wtmJvPQuRYfzNS/Fs6P6
+ 1Vsj7wGRRjSt7bCTJ/YfkGfQPcFRjR7hXGaUu7gr5YMKupX3W3Lxx6hb9la6Fg33UmylEBV5wFW5
+ iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
+ 6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
+ /r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAA2dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
+ q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
+ tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
+ eCtRvbW6U4B79l5Vylt6HPvRfwFAqGpGFIf5b9d3zOi3F2rAIzzQvK41K9jfsXa4QBturGqhEecl
+ dqSLGAQ3FTImpVBuBPNBDq2U3WBjkunMdtHGaBV0hJVojQbRajCDJ6vBkLb26AqZggQ47Hv9EUWG
+ DLmXYyQERxC54JL9YmYQ1mbB/+Mfv6qX/vM/75mR2xXVzxiB/4bw39i/wYkS+8iFstQ84r1mQTaA
+ Vayl2r4JrdHcdVm/HQjuyo5m82GEu0isjfqTXdrpD1KVS0EnsQe8bS8R1AXnMJZshASyQH3GWqs1
+ 3WqDJJQLKJEWLLii5KvXnAmv6yG//tev0xP/vOGgKMuqH9f1Ieg38kEfOmEWLDuVmhXOa44N7RbI
+ R/DK3NjMkJwcJhaLs5vAXo7n0na01gYZ7M1BfwHszNkgp/wGR+0obgPOkFW34ONyGotJpkP6NJto
+ wx0m7QmF9zuvOeYYjnrh1L/g39BvGP36UjnMVc2LDTH2wuN4xn/Ddez0wrp+iBRMAD9gZoFYsbL4
+ bFYYf2Yk1JypEyDC8IkHMFKYcMACdo0EahmdtXc3fo6gmu1Jol3XB5CCGx82+4z81fxTvVlhviID
+ 2DBpO2sQwlZMSS4Y9pL1YrueumOp9VKiZzn8+hstXoR+Cevra08n16civOdHCQghV73jU1kegW64
+ UMMJihaWoT3RIV9t95d5d7Ed6eG6ZU9Q+R+/vr76z+c90jY0txmrWVwj36IRv9Hvy/cLtqTnq9Ks
+ 0F5JtlcM7KXenbcgkHWEZTQM5b7d43BwJr+UrGW4StPbVbItxwJ8PU6L6VlTo7i6WfYw6PpmWIhc
+ jJsFIYarnR7Bageyo6g7w1VrJ8Zr8LeZdgItWXYqNiukVwwTbLYbktsBq1pwXzq0pzE9a5C7qbVb
+ 3I/oMBTz5s4W41itm4ig4oUfNP4auaTgut6sMF+R4dht36L7GZbKB5ZjtS4jjrZTz18qw3syCkWq
+ pvVwwTD8+60vAMtGFx/NCuFVWzF+MtjMoIbI273hMGmHjf0o3Sd9abG5a+txoQ0TNzacuv5SLBj4
+ B7PoDfSXInaqN4+grwix7Sxd9cWpFi4VFUApIB8j+2G8mgHoy8FWzFNq06xWxb/hYlyDt+NJU101
+ LFfFK+p//V3053LFeDqsXqut/xannims73HJI8hDYxGAbijhSxmyh6534FHSZJjXU9J9B/j19x0R
+ xTNqlMSGfebkw7SliJF+Wq4g4veN7hF7zZ0YxU0/9Hw1jI/r1XF6Q2qZ/Gd1uPUZgx/14NYrxpZa
+ XQAsKHPXZ+Cug3jskoB6zKGtwNiccwMs1MnlCObRXaeYFLqIKYeKSzSEKKJyiR5maWe/5xqbbtTd
+ TNhE0z0aQfqZlssPWwFJjAy5KSax/od54/uz3gW2ovxcqeaQF/NdSfuEbqh+QinuYrO0+4kuZpIU
+ NJQ9E8fpyO1vGhsjs9f2mMJYn8dWSNdddzB5OXfVDSJwEtebWbI5loxdmDr0Ru7a2nSraq812kjc
+ qU0p2e3USmPFSo22prN4St70xTCqnqxZLlq/ke9z7gJcsu5Sax4BX43IVW7pDgcoy3mE9/KeCtJW
+ aK/sZT7iX4/IPD4OE+Rr6326I3vFi9y4mhsqZR+q9MOrJxRVSrRjh8F/t2/v+MrpO9DtAC7Z0FTD
+ 0Auj0wP472sV8ZdRvHfftI1YPapc6G/45n4xnAptwIj0I1uLLQhy2+4gOo5d7PbFoZg2S9Ye24vc
+ vrSksWlcWgThNV3gxK3n2j/4yWRRIpZSLz+bFcYrcYO5tuQpyLN9F11ZuNXwlCUym/obSrsb6bLo
+ qLYsRvW6GfzBQP9CLZr9VW5WWC/VGmKRzgV0tHSc0WiwGnVZLgiUwDZM677pRdcrBkClL/9BHf/+
+ YLsGLgm4qlYq+cvRFmhgvvHjBF8PNZIcjCBqI1uDfTfGwdebrestRrX+3/ZDWzzkTVmUdfXVyiXr
+ YijKZdP/OCPBhVS+3ynvwUs+3V1qVsiveJW1UK8FQ6PDVqGwHdDNdgd1MBg7g1bnJa+MqFnqTdlL
+ Ttiq6DblqH5cFlNI6/s8OMOWxJ/LzSPYK7L3mU3jXWDY5ZYrW5UUPElJvkO0O8Dr/bjsOY5Y7LfD
+ o/hav7PrDhJ5SSirTafS+avZMavjipEYtZ3iEztFhVgxo/hswu/YJQRQWW+4RoexMnjU89Z9fpxY
+ 8q7hTajXfLidAI6D5XaXamh6/KcHUi9U0vDMKrBuXb/m+HN2tT6ZJc+oJcvO5WaF9YptZIjCu8a+
+ 7Y3HaaCjAZmD7Xy9sRjl9XquFaNU3SWFkq2Kim24Von63//4C6pWpxr63SgWC5Xc9Xy7bqlAbhby
+ 95lwDV1x4vpCZd2CX+uGucrJZEDR+mgaCGScbqb9vgCp2cADIigzVWttGK6OGrE/4fvdBGU7kJpw
+ OrTTQGICp+PhfLvmLfJAYJNYiSE57m+95GP78N/Evar0YFwv9zUQfquA3KM87nzuvt/6g8AqzUwx
+ It+LjNio3cGAN1rQN6R2j38U3f3VZoX/0obFiaNEQaBWiGEbeeot1uZIVxLXLNXTp4SdVM46c9L3
+ bXDXwFekVGpfhfi6D+pDDqEoLmrFZLszh0aNySKI02nHj1DHgree1GqPV+vxwBystLZj2DRgol7k
+ uvxoTXZJmrSAeD/sA/FCbjvTBWNwpM6tO/d7M9nzLKOO9mIJ/GgiKiErqstCs0J5adNpdPWG2u7F
+ YwO37Exe+ZJHxrQnE9HTFr/aF6EfCe0K+dL+r60R+o7YbA9C4oBGGCqmpwSdd9B2N5B0kbYia8aA
+ CbDoGMOJFg7X6qy7QSG51QIOWRxSXbvVYQcICepmO4DAho6wcWtIsPYKjd+YOr4EeSe1C8eiYt0S
+ 4yRUz926Zs/x5PG6gfF9Y989+IXNX5eqAfLSCIimU08LJ91Dj/Bym8LVrbOeTIJDaKQPHeZsKXu+
+ 2BYz3yedvAKtml+Vmkeg1x0ES03XF+cAoiwbaxKVvJCK3M6Gl3UXBNeCNu+s2J5FBfsG22LVvSkd
+ HG/H4vqOac+3Q9s34QmY8X6huBOcMeON1SA4rLT7cX3eKteR3P42xRViQW/1WVHbfk2s1CUoO1QY
+ kXE5qcM1IMqLN/tgG0mIKttYauDkrvhj5gt54qU+Lu8jXwPN9cGdzdme6QAU0VE0mlyqHW45nshs
+ PxqM3zk2jM52pZolTVGrnaRx+NNW9fs66wW24tS5Um1WX2qvbXsyoWdCV5SGvUWiNlCnzQ8wb0v5
+ nQfpVuaOuhOE76/AJWDVYl+pzgterrFOCxLQRcooMOcKEgNmvVkCJkstFu831opavMvLf3R5PWFW
+ La5K7yyqUNNG9fWsm1EKg3VJh2pMsJlBbphgv3lgsCf/yRIOfbShOYOWzT4VK2a/7Bi4183IQIem
+ A2VqmD672qM+pwoMyt4zW1WbOyOM6g4UPzteOoMW7T4X3ztUWvGZTq8iFt3PU2Yp597SyLdhtop0
+ 8L7druwpahLaf+gm3+/VX6hly8/lqqu87N/hHADzPtEFu1Y+grxuijsOGdkSBz2wPJLFQqvTY+dP
+ jf++3egKt2z+pVYR8NJq1LHNAJtwfDFEJ6hM+/0hkZIzUOlv7o12l/OPOtv8J42vMKuGV6XKKv+i
+ 0eWCYS0jOVhb6LTr4y1hCyqWRrFLAwdahomAIEuu5kyAwBygbNTVXEhZFFrl80y0J5A6czrYtr1Y
+ AKN1u0fQK8FZtoXOJsMfVkc1FusWR+ijzXcJWBJbfDShd7bcvIgmOLze+wbjhSEQaHjWVgVH6g7l
+ +7YevddqmouW277vT6An0LLJx1LzCPRaQCYEL5JcQulxqAAB33HwpDvoWFw8bdG9+YzZkj0F68Hs
+ dASrI/EA5YuJsiCByXSYB6CxQIOiMxYK9aIbunSPI2XXipLpG8cmF2+o0mKOXHmN/fV4tH430ZVb
+ 3ZuzlPuDk9o97t2G9nHL+OSU4iNN/N885bieP49Nur19M0cdH7ih/jQgyjut2ybvDFe0ddFV7C/O
+ 3T1QiEp/yipHDTW1WazQcmj48ekA5sH3w1Fj3VOi53S9PHypRHqhG7n9ui/GejP2jnbdk1kOunKb
+ Kx8JvSxviooSnl5wJ83a0x1Xu9qElu+Gb1v29Jzv+r7qKqcW4fd3wn3RSWIxNuQTy5H7J+Ki3bFX
+ dsKjw82tRlI+Unw9idQzX+8cBJ6cP13dPc7YlfieimwvhvmVvJ4q2Hf95ue0kWvgYv66rr6jlZRz
+ 2AbqL3oe0lYPqDjopMQ4j9xFD2MOm3VjJQ7N1hAjrCkiUtwc2tGzERqFhGOqRpugNTfVO3l+mG0c
+ fivOBxLcaCdbSOHiN+aw+pH9747ff3Oc/LmzJK5vXE12NTuqnRemYqiodRsT8KONyRdqKepzuTo3
+ e71FGQ/bQUZD23UyJtecd4gO234KZObw3gx4nsJ+zqJZIZZNLj/fs1pymzyGeXi9Xbm4BgVZYyrk
+ U51ckeK9RrBLXLmyhkqG+6dt4Adj6xq5bP51/d3RlQ+9fecwXqPtiG5tbKy1E7orBov2wigRDYnL
+ 1jxDjxxyKs2TbgiOdxBrcJ7fH7cnBm0aG7Ir7UQRpnVcClUe70yW8yH4YLh8du7wc+6AD+gFMx6u
+ vecgOGcbsRJmRqvb0KbSCJv7XhvEpzM/v3cQ1MX6/eYnSniBVzS7+P+dHUMpuR2s7KfgcoFPVZOY
+ WSumH6q6KR3GHZP2MWDJcj4Wz/3VcIkyg8GWhQAyk+hZvAMiowMLq7kKtmWx5yzjzeawooYSKaCH
+ N2yX9x26PH4tu+/TeebWoeM5t/BPuHXBLbl2qTUrvFdiNqCl1yWEBtvzRitgHoxMfdNtDLZj7fUp
+ fb1eZ7i6Wrzmy5qF/BtaQHUoV0ztf/3vv2rW7BtXmOeT4Y13zLusveAWnL1Umke41/3SVfP5YknH
+ om7uQIdElO2cIJJGawryZKtt0opLWgrGQYy24SRONEREW6+nyxG8C1rLfAFr43GPEMQJwSfWnAR8
+ Z73Z996wIpYqXHilwxUcrAIQCg7W+AZcyevnNtNn0JJ5p+I722mouTmkkdbgRD5YdNtCsT02hE67
+ 2+1uFPRu6jH8UgP+XWslh363PzB4faGWLT+XmxXWa6GPUcF08QnQmOLAcC0wkcoGA4+WGxit9BkY
+ jtaBa859ZZuqAxZHxweK6+T8NqcWyAxgZ3u4P/JEwp3EGtCFqT3uEIeG+rCMGNFFvnXr6PdPOb5Q
+ S8LP5Wr9fHGuUTkmykpnlPpra+5g2/1esggvnS6E/XJPsj2N5TBATXdr6uA6PL2L0O3MEd2pypJz
+ c7Y0LRHhaW+Cr5lGm0YWQrAbBHNxgaVPCD9t/etPcz/zMLtBPjLgUn/P42wq5oHY2LUHh1mGUKMB
+ v8L01BqvQ+Yb8SX/Qu/VaE8yVTluilF0duGoAj3+Pw5BKWRTLCGOUeux95nrzgX2KP9T5T0nHlVk
+ fWK6S+1E4yYxm7eIdJXu2qMWcB8jdeWx9XNnC2fQY8ur4nunC8uZMnSgWWpJ3XlPs1fLMSGsE7th
+ M6+dj46q3zky5qmoipnzGB9j7P50mPL9vco1cEH0dfU9Wzl9kNpI287nuWGK3VDemN1kZ+ErVbk/
+ uzcLZNGNio2c84cZ95NJ5wa5ouKqXpHxst8Rm31q6eiey4gFJPetOaynbswMhtH4Hd/Byzg6hhHc
+ br+vbhL1Mr5EUD2fjuEPxHvCLHhyKjUrnFfcGKue7h8EPJGStJXPHJiZJv4MY7n+a5+w60X1qMtj
+ z+m9cT/9uSF8gS2ovlTeG8aeonIpvqCUcdLRaZCYwqjiMz4lefdK01dsSI1hnvgNfT+2+Qhatrsq
+ NE84r9WGVjaVZ4N913Q9WREw2U/X/Hp5cBwdU7FGJFIw3/dU3pFYZybgDLLkfZ+bDmNw7DpUA83s
+ rZc4Odjn+mAPHC+HvDTpQA/60iWM7+c22yfMiuaq9N7Gesx2c9g0kQnS89iFNxkmW2MdK+0Oc28w
+ cVTFECuLfd2kA34UAHyFWzT+qlb5PL2ccPSstw7TwGH2JtDQD1pnpS8WzthegvdHdM8s6T/H/wf0
+ ipi7a+/JJOoEwXKFbGJq6dE8wYCSPW8B1jiBqQeSzmb/n/NiOGFWza9K7/kyLAXHgtztggIJORO2
+ ztKbSD10IQLT+xHv1IcRllvrD1h/DB6sotwrhNfjnB1CjWC6TbCevMJTMd8MhMMMiNdst9fFpg4a
+ QQeYZ8zeYnQYyc4O6e0PAuHZyQYddOehXGwLDNZZLTR1MtKIFZIM+X0WP8RsVS1SpHpiP/GOOYGe
+ CVak5hHoNdELacd0Z+iis5xNtLG/GzoHEIuczpolGnJj68am2IHxziS21iN7qrZRoiNq2EEZyiy/
+ GHUMut0N0FVGGm1zEWEHq9NCpc1zov/k91Ht/r8/p19wz6QfnT+OcG+4jLG6EAcklvnzjtoPWLIz
+ 1lJxM3Z5wyJilZ+gw86hS7h+b49bB3WB++HOmuGEJLcIBrJWY65veeJWCKCiTWo21iyHWr5xXnHp
+ BGeJP13FnYJGsT6iuf3JuKggS25Vhcpm8MbYGPBCzA2XaI6Iu7nR3SwzIxQt3e7u+tYQwiGZwC2W
+ lkWCtiAmicYAwKsepJrwWhy7hjFRxa1lj5ehjuzn8fDgH1LJd94wFN1EOB4PEW/Uv0+OdF8e6RQP
+ 6KqoqF+BbbVqpfMne9QHw7jqxkcb1MtFbqkZSbhLO3sn9TtKe+f0adRUe0u7db/I3WTyeL5I4x8s
+ ChfYotWXSrNCe8MNe7uWCRZWG5ymDiG1R6oABHZCBVUtaReGQb9F+Y0W4+xQZtiDpYlGTPZdbrqd
+ NKwdjRGoT/NDwkkcuLMIeobisYE8nz5YY+4tEzUa5Qcj6Qa54MBNvYm+48Y15J04w7YbvQV01qP9
+ go/C4Z6I4G5/fE/GTZ993uM+UbSucEsSLrUm/I6iNeSow3bYT7UWBI0RR/BWdhYYMC8uXkeQX3nU
+ /frDqcTNYPy5vfkF9kj3qfLOvrzsvP62QzVoZuTlw3keKwELLrCoQQ99cwIyHDI90AaQtGZZg1pi
+ wKrBzFf9db+V0Qd1TxEdk9z1gsEeaO1HrYCPhvrADWZW+LAnuDpbrstU9H2j9xm0oPtcrHIVvXFc
+ 0DVydZrRc4DZ5hPMAQ9tbrdOUaFLMriQaweo59tgGpi23qP6fZKD+m60WFIj0McR3etDO9lEdoPc
+ XRvtyWaKuqvpqBE8KAuVb0nVtD9I/Pum4wtsRfm58o5TfEl7X3Cmc5iSBuFwQu7awozo9qhRajOt
+ DjWxEN4lpobFoi696STINFbhBrOZLPeW36F4BwHmownF0D0g2zLmIc80hCVX08PDdPXgV1N34P/9
+ DFW30GcefF2ojv5f5KuCmghMkmqH3C2M1hIHBR7LZ3gfCIpJ+j444M/WT+KjAJiL6fNs9yReh8BU
+ 51yeza+3ADpqSByw6NvWThwm5rpNslk/dfj2dI460xjL93nLYCEdSYM5xXQN89DvTObdrt12V+YG
+ hcwk77gwi/CQPhrN3/GtO6Z0OSouNSdbN35SdbrE91XjC+yRXadKpVu8oRnHADHLBmtugMtMzIH+
+ rI9HjhC2ecZQdLKBWOsEZLW1K/U3Y+1AuYtsxqPAqKfspumWGudDHQGygdTi1kjcsHej9qGxWfJv
+ nFhfObv8+hf4cGx7dZx2Ojt7ztQ/xGgUulVTUmPxg+AUvwrU8KswjQvMSzOuuHdCqENljRE30zkr
+ cmd2vpyF6/S1/bp8V+nB1NSO/pd/P7gJlk/sDDs+qat/w88esNXsZDR8yA5R3TZc63T/IVFLdd8T
+ la+72P3di7Pe829fZ4l5OGsvHyjN4n6zjK1V3fhir685TC+/IcZxrUIAf2Ta/EI9CbgqV2J+w3d3
+ Lm7RLTxfLbgeIy+R1Fwgs3ixHocKYo3R1cGUVIRauUK05SIGGfWGII3kXXcHAyuC42i6oSoLmgcH
+ Wm8EDb1MOGBsi3pjtDwE/B7leyP+u+ONJ0nCnsmoxq581x1/zkHqGvgkgXP1vZCIASe7s2kr6GB4
+ IpqTTh54M3IjC6up9iNsvApcOQ5C8PtMPvfamnFSecWcvn3vb/tqGO09Q2mqtnoZQfB9C1LjuIv+
+ G6v3Nbxuxg+qnGfUk2Sr8rtKZ0AhG50SONiZdVZjmtFYJZ5jPUK25vpMkNez1Np5DSoMNJFQckbZ
+ INsgiXw/HHdNoB0xsGE6mL6mVzwFdBAb9b3xynhUOm9m0ToT1QfL8AX3RPypVtmo3smoaqUExMZh
+ F40yW2WNoCEvbP4QGSO35Y+xxr6rWV19BVO4N5kexGAuDEl2yGOyjXq6mvQOe2bTnQubw0xcGu54
+ ES7RzeidqeUqGUc5HO5sJO/NPLeHkncnkO/1+lS0ra8xd7P0nCTwdfPW01qzy2PWrzxueN3+8np1
+ /LlUoF+oJ6FX5TdTgPL6QYkFR5HmkIsCe94wejyILzVx+Fpoj7lknigE9x4qNUrBvWDq2XfWHn7O
+ M+sCe2ZgVXnPOys6DADPlhFEFWXKjVcpD2Q7HIMl2XtL3/pOj/wTW45KU21etu8bLc6oZ54UxWNS
+ tjcsFovA1/p+nq9nG42JgDUORhQuDHetBRk58mDDTsSpLOfLEZXM8SlHDsceno053WPcICYRHiGl
+ KbpFSPOABb1osdLRcB29sQV65hoEPXa2G6a26pn6IkfSJ6agC+yJr195kd5w0VjgYufQJvmpkqep
+ C3YtRmgJruUY0uu8SC/6WuxZhfJTNFYVneO2v9YOfase/OAm8oJ74s05D+eb20iuEa5Zt5246I7f
+ EEQa+3JC53taJNOUANrQDjEHIoShwQLGA7rjTlVcWEFdadiTM6OP2SO2PRAPm2It7ya9/UTr8RM/
+ frSaPNtD/JzXwyP8iRm3F9/NP2JghV7SFdCc1oVs4GMGyw1SQxMNDVgu21qD1mbqiFmtBtRA2rOR
+ FIxAjwNYLJGSkezhqwRhRRfziYQIrFYH9UYjHd+/4Qz+2N3qLBKX8Vin4H8/C9cZ9MS6slgp9i9S
+ cFWmt3GCjDF3MUJ2ZoICqrZOt1NwPTLw3QpgkTmynGs0D6H9bGK0pNjOtDkWbEcAwKRb2gFgWsRR
+ BuAmQquzVfMISY2xtXwwtgb12Vk/CVQJyk4SlKlYX4aoVL6p2LazRoFRxjh0g0gnBOovenjQ0dtA
+ 6u4VXjaD9nxrqvv9+iAsPELaOWkbisRgbB76ApwFbQjwlAmsrIDV1CYCfjDp9R9ovAuu+7lMgtfA
+ Bd3X1XfyCVZHjKEWZQ0vDLxccx2dllhxQOEy3MaZxmDe4ddeRtG4Nkn82dRx+szMyw+7PiLLnb0a
+ dMkwDQE4z3iMXCpAf25jojZNhYcA5avkkXWnKN/XVs6gFeXHYnV+8sbupq1GBmXvITLcekMk7PaS
+ acJ2yZmUdPx+X+xx/M4UdnY/U3K0IDjQ9CzBLZuyrOVwT5pqg6ZBct2WPWrfYoMVvgYI13xjMqjP
+ FnqX1/PbaT0vQW1/iGl7nke5xtj9iT3hyQtK6TxebR5f8IbbvJb025hnmOCui/BLZDHboUtY6G36
+ jM64TD/YD4eaQnXVaa87b7dSYdXrMG1UEJKlv+EX3lzuL4YjfITmE5IwoR5NDwTysX/eJWyvC8P5
+ hCNXyBUvrupVKM5LG4sph5Y8HQyNMI03HQAQXMXQYx/CzHvHsMverGYF+cT8f3qsantVah6B3ji4
+ yoKp1F232NYm7uhTcqY17FBW3MaIbaw2U6EVC2Yg0JIZh0OMcwUc4Tl9a6ONnN2Fi3asRNI4aXfc
+ EBAdVZu3iHF7i7+z5F4fZR2NQjW5oW5TIP5cktQr3JJvl9p7KVI386kkG4DjQfTKEKgJM6XHti70
+ qcYb8QKPKVJr1NfbiO5nxN8Geb9L/BVuQfxVrYm9l66wr8CLLcn0rLW9IfoSk+0iqgW4e9ZaUAuo
+ j7RkKDImOM/hYpubt8fOgGz1XT+SBWfMCB7dGk2HYdxKFCDlYs/MI7SPNx7G/F00VK1/1Ef0h7cM
+ OFePLlJvRHRvPYRtFdMcMTNyA6Qgiuc8c3QgLF/1XYEftoc5Jw0GGrRer9W9hCnMkIj9fAJ3ellf
+ 5qVBn9jL+WxggbKUBjIfGov4kQNqbbztXRT/26SrVZxt+dE8QrymlcLRDc0toogeUDS59yXJDFF0
+ 0h3FQ6jj6Rnf2goGY/KjyOoobBIaG4rDl3mfima9QUuQvUPft8Q1RPb3uugG3dSSqe0bs8QnTkyX
+ 5E9PEmX8P0xaUZuT4lk68NukFSfb9a0/51+3KcWuLr9003ojU8Rj9P3z+ec2L0TtkvVJN7wgV93x
+ Uj0uXu/4mgCxwoRTdIG0iFnbG5sS5JlEIIzF8c6Z5gpqtvUp7WVbFZZEPjpoA1lYmUkuAl1jjlna
+ dsvOEmUwmXZAf7Oe2q2Qx9w3uuW/24teZEa4zdJRI5e7ONyfSxl2C12J5vrCO+nDStmQewqYp/52
+ jdJrKsum2Taf9Xl+j2PQWEidFbst9EKHk2dDsxesEgknrDmbDMcZisjbbSgAMkkeUlKe9FYencXw
+ mqKH/sPhxE2u6Lrw4e/bNS6wJf1flSp6+GU0B47PIdhPJ/nWVcXOODbANkwftkIHjl5rBpcfGvr1
+ 3/8Af1//WtUt4ZcBXOca/oHoT6Al0adi5SL+hrgPutCN49YenvTCmc3xfncSp4CubkfxbtELMnIM
+ JUpgWBIwkCwMHrGoywtpCIEJQRie311hoygf+MlaAPsuJaMtZ6SqD+asp79+8nPZCx7hC048Xnwv
+ G1rSW2YNCx4zkpYMs6iP4mN6rc7ZvnW/JbgzZz7vxp9EWVwDV5Rcqk3wndiKQ0K05LUPZz16Tzng
+ yJUCe73G2i3yPi7ykt2ndl/2fcvYCbRs+rF03Iy9YRibWzM2bEeLeUYNWmNll3QFjlgaByY/zCZj
+ 04QZWPFgJkTY3CnIYZYKZUXJgeO7rk1zK9TK23zD6DQcsU32HRBf82Teesd9/Sbs5y7G56+63xZ8
+ OsKvz+nqUrbD38+p+gVbcPWr3DyCveoOrLw8jBcarRJzvQ0hhxUSyHGOBSvldcKJ26z+/yq1pBtd
+ 59SWYrRJoZcW6sDJX+BfD0ejuRhqR/YVO9xrO8pXC+pjqZ+uF4+DDbtJ2PUT6wZ250FYw2FDmyqj
+ WUcHDVD1FnkHnvp9Ax/tuVb6MrC6hoM/5xn87AWXXnRz+b0oXkmzLCiEnVgETEGditJq7C3YHqqF
+ 107Snl8mahFLban8Ndxbms8mtZ8L6z1ClnRVhfcCeaOwPcVpmg0d2o6HNMoqQ2m0F7bk9N778zbR
+ 2c9F1F3hlm2/1N6LonOxZdaDusYWmxGjcSrMwAHZ8XgXy+4d7k+Z2H4uhK4ELJpcfrwXPDf03XTU
+ R+LxRLBtPRq5yEwQdBOecPfMvvf9qT1x/n6jr5HL1l/X3/k9MKiZ9sV9vGGJwYgXzFUvsEwrsSfF
+ atu4JyM1XMVLm1F96mjwI1X/Crcg4apWmcBex9n0zMkosIhhl8CnutswhmqCtWzOZe5z7Z4crOrs
+ V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
+ Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
+ 8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgADZ1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
+ 2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
+ UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
+ GfdO1uQLUEsDBBQAAAAIAKOdXVH7LGoTgAAAAJsAAAANAAAALmF6dXJlL2NvbmZpZ0WMOxICIRBE
+ c6q4w17AwEA28hSGlgHCgHwWEGbYYk8vmhh29+t312AkRWwPzmzNVJbroqJDaGi2YHrxmN5uC4pS
+ 46wFmvvtzJkspUHtTkGJMs2Syill/Uvj8EOPg1qXIDiLWUl0+QspSFhlpKna4fl/TZvYfbSrsOJS
+ 6YWccfYBUEsDBBQAAAAIAAmdXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
+ KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
+ Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
+ cE3nuLIm4zCqk6w/X9/C0xOIN7PZjFsSucShjwWnimmoMGJyblF6hI+3t2toZxh1awHqx/yTLITe
+ BCymsqMqV8p51GA0EJdG5ZiHPlNGZFmCRv9g7D3N5NEWMhvk71qWIT/uuHWg0bFAa40VXGfJX4eX
+ bZbSdyHgqj+NeK16nUC20hEBQ9+63m3QTklpSwmUbaGQpcOOVVHrzCvifqhzI8sJfI8ARpuopHV4
+ qcPlFF7PuDmAKiBWbiVX7UhtFkCagpY7FkdVGBCLvraaCpZzOj/3uaH42wXMRpkBa4mPUxkecjss
+ zDKPngcdlg2/rVYvWmhB8442DsdB5mNADvtVg076OMS0fJhiOCZu7zJe8NFiAd0+RM/Zb615gBA3
+ EGTlyKE5Kef3FZqi05HT22WIkPsOxJo0AgGnISKAZwRydA8GqUmZLZmG3O0qzFShsm7OtrODB+W3
+ 5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
+ 5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
+ 9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
+ iDtN2Ck/AFBLAwQUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
+ pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
+ AFBLAwQUAAAACAANnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
+ 90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAANnV1Ryvs205UAAADLAAAADwAAAHJv
+ dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
+ hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
+ nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
+ AA2dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
+ FAAAAAgADZ1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAJnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAAmdXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACAANnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAANnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgAo51dUfssahOAAAAAmwAAAA0AAAAAAAAAAAAAALaB
+ UygAAC5henVyZS9jb25maWdQSwECFAAUAAAACAAJnV1RznJP6cECAAA+BgAABwAAAAAAAAAAAAAA
+ toH+KAAAYmluL3d3d1BLAQIUABQAAAAIAA2dXVEMsgsvawAAAG8AAAAcAAAAAAAAAAAAAAC2geQr
+ AABwdWJsaWMvc3R5bGVzaGVldHMvc3R5bGUuY3NzUEsBAhQAFAAAAAgADZ1dUcSQ+52WAAAAzQAA
+ AA8AAAAAAAAAAAAAALaBiSwAAHJvdXRlcy9pbmRleC5qc1BLAQIUABQAAAAIAA2dXVHK+zbTlQAA
+ AMsAAAAPAAAAAAAAAAAAAAC2gUwtAAByb3V0ZXMvdXNlcnMuanNQSwECFAAUAAAACAANnV1R4Lsq
+ FkoAAABUAAAADwAAAAAAAAAAAAAAtoEOLgAAdmlld3MvZXJyb3IucHVnUEsBAhQAFAAAAAgADZ1d
+ Uc7opQ8+AAAAQgAAAA8AAAAAAAAAAAAAALaBhS4AAHZpZXdzL2luZGV4LnB1Z1BLAQIUABQAAAAI
+ AA2dXVGfUoDsXQAAAH0AAAAQAAAAAAAAAAAAAAC2gfAuAAB2aWV3cy9sYXlvdXQucHVnUEsFBgAA
+ AAAMAAwA0QIAAHsvAAAAAA==
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '12898'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - AZURECLI/2.14.0
+ method: POST
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 30 Oct 2020 02:46:22 GMT
+ location:
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-46-22Z
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:26 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:29 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:33 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:35 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:39 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:42 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:45 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:48 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:52 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","status":1,"status_text":"Building
+ and Deploying ''55ec9b3941b14f3b928640ab19f58d0d''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_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:
+ - Fri, 30 Oct 2020 02:46:55 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"55ec9b3941b14f3b928640ab19f58d0d","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-30T02:46:24.8324968Z","start_time":"2020-10-30T02:46:24.9614352Z","end_time":"2020-10-30T02:46:56.0155529Z","last_success_end_time":"2020-10-30T02:46:56.0155529Z","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:
+ - Fri, 30 Oct 2020 02:46:57 GMT
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;Secure;Domain=up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net
+ - ARRAffinitySameSite=12c918a19cf70fd7737fc5dba21db28b6a67c72f7eeb6068fdce251c20857406;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp6wjlg76g65ruht.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.14.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-173.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-30T02:45:18.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.23","possibleInboundIpAddresses":"13.89.172.23","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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":"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:
+ - '5467'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:46:57 GMT
+ etag:
+ - '"1D6AE66B40FB335"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config show
+ Connection:
+ - keep-alive
+ User-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.14.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":"VS2019","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:
+ - '3605'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:46: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
+version: 1
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
index 262111652d0..18d0e0ea11d 100644
--- 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
@@ -15,10 +15,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os --dryrun
+ - -n -g --plan --os-type --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.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:08 GMT
+ - Fri, 30 Oct 2020 02:40:28 GMT
expires:
- '-1'
pragma:
@@ -68,10 +68,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os --dryrun
+ - -n -g --plan --os-type --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.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:09 GMT
+ - Fri, 30 Oct 2020 02:40:28 GMT
expires:
- '-1'
pragma:
@@ -220,10 +220,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os --dryrun
+ - -n -g --plan --os-type --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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:08 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -261,10 +261,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os --dryrun
+ - -n -g --plan --os-type --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.14.0
accept-language:
- en-US
method: GET
@@ -280,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:10 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -306,10 +306,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os --dryrun
+ - -n -g --plan --os-type --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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -323,7 +323,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:10 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -347,10 +347,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os --dryrun
+ - -n -g --plan --os-type --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.14.0
accept-language:
- en-US
method: GET
@@ -366,7 +366,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:10 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -396,10 +396,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -415,7 +415,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:10 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -449,10 +449,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -524,7 +524,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -563,11 +563,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:11 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -601,10 +601,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -618,7 +618,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:10 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -642,10 +642,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -661,7 +661,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:11 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -687,10 +687,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -704,7 +704,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:11 GMT
+ - Fri, 30 Oct 2020 02:40:31 GMT
expires:
- '-1'
pragma:
@@ -728,10 +728,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -747,7 +747,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:12 GMT
+ - Fri, 30 Oct 2020 02:40:32 GMT
expires:
- '-1'
pragma:
@@ -779,10 +779,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: PUT
@@ -790,8 +790,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":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}}'
+ US","properties":{"serverFarmId":27346,"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-145_27346","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
@@ -800,7 +800,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:38 GMT
+ - Fri, 30 Oct 2020 02:41:09 GMT
expires:
- '-1'
pragma:
@@ -836,10 +836,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -847,8 +847,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":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}}'
+ US","properties":{"serverFarmId":27346,"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-145_27346","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
@@ -857,7 +857,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:38 GMT
+ - Fri, 30 Oct 2020 02:41:09 GMT
expires:
- '-1'
pragma:
@@ -895,10 +895,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -914,7 +914,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:38 GMT
+ - Fri, 30 Oct 2020 02:41:10 GMT
expires:
- '-1'
pragma:
@@ -939,7 +939,7 @@ interactions:
- 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",
+ "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:
@@ -956,10 +956,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: PUT
@@ -967,20 +967,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-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
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.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-30T02:41:14.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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}}'
+ 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":"52.173.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","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'
+ - '5664'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:59 GMT
+ - Fri, 30 Oct 2020 02:41:31 GMT
etag:
- - '"1D6A2B9C6764EE0"'
+ - '"1D6AE6623026B6B"'
expires:
- '-1'
pragma:
@@ -1020,10 +1020,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -1031,18 +1031,18 @@ interactions:
response:
body:
string:
@@ -1050,11 +1050,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:10:00 GMT
+ - Fri, 30 Oct 2020 02:41:32 GMT
expires:
- '-1'
pragma:
@@ -1086,10 +1086,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -1097,18 +1097,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.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-30T02:41:15.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"52.173.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","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'
+ - '5464'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:01 GMT
+ - Fri, 30 Oct 2020 02:41:32 GMT
etag:
- - '"1D6A2B9C6764EE0"'
+ - '"1D6AE6623026B6B"'
expires:
- '-1'
pragma:
@@ -1147,10 +1147,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: PUT
@@ -1167,9 +1167,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:03 GMT
+ - Fri, 30 Oct 2020 02:41:34 GMT
etag:
- - '"1D6A2B9D204FCC0"'
+ - '"1D6AE662E3F35C0"'
expires:
- '-1'
pragma:
@@ -1187,7 +1187,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1207,10 +1207,10 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -1218,7 +1218,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":"5sdhGgcgxXgbywryj9tGpuh1CedlNniP3GYbJ4WEy6jSQms30ZkYbsrkPH5D","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:5sdhGgcgxXgbywryj9tGpuh1CedlNniP3GYbJ4WEy6jSQms30ZkYbsrkPH5D@up-nodeapp000003.scm.azurewebsites.net"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"yZ5SaPHrwtsYadT5Cm9CYcoouSA4pnhu1AgBQkpkdnwBlt00sSATdZXTD88N","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:yZ5SaPHrwtsYadT5Cm9CYcoouSA4pnhu1AgBQkpkdnwBlt00sSATdZXTD88N@up-nodeapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1227,7 +1227,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:03 GMT
+ - Fri, 30 Oct 2020 02:41:34 GMT
expires:
- '-1'
pragma:
@@ -1263,10 +1263,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -1274,18 +1274,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.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-30T02:41:33.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"52.173.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","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'
+ - '5459'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:04 GMT
+ - Fri, 30 Oct 2020 02:41:34 GMT
etag:
- - '"1D6A2B9D204FCC0"'
+ - '"1D6AE662E3F35C0"'
expires:
- '-1'
pragma:
@@ -1323,10 +1323,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -1334,18 +1334,18 @@ interactions:
response:
body:
string:
@@ -1353,11 +1353,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:10:04 GMT
+ - Fri, 30 Oct 2020 02:41:35 GMT
expires:
- '-1'
pragma:
@@ -1379,7 +1379,7 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIACG5TlHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ UEsDBBQAAAAIAAmdXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
@@ -1388,7 +1388,7 @@ interactions:
y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
- inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgAIblOUTHV79fVAQAAMgQAAAYA
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgACZ1dUTHV79fVAQAAMgQAAAYA
AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
@@ -1397,7 +1397,7 @@ interactions:
iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
/r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
- lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIACO5TlHrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAA2dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
@@ -1556,11 +1556,11 @@ interactions:
V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
- m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgAI7lOUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgADZ1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
- GfdO1uQLUEsDBBQAAAAIACG5TlHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ GfdO1uQLUEsDBBQAAAAIAAmdXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
@@ -1573,34 +1573,34 @@ interactions:
5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
- iDtN2Ck/AFBLAwQUAAAACAAjuU5RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ iDtN2Ck/AFBLAwQUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
- AFBLAwQUAAAACAAjuU5RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ AFBLAwQUAAAACAANnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
- GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAAjuU5Ryvs205UAAADLAAAADwAAAHJv
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAANnV1Ryvs205UAAADLAAAADwAAAHJv
dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
- ACO5TlHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ AA2dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
- FAAAAAgAI7lOUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
- SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAj
- uU5Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FAAAAAgADZ1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
- vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAhuU5R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
- AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIACG5TlEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
- AABhcHAuanNQSwECFAAUAAAACAAjuU5R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
- a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAAjuU5R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
- JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgAIblOUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
- UygAAGJpbi93d3dQSwECFAAUAAAACAAjuU5RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
- cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIACO5TlHEkPudlgAAAM0AAAAP
- AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACAAjuU5Ryvs205UAAADL
- AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgAI7lOUeC7KhZK
- AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIACO5TlHO
- 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACAAj
- uU5Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAJnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAAmdXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACAANnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAANnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgACZ1dUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
+ UygAAGJpbi93d3dQSwECFAAUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
+ cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAA2dXVHEkPudlgAAAM0AAAAP
+ AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACAANnV1Ryvs205UAAADL
+ AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgADZ1dUeC7KhZK
+ AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAA2dXVHO
+ 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
CwALAJYCAADQLgAAAAA=
headers:
Accept:
@@ -1616,7 +1616,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -1626,55 +1626,14 @@ interactions:
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
+ - Fri, 30 Oct 2020 02:41:46 GMT
location:
- - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-41-45Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -1692,27 +1651,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"74528f2935ed4762b8bef3f34fcf0872","status":1,"status_text":"Building
+ and Deploying ''74528f2935ed4762b8bef3f34fcf0872''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:41:47.9082883Z","start_time":"2020-10-30T02:41:48.0207847Z","end_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
+ - Fri, 30 Oct 2020 02:41:51 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
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1734,27 +1694,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"74528f2935ed4762b8bef3f34fcf0872","status":1,"status_text":"Building
+ and Deploying ''74528f2935ed4762b8bef3f34fcf0872''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:41:47.9082883Z","start_time":"2020-10-30T02:41:48.0207847Z","end_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
+ - Fri, 30 Oct 2020 02:41:54 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
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1776,27 +1737,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"74528f2935ed4762b8bef3f34fcf0872","status":1,"status_text":"Building
+ and Deploying ''74528f2935ed4762b8bef3f34fcf0872''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:41:47.9082883Z","start_time":"2020-10-30T02:41:48.0207847Z","end_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
+ - Fri, 30 Oct 2020 02:41:57 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
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1818,27 +1780,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"74528f2935ed4762b8bef3f34fcf0872","status":1,"status_text":"Building
+ and Deploying ''74528f2935ed4762b8bef3f34fcf0872''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:41:47.9082883Z","start_time":"2020-10-30T02:41:48.0207847Z","end_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
+ - Fri, 30 Oct 2020 02:42:00 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
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1860,27 +1823,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"74528f2935ed4762b8bef3f34fcf0872","status":1,"status_text":"Building
+ and Deploying ''74528f2935ed4762b8bef3f34fcf0872''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:41:47.9082883Z","start_time":"2020-10-30T02:41:48.0207847Z","end_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
+ - Fri, 30 Oct 2020 02:42:02 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
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1902,66 +1866,25 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"74528f2935ed4762b8bef3f34fcf0872","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-30T02:41:47.9082883Z","start_time":"2020-10-30T02:41:48.0207847Z","end_time":"2020-10-30T02:42:04.5464701Z","last_success_end_time":"2020-10-30T02:42:04.5464701Z","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
+ - Fri, 30 Oct 2020 02:42:05 GMT
server:
- Kestrel
set-cookie:
- - ARRAffinity=96d743e51352785f93233abee2c7fb3857cba42475b37377d206d1fee114218f;Path=/;HttpOnly;Domain=up-nodeapprz3vsntqccsvsq.scm.azurewebsites.net
+ - ARRAffinity=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
+ - ARRAffinitySameSite=53633a8dfe0a70668d78159d13b5b438ffe13c15903d0d317b28d876b14c6950;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappbquuywo42pjuzo.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1981,10 +1904,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -n -g --plan --os
+ - -n -g --plan --os-type
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: GET
@@ -1992,18 +1915,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.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-30T02:41:33.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"52.173.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","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'
+ - '5459'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:41 GMT
+ - Fri, 30 Oct 2020 02:42:05 GMT
etag:
- - '"1D6A2B9D204FCC0"'
+ - '"1D6AE662E3F35C0"'
expires:
- '-1'
pragma:
@@ -2038,7 +1961,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.14.0
accept-language:
- en-US
method: GET
@@ -2046,18 +1969,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.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-30T02:41:33.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"52.173.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","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'
+ - '5459'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:42 GMT
+ - Fri, 30 Oct 2020 02:42:06 GMT
etag:
- - '"1D6A2B9D204FCC0"'
+ - '"1D6AE662E3F35C0"'
expires:
- '-1'
pragma:
@@ -2092,7 +2015,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.14.0
accept-language:
- en-US
method: GET
@@ -2100,18 +2023,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.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-30T02:41:33.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"52.173.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","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'
+ - '5459'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:42 GMT
+ - Fri, 30 Oct 2020 02:42:06 GMT
etag:
- - '"1D6A2B9D204FCC0"'
+ - '"1D6AE662E3F35C0"'
expires:
- '-1'
pragma:
@@ -2150,7 +2073,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.14.0
accept-language:
- en-US
method: POST
@@ -2158,18 +2081,18 @@ interactions:
response:
body:
string:
@@ -2177,11 +2100,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:10:42 GMT
+ - Fri, 30 Oct 2020 02:42:06 GMT
expires:
- '-1'
pragma:
@@ -2195,7 +2118,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -2214,7 +2137,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.14.0
accept-language:
- en-US
method: GET
@@ -2222,7 +2145,7 @@ interactions:
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
+ US","properties":{"numberOfWorkers":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:
@@ -2233,7 +2156,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:43 GMT
+ - Fri, 30 Oct 2020 02:42:07 GMT
expires:
- '-1'
pragma:
@@ -2270,7 +2193,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.14.0
accept-language:
- en-US
method: POST
@@ -2287,7 +2210,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:43 GMT
+ - Fri, 30 Oct 2020 02:42:08 GMT
expires:
- '-1'
pragma:
@@ -2305,7 +2228,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11997'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -2324,7 +2247,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.14.0
accept-language:
- en-US
method: GET
@@ -2341,7 +2264,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:08 GMT
expires:
- '-1'
pragma:
@@ -2376,7 +2299,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.14.0
accept-language:
- en-US
method: GET
@@ -2384,8 +2307,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":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}}'
+ US","properties":{"serverFarmId":27346,"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-145_27346","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
@@ -2394,7 +2317,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:09 GMT
expires:
- '-1'
pragma:
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 e1259a6a78d..b3c339aeea9 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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:22:47 GMT
+ - Fri, 30 Oct 2020 02:40:28 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,159 @@ 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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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;DSERIES"}},{"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:
+ - '17011'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:40: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: 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.14.0
accept-language:
- en-US
method: HEAD
@@ -85,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:22:47 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -112,7 +264,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -128,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:22:48 GMT
+ - Fri, 30 Oct 2020 02:40:29 GMT
expires:
- '-1'
pragma:
@@ -157,7 +309,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -171,7 +323,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:22:48 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -198,7 +350,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -214,7 +366,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:22:48 GMT
+ - Fri, 30 Oct 2020 02:40:30 GMT
expires:
- '-1'
pragma:
@@ -247,7 +399,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -263,7 +415,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:22:49 GMT
+ - Fri, 30 Oct 2020 02:40:32 GMT
expires:
- '-1'
pragma:
@@ -300,32 +452,143 @@ 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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ 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: ''
+ 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;DSERIES"}},{"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:
- - '0'
+ - '17011'
+ content-type:
+ - application/json
date:
- - Mon, 19 Oct 2020 22:22:49 GMT
+ - Fri, 30 Oct 2020 02:40: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: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -341,36 +604,32 @@ 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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01
response:
body:
- string: '{"value":[]}'
+ string: ''
headers:
cache-control:
- no-cache
content-length:
- - '12'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Mon, 19 Oct 2020 22:22:49 GMT
+ - Fri, 30 Oct 2020 02:40:32 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -386,32 +645,36 @@ 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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ 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: ''
+ string: '{"value":[]}'
headers:
cache-control:
- no-cache
content-length:
- - '0'
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:22:50 GMT
+ - Fri, 30 Oct 2020 02:40:32 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -427,40 +690,34 @@ 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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01
response:
body:
- string: '{"value":[]}'
+ string: ''
headers:
cache-control:
- no-cache
content-length:
- - '12'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Mon, 19 Oct 2020 22:22:49 GMT
+ - Fri, 30 Oct 2020 02:40:32 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
- body: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved":
- true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity":
- 1}}'
+ body: null
headers:
Accept:
- application/json
@@ -470,47 +727,40 @@ interactions:
- 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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ 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: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive
- a response from ''Microsoft.Web'' within the specified time period."}}'
+ string: '{"value":[]}'
headers:
cache-control:
- no-cache
- connection:
- - close
content-length:
- - '141'
+ - '12'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:23:52 GMT
+ - Fri, 30 Oct 2020 02:40:33 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-failure-cause:
- - service
status:
- code: 504
- message: Gateway Timeout
+ code: 200
+ message: OK
- request:
body: '{"location": "centralus", "properties": {"perSiteScaling": false, "reserved":
true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity":
@@ -532,24 +782,25 @@ 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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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}}'
+ 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":4074,"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-179_4074","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'
+ - '1385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:23:56 GMT
+ - Fri, 30 Oct 2020 02:40:57 GMT
expires:
- '-1'
pragma:
@@ -588,7 +839,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -596,17 +847,17 @@ 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":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}}'
+ US","properties":{"serverFarmId":4074,"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-179_4074","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'
+ - '1385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:23:57 GMT
+ - Fri, 30 Oct 2020 02:40:57 GMT
expires:
- '-1'
pragma:
@@ -647,7 +898,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -663,7 +914,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:23:57 GMT
+ - Fri, 30 Oct 2020 02:40:57 GMT
expires:
- '-1'
pragma:
@@ -688,7 +939,7 @@ interactions:
- 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",
+ "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:
@@ -708,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -716,20 +967,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-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
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.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-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-30T02:41:01.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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.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}}'
+ 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":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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-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:
- - '5654'
+ - '5772'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:24:18 GMT
+ - Fri, 30 Oct 2020 02:41:18 GMT
etag:
- - '"1D6A6668CD43200"'
+ - '"1D6AE661AF57740"'
expires:
- '-1'
pragma:
@@ -772,7 +1023,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -780,18 +1031,13 @@ interactions:
response:
body:
string:
@@ -799,11 +1045,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1157'
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 22:24:19 GMT
+ - Fri, 30 Oct 2020 02:41:19 GMT
expires:
- '-1'
pragma:
@@ -838,7 +1084,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -846,18 +1092,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.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-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-30T02:41:01.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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-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:
- - '5454'
+ - '5572'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:24:20 GMT
+ - Fri, 30 Oct 2020 02:41:19 GMT
etag:
- - '"1D6A6668CD43200"'
+ - '"1D6AE661AF57740"'
expires:
- '-1'
pragma:
@@ -899,7 +1145,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -916,9 +1162,9 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:24:21 GMT
+ - Fri, 30 Oct 2020 02:41:20 GMT
etag:
- - '"1D6A66697FB1D60"'
+ - '"1D6AE66269262F5"'
expires:
- '-1'
pragma:
@@ -959,7 +1205,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -967,7 +1213,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":"haRBLEpuZ1wCjluCbudF5tLu3fEQfFlwwrvymDApcCxBDFz9YiRLwMEM6Mvg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:haRBLEpuZ1wCjluCbudF5tLu3fEQfFlwwrvymDApcCxBDFz9YiRLwMEM6Mvg@up-nodeapp000003.scm.azurewebsites.net"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"AgogvPGksL9tWvqorzmjMRf29QteTaJbna9W29ugseDw4Ylwqz6o47JtJDdC","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:AgogvPGksL9tWvqorzmjMRf29QteTaJbna9W29ugseDw4Ylwqz6o47JtJDdC@up-nodeapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -976,7 +1222,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:24:23 GMT
+ - Fri, 30 Oct 2020 02:41:22 GMT
expires:
- '-1'
pragma:
@@ -1015,7 +1261,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1023,18 +1269,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.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-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-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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-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:
- - '5454'
+ - '5577'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:24:23 GMT
+ - Fri, 30 Oct 2020 02:41:22 GMT
etag:
- - '"1D6A66697FB1D60"'
+ - '"1D6AE66269262F5"'
expires:
- '-1'
pragma:
@@ -1075,7 +1321,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1083,18 +1329,13 @@ interactions:
response:
body:
string:
@@ -1102,11 +1343,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1157'
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 22:24:24 GMT
+ - Fri, 30 Oct 2020 02:41:23 GMT
expires:
- '-1'
pragma:
@@ -1120,7 +1361,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1128,7 +1369,7 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIANV6U1HSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ UEsDBBQAAAAIAAmdXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
@@ -1137,7 +1378,7 @@ interactions:
y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
- inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgA1XpTUTHV79fVAQAAMgQAAAYA
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgACZ1dUTHV79fVAQAAMgQAAAYA
AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
@@ -1146,7 +1387,7 @@ interactions:
iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
/r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
- lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIANZ6U1HrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAA2dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
@@ -1305,11 +1546,11 @@ interactions:
V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
- m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgA1npTUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgADZ1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
- GfdO1uQLUEsDBBQAAAAIANV6U1HOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ GfdO1uQLUEsDBBQAAAAIAAmdXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
@@ -1322,34 +1563,34 @@ interactions:
5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
- iDtN2Ck/AFBLAwQUAAAACADWelNRDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ iDtN2Ck/AFBLAwQUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
- AFBLAwQUAAAACADWelNRxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ AFBLAwQUAAAACAANnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
- GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACADWelNRyvs205UAAADLAAAADwAAAHJv
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACAANnV1Ryvs205UAAADLAAAADwAAAHJv
dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
- ANZ6U1HguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ AA2dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
- FAAAAAgA1npTUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
- SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACADW
- elNRn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FAAAAAgADZ1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
- vYbWD3apPpOvxVBseABQSwECFAAUAAAACADVelNR0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
- AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIANV6U1Ex1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
- AABhcHAuanNQSwECFAAUAAAACADWelNR6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
- a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACADWelNR22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
- JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgA1XpTUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
- UygAAGJpbi93d3dQSwECFAAUAAAACADWelNRDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
- cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIANZ6U1HEkPudlgAAAM0AAAAP
- AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACADWelNRyvs205UAAADL
- AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgA1npTUeC7KhZK
- AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIANZ6U1HO
- 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACADW
- elNRn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACAAJnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAAmdXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACAANnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAANnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgACZ1dUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
+ UygAAGJpbi93d3dQSwECFAAUAAAACAANnV1RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
+ cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAA2dXVHEkPudlgAAAM0AAAAP
+ AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACAANnV1Ryvs205UAAADL
+ AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgADZ1dUeC7KhZK
+ AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAA2dXVHO
+ 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACAAN
+ nV1Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
CwALAJYCAADQLgAAAAA=
headers:
Accept:
@@ -1365,7 +1606,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -1375,13 +1616,14 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:24:59 GMT
+ - Fri, 30 Oct 2020 02:42:12 GMT
location:
- - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-19_22-24-59Z
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-42-13Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -1399,27 +1641,27 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"temp-6deb82f4","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-30T02:42:12.4452088Z","start_time":"2020-10-30T02:42:12.4452088Z","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:
- - '562'
+ - '473'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:25:02 GMT
+ - Fri, 30 Oct 2020 02:42:15 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1441,27 +1683,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:04 GMT
+ - Fri, 30 Oct 2020 02:42:18 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1483,27 +1726,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:07 GMT
+ - Fri, 30 Oct 2020 02:42:22 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1525,27 +1769,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:10 GMT
+ - Fri, 30 Oct 2020 02:42:24 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1567,27 +1812,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:14 GMT
+ - Fri, 30 Oct 2020 02:42:27 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1609,27 +1855,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:17 GMT
+ - Fri, 30 Oct 2020 02:42:31 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1651,27 +1898,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:19 GMT
+ - Fri, 30 Oct 2020 02:42:34 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1693,27 +1941,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:23 GMT
+ - Fri, 30 Oct 2020 02:42:36 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1735,27 +1984,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:25 GMT
+ - Fri, 30 Oct 2020 02:42:39 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1777,27 +2027,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:28 GMT
+ - Fri, 30 Oct 2020 02:42:42 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1819,27 +2070,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:31 GMT
+ - Fri, 30 Oct 2020 02:42:45 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1861,27 +2113,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:34 GMT
+ - Fri, 30 Oct 2020 02:42:48 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1903,27 +2156,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:37 GMT
+ - Fri, 30 Oct 2020 02:42:51 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1945,27 +2199,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:40 GMT
+ - Fri, 30 Oct 2020 02:42:53 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1987,27 +2242,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:42 GMT
+ - Fri, 30 Oct 2020 02:42:57 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2029,27 +2285,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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 22:25:45 GMT
+ - Fri, 30 Oct 2020 02:43:00 GMT
location:
- http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2071,24 +2328,68 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: GET
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
response:
body:
- 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"}'
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","status":1,"status_text":"Building
+ and Deploying ''9253ff03c8724b15913cf6987d41a126''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_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:
- - '660'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:25:47 GMT
+ - Fri, 30 Oct 2020 02:43:03 GMT
+ location:
+ - http://up-nodeapp000003.scm.azurewebsites.net:80/api/deployments/latest
server:
- Kestrel
set-cookie:
- - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=up-nodeappebjmys3v3kbg7n.scm.azurewebsites.net
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.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.14.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"9253ff03c8724b15913cf6987d41a126","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-30T02:42:16.1368505Z","start_time":"2020-10-30T02:42:16.7457669Z","end_time":"2020-10-30T02:43:05.678233Z","last_success_end_time":"2020-10-30T02:43:05.678233Z","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:
+ - '658'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 30 Oct 2020 02:43:06 GMT
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
+ - ARRAffinitySameSite=6f2978b61f339eeffd2de0fbd1035abfc785be48acaa2538361e33d044856829;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2111,7 +2412,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2119,18 +2420,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.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-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-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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-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:
- - '5454'
+ - '5577'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:48 GMT
+ - Fri, 30 Oct 2020 02:43:06 GMT
etag:
- - '"1D6A66697FB1D60"'
+ - '"1D6AE66269262F5"'
expires:
- '-1'
pragma:
@@ -2165,7 +2466,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2173,18 +2474,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.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-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-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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-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:
- - '5454'
+ - '5577'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:49 GMT
+ - Fri, 30 Oct 2020 02:43:08 GMT
etag:
- - '"1D6A66697FB1D60"'
+ - '"1D6AE66269262F5"'
expires:
- '-1'
pragma:
@@ -2219,7 +2520,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2227,18 +2528,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-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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.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-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-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.40.202.2","possibleInboundIpAddresses":"20.40.202.2","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","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-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:
- - '5454'
+ - '5577'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:50 GMT
+ - Fri, 30 Oct 2020 02:43:08 GMT
etag:
- - '"1D6A66697FB1D60"'
+ - '"1D6AE66269262F5"'
expires:
- '-1'
pragma:
@@ -2277,7 +2578,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -2285,18 +2586,13 @@ interactions:
response:
body:
string:
@@ -2304,11 +2600,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1157'
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 22:25:51 GMT
+ - Fri, 30 Oct 2020 02:43:09 GMT
expires:
- '-1'
pragma:
@@ -2341,7 +2637,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2349,7 +2645,7 @@ interactions:
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
+ US","properties":{"numberOfWorkers":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:
@@ -2360,7 +2656,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:52 GMT
+ - Fri, 30 Oct 2020 02:43:10 GMT
expires:
- '-1'
pragma:
@@ -2397,7 +2693,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -2414,7 +2710,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:52 GMT
+ - Fri, 30 Oct 2020 02:43:10 GMT
expires:
- '-1'
pragma:
@@ -2451,7 +2747,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2468,7 +2764,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:53 GMT
+ - Fri, 30 Oct 2020 02:43:10 GMT
expires:
- '-1'
pragma:
@@ -2503,7 +2799,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2511,17 +2807,17 @@ 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":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}}'
+ US","properties":{"serverFarmId":4074,"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-179_4074","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'
+ - '1385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:25:54 GMT
+ - Fri, 30 Oct 2020 02:43:10 GMT
expires:
- '-1'
pragma:
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
index ed1a2d50e6a..3591fe4f76c 100644
--- 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:04 GMT
+ - Fri, 30 Oct 2020 02:43:30 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:04 GMT
+ - Fri, 30 Oct 2020 02:43:31 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:05 GMT
+ - Fri, 30 Oct 2020 02:43:31 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -280,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:43:30 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -323,7 +323,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:43:31 GMT
expires:
- '-1'
pragma:
@@ -350,7 +350,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -366,7 +366,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:05 GMT
+ - Fri, 30 Oct 2020 02:43:32 GMT
expires:
- '-1'
pragma:
@@ -399,7 +399,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -415,7 +415,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:43:31 GMT
expires:
- '-1'
pragma:
@@ -452,7 +452,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -524,7 +524,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -563,11 +563,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:43:31 GMT
expires:
- '-1'
pragma:
@@ -604,7 +604,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -618,7 +618,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:07 GMT
+ - Fri, 30 Oct 2020 02:43:31 GMT
expires:
- '-1'
pragma:
@@ -645,7 +645,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -661,7 +661,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:07 GMT
+ - Fri, 30 Oct 2020 02:43:32 GMT
expires:
- '-1'
pragma:
@@ -690,7 +690,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -704,7 +704,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:08 GMT
+ - Fri, 30 Oct 2020 02:43:32 GMT
expires:
- '-1'
pragma:
@@ -731,7 +731,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -747,7 +747,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:08 GMT
+ - Fri, 30 Oct 2020 02:43:33 GMT
expires:
- '-1'
pragma:
@@ -782,7 +782,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -790,8 +790,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":22732,"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-171_22732","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
@@ -800,7 +800,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:54 GMT
+ - Fri, 30 Oct 2020 02:44:36 GMT
expires:
- '-1'
pragma:
@@ -818,7 +818,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -839,7 +839,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -847,8 +847,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":22732,"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-171_22732","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 +857,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:54 GMT
+ - Fri, 30 Oct 2020 02:44:36 GMT
expires:
- '-1'
pragma:
@@ -898,7 +898,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -914,7 +914,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:54 GMT
+ - Fri, 30 Oct 2020 02:44:36 GMT
expires:
- '-1'
pragma:
@@ -959,7 +959,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -967,20 +967,20 @@ interactions:
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
+ US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.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-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-30T02:44:40.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":"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}}'
+ 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.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","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-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'
+ - '5653'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:15 GMT
+ - Fri, 30 Oct 2020 02:44:56 GMT
etag:
- - '"1D6A2B9D05ED3D5"'
+ - '"1D6AE669DFAD3CB"'
expires:
- '-1'
pragma:
@@ -1023,7 +1023,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1031,18 +1031,18 @@ interactions:
response:
body:
string:
@@ -1050,11 +1050,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:10:16 GMT
+ - Fri, 30 Oct 2020 02:44:58 GMT
expires:
- '-1'
pragma:
@@ -1068,7 +1068,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1089,7 +1089,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1097,18 +1097,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.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-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-30T02:44:41.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","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-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'
+ - '5458'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:17 GMT
+ - Fri, 30 Oct 2020 02:44:58 GMT
etag:
- - '"1D6A2B9D05ED3D5"'
+ - '"1D6AE669DFAD3CB"'
expires:
- '-1'
pragma:
@@ -1150,7 +1150,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1167,9 +1167,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:17 GMT
+ - Fri, 30 Oct 2020 02:45:00 GMT
etag:
- - '"1D6A2B9DB2EC595"'
+ - '"1D6AE66A920388B"'
expires:
- '-1'
pragma:
@@ -1187,7 +1187,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1210,7 +1210,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1218,7 +1218,7 @@ interactions:
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"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-pythonapp000003","publishingPassword":"0kiEgHPHStpnWraoctNys1jpMYy3rwvBQMPQ4bRvC06Jne3eYSvDLytX3KeA","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-pythonapp000003:0kiEgHPHStpnWraoctNys1jpMYy3rwvBQMPQ4bRvC06Jne3eYSvDLytX3KeA@up-pythonapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1227,7 +1227,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:19 GMT
+ - Fri, 30 Oct 2020 02:45:00 GMT
expires:
- '-1'
pragma:
@@ -1266,7 +1266,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1274,18 +1274,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.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-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-30T02:45:00.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","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-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'
+ - '5458'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:19 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
etag:
- - '"1D6A2B9DB2EC595"'
+ - '"1D6AE66A920388B"'
expires:
- '-1'
pragma:
@@ -1326,7 +1326,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1334,18 +1334,18 @@ interactions:
response:
body:
string:
@@ -1353,11 +1353,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:10:20 GMT
+ - Fri, 30 Oct 2020 02:45:02 GMT
expires:
- '-1'
pragma:
@@ -1379,848 +1379,51 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIACG5TlGu1e8oXQIAAG4EAAAKAAAALmdpdGlnbm9yZW1TPW/cMAzdDfg/CEinIPYt
- RYeOaVogQBAEbdOlKAxZpm3lbFGQeJdTf31JyXfJ0MUS+R4pfjxfqdtE0BhcvV1gUDuFnuxq/+b7
- 3cODGtkf66rrfDLazNB1u7q6bn36bXD4w9cPPrVm0ZFJdXWlvig4Ebho0UUhRiz+Oxsp2P5ADHBq
- r81eT9ZNddU+JZrR1RW4I+fuD3YZ+BzgCAv6BqYpisnxcuCrW1AP4tqQdjsX25fvp498eh1IvHEL
- POqQC2dyY92IEmhdJL1w360Zpw0s1T6l+w0LYqrneGAjKZohQpmJ0gHUa7DE3ao+Ka187kNFE6wn
- NQZc2Umw+kUT5DQ9jMhR77Kr3G6UxDw4uFERlWYTlXUvYEgNHLtDhoOSsiN/BaRW6l21syNEyoP2
- YErxb8kXnHgJ3vqGby2dqBgDLMBbp9nGZrCBn8GQCizxz84S1x2J92TwCEFPoAJ45InW1Uzrwl6Z
- H+FJjjPn3bW9FkP0UlcOI0i22J7Wpa4ulGxd32Sb2XPy0ma0sjUp42fQLvLozkpaMQsPtyrvXrSb
- UEU6jONnQbhFXj8avXT8ILG2Isu0kL+xQPcXbt67MyDFv0LP2gWKzVau0H+YoH268NuY7Q3zs3Un
- NaA5rOAo1ye6NHHXnbVbJHQrlvRGOkxAm/++yF09IkGPuBcd+uT6jl83e4+83+1X8on/CIaLrhoe
- U8xvCWZ4hSGxoDSx4GYYDkvRJQ84Q4I0Z6TEDPxiTpi/4jnaQCzsbB/L7/f18dfu3Gji6pUPmIV4
- nqmMIyMbUMjf0cP/qIH9F+I/UEsDBBQAAAAIACG5TlEstqWhXQAAAGoAAAAOAAAAYXBwbGljYXRp
- b24ucHkliUEKgCAQAO+Cf9g86aXuQdAp+kFHEVopUlc2/X9Kc5sZzxTBB/c+cMdMXGDrIoXLGZZf
- tLXJRbTWSCHF2s7IVAtqNamWTvRwYQikzSwFNBhL5QRq7xUO4nAO6gNQSwMEFAAAAAgAIblOUUHB
- d06PAgAAnwQAAAcAAABMSUNFTlNFXVPNbuIwEL5X6juMOLVS1L3vzQRTrE3iyDHtcgyJIV6FGNmm
- qG+/M0mgaiUk5PF8fzMOAEAuNGS2MUMwjw+PD1iB1J0/vT12EZ6aZ8ht411wh4h1f3a+jtYNL8D6
- HsamAN4E4z9M+3IjKI0/2RCwD2yAzniz/4Sjr4do2gQO3hhwB2i62h9NAtFBPXzC2fiAALePtR3s
- cIQaGjQyMWJ77JCLfFxrbxDRQh2Ca2yNpNC65nIyQxzNwcH2JsBT7AwsqhmxeB6VWlP3E6UdgBpu
- 93C1sXOXSGmitw0RJdjU9JeW3Nyue3uyswzBpxFMjEh/CRiIbCdwcq090L8ZU54v+96GLoHWEv/+
- ErEYqDjOPqFEv5yHYPrZINJYjDFG//I5NpLUmYYc57EFqlw7d/qeyc7ODhc/oLgZga3DMY7a/0wT
- qUKYg+t7d6WkjRtaSwHD79tCNTbUe/dhxmzT2xhcROuTG1rN+Wvp81XoanwkezNPEdVx5vXPeJ6c
- hIiPw9Y94AMbpX/Gvr8tveFQybV+Z4qDqKBU8k2s+AoWrMLzIoF3oTdyqwE7FCv0DuQaWLGDP6JY
- JcD/lopXFUg18Ym8zATHC1Gk2XYlildYIriQ+FkI/DiQWctRdeYTvCLGnKt0g0e2FJnQu2RiWwtd
- EPtaKmBQMqVFus2YgnKrSllxNLJC7kIUa4VSPOeFfkFprAF/wwNUG5ZlpDcRsi2GUWQXUlnulHjd
- aNjIbMWxuOTokS0zPulhxjRjIk9gxXL2ykeURKo5KvVOZuF9w6lOygx/qRayoFSpLLTCY4Khlb7j
- 30XFE2BKVDSftZL5nJfmjDA5MiG44BMV7eD7qrCFztuK31lhxVmGhBWB74lviMeH/1BLAwQUAAAA
- CAAhuU5RSG68PI8BAACIAwAACQAAAFJFQURNRS5tZMVSPW/bMBDdBeg/HOLFAipr11QjgKcWbZFu
- QVCw1MliI/Jo3imJ8+tzlNw4Cbx0KsCBOL2ve1Rd12URzR5/yTFiC2x8HLEsOmSbXBRHoYWrn4Nj
- 0GPAu+C8GU84MDGCDEagQ0+BJRlBhoEeQQjSFJTx/SgDBdiNhu8zfnTWZFnQs32eEsJWRW4wPTiL
- efjFhelpc1UWown7SaNxWxY1xFlHwybqJivL0GSB10ut8jUvSjrMq5XF6n2CU/Ce0gX39exdZdp/
- WDnb7jSXJ0W4oBH9TPsE6msYgRHVGuH2ZJDl3ggdJmfvWUySu/UgErltmo4sb7yziZh62VjyzVxV
- 86aqxlIQ4wImbs4a9VJ4NcdareBaQcn9nsSF/WtB+hh/0AoMRpvqKAp2S8Kvfy3hW8QANzQlTXhN
- ne7bZ638hueYpCCeMR/CWmVQbxd8U23gUkHnYj4YwG77459NenNoKlCbuRYVuc3EjPn8jna39saN
- Qu3lzxU8OhnAhKM207mcU3+iw4Scr7wYeI9BWCt+AVBLAwQUAAAACAAhuU5Rmm/OA1cAAABdAAAA
- EAAAAHJlcXVpcmVtZW50cy50eHRLzslMzra1NdMz5+Vyy0ksBrIN9Qz0jHi5MkuKUxLz0lOL8kuL
- bW2BQia8XF6ZeVmJRra2RnqGBrxcvolF2aUFwYlpqWBNvFzhqUXZVaml6SDlhiZ6hgBQSwMEFAAA
- AAgAIblOUaOoHCbRAAAAPwEAAAsAAAAuZ2l0L2NvbmZpZ02QsW6EMBBEa/wViPIi4tQnXZFvSIlS
- GFiwlbUX7a4TcV9/G1CUK0fzNDOaYSKGT9cwbCRJifeFOAf9BpZEpb21b65ZEkKmGUwtAQVcMwZ+
- UkhrQGRY6jYHBTFHuZohe8ZUvuQfTWuxwikI/EEDW7ZC2xGnNZXOxlRGc6PqJlfv16Sxjq8TZf9+
- rwz9R8gbgvht10iln2mSPgIi9T/EONte0ClawotNEh8hzOIv10OcZeLPMn9xw8ihGN3lIArcHV8c
- g27tCbkmA6+/+inupN0DUEsDBBQAAAAIACG5TlE3iwcfPwAAAEkAAAAQAAAALmdpdC9kZXNjcmlw
- dGlvbgvNy0vMTU1RKEotyC/OLMkvqrRWSE3JLFEoycgsVkjLzElVUE9JLU4uyiwoyczPU1coyVcA
- 6QDKpyJp0uMCAFBLAwQUAAAACAAhuU5RK2lzpxkAAAAXAAAACQAAAC5naXQvSEVBRCtKTbNSKEpN
- K9bPSE1MKdbPTSwuSS3iAgBQSwMEFAAAAAgAIblOUax80NgkAQAAwQEAAAoAAAAuZ2l0L2luZGV4
- c/EMcmZgYGACYtbYdzseM2YdNoDRDHDQuATBZskrMvOf+c/7x1U13c8bZxsLaL1aPvEpA5deemZJ
- ZnpeflEqTCXYnCqOCTAah3nzvaWuSuvz/TH73LXYZNZ8g983FUvdGdh9PJ1d/YJdiTaHucNe0S3u
- 27s/NvIV6vFTDqZyh72/vJeBM8jV0cXXVS83BWJOp4cIjMZuDkPWiuxXy26zvC77JXlnc0/6waNM
- uvqvGfgSCwpyMpMTSzLz8/QKKuH+I2xerIOvzcfvMxJPySvx3qr/eVlrm4VCKoNAUWphaWZRam5q
- XkmxXklFCQNDSJAryLuSDKYKBlz9WVz+c2fe6tt8e+vl+pxPsf/W3LggwPT3nHlqTEi20ILXl4qr
- Y5geei8CAFBLAwQUAAAACAAhuU5RG7aRBOoAAAC/AQAAEAAAAC5naXQvcGFja2VkLXJlZnOdj0tu
- xCAQRPc+haWsPUAD3ZDb8GkcNJ6xhbFGyenjfJazSTZVqkU9Vb2MW0jXqXHZx0ftb6/jxrxwHsux
- LO/Tb9jX1k8bkpFcYjzVkZIogclnciq5aIxOilwBIJvGL55ofFs772Jtda53EY+69KneB3IG0Jis
- LbIH0JYwADvIbB3HIsl7KAb0U0rmje85xLWLrW7iwe36wcc8yYuyFz0UZZ1mF0KRziYCaU3wpELx
- GWI2EClLLVN8yr6FvXMbULNGTIWjhuITn6/O47rgGVNISF6aCD78MHqYd4GEaP5bxD+u/i565Z0c
- PgFQSwMEFAAAAAgAIblOUYVP+AkXAQAA3gEAACAAAAAuZ2l0L2hvb2tzL2FwcGx5cGF0Y2gtbXNn
- LnNhbXBsZVWQXU4DMQyE33MKk64qEKQVr0hIcAcukG69m6j5U+ylLYi747RsW17H42/GXtytNz6t
- yamFWsB7AjzYWAKCy3kH1FdfGDhD77DfATuEPsfoGUIeISKRHRHY7jDB5igEW0o4Fsu9g6HmCFaI
- JlofZvPqFPTh5gSXp7CVVEHuPTtIOZkvrBmILU8EdmCs4Ikmn0bBnTNqLtVbxksFP0Aj2MTU6hLn
- ctN2BddETw0RQt7jtllxK4s3h83EwYe5rJiS3chT2Hk6UZ6gihT/lGZtKH293kQa9UqpFYyeDTlD
- yFNR5wyZveruXiaC+TTFVkIwpjll2Z0SaH32NtCDVozEYA6guwtCw3Ipj8P+v9h9Pz/q7k3/qBf1
- C1BLAwQUAAAACAAhuU5R6fjKEPcBAACAAwAAHAAAAC5naXQvaG9va3MvY29tbWl0LW1zZy5zYW1w
- bGV9kl9v0zAUxZ+bT3FIK9JWTaPyiLRKgyLYC5NY90Tp5CY3ibXEzmyH8ad8d64dqhUm8RJF1/f+
- zj3HHr/IDlJlto7G0RiXCvRNtF1DqLW+h82N7BycRl5Tfg9XE3LdttKh0RVaslZUtOTJt6JpqMDh
- O+KKT4emGI/S1dCKIEzVt6TcIjCUaAm6DP+lbIgBrhYOtbDnGic+sK1PG9W6bwreko8DXGmV/iCj
- GWGdcL2FKB0ZSGt7qSoIBdF1RndGCkcnJGQJTxDKWW/POt15ZaYM2ueakplNox/ZH7dSwYPPlww+
- liHFLTcpceAQXc2znrGAoWA6VHyrR8UDIm1tFS8jnrxVvsIxBYEDsajvE0UBgRtZKSpSXZYpx9xI
- FRi+8eweNtqbDiqSnT8ZwEEUkAUJX69IkRHNAod+kOoMdcJQ+rQQs06zrTYETtMNAXA4webN9ZuL
- ydTf9ldh8P5qe3d5u/1w/enuavPu4xZHWO5PFRKb7XfT5Xy9my3nk+wvG6+xW2VdMmNcxSsgfbCI
- 9xNGx4gnqxjHIyivOaqhtl6Hss9q6z2eXmsuHL9Qi6LvGpn7i36eluWIHVmHOMYFY6ZBMdn/s1Dy
- RzgawWrj2Eev5APS/OSIkGT7zxh9ma/8NyuSWdjzZzQKq65fvsLm/3uMwvtdRb+i31BLAwQUAAAA
- CAAhuU5RFmK2zx8GAAD/DAAAJAAAAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFuLnNhbXBs
- ZZVXbU8bORD+nPyK6YKUpCJZ2vtySgrXqr32eqoA9eV6UqHI2XUSl117sb2EiKa//Z6xNy9AT3fw
- ARLbM/PMPDOPzc6jtHY2HSudVtIW7XbtJDlvVeZH4fNcWK301MVvb09eDofHldRPR+32Dr3QJK9F
- WRWSZsZckMusqjx5Q0p7ObXCS/osfDYrhcbx7sz7yg3TdCIyOYbBYKr8rB4PlEnnzbG0R3MsEnbY
- j6ukzKmuKJdeZh5I4EfLOQmdU2lyNVHYn6hCukF7B3sfZw0W5agSzmFX0JW0ThlN3ay2VmpfLOhJ
- L7gQ5FUpAZe00MbJzOjcwc3E2FJ4z9YOh7giehosTO2r2rsAzuf4RqIoIgLyM+FpJq4kjaXkjNcI
- ndKZxL5EYldSh6gDOhF+5qisnYcBWVkIj112zSetMZ7MBG7429zYC8bgrZQBiJOV4ArnNF4wRGyC
- h6NP75pCGJJajAuOilpwTfYQQouyWWHIHCq5rKVd9FcEJI1zDx8dZgElmagp/lg5mLjSaOWNJaYu
- ZacuvW3fQfRyQd3dpuh7tMvJ9uiAnr94/+av0DgvZzK7CGlFrtAtlptixVS7rSYbF3RwwHzdtFs7
- jAarfpuuQEXDXCsEQyy4jIEppSf7q59Re0myQCPDV64kJZ+0q6vKWC5jzGOTYoC2gtBZgekMTlGj
- QbtF+Eleg3xmZSw4H+DIhOZ5GQz4GMK1uRi7KNY5E3jO7I1icl+P6eAHdUq3cB36/p1WC9liOle6
- E/K9bYi0Piv9y9Ph8I30L+d5tze6f+QHOiQ9PU1P03Q7Wysva2UlwewnRrw8HGbRZYPZSm8X2HoC
- xgpR62x2vuKYT7VdPaY76wjUbrFtpXJYGhaK7unjl3+8e3V+/OnjHjWf3x7tUWdt1P9G/b42/QoR
- /aLTi6UFAYGh6KRHE4F+zYe0++gh9eeWeatDpwV6oVcI4wKlY1mYOc1lB2URLgwXxp54Qhzmbmum
- Q+PNhJ6uJzm21hjTP5cw15hUb4V2CupCXeDOrAyzKSZobbbfWGhDhYEvCzDK+R5y2eETmFiRZQZy
- qtwszOheg652YfKRRBLCJzSVWmL4ARdJszJjk31YmUmdLdD+ubyOg1FANwllyVXOeqxNjqx4xhMo
- U5G7hI8VqmTBjU6ixPFy0IimILpYDFhe9X1Qm6LCmbQlTNnPpLbYtjyzEFChIg84WRferbPGUgZg
- UwN2UPVNGbc0dc4XkY43y1RDiXBJQHWD1IrADpebSc0Kg07oZuFvj68KAIAPHQk493QlijoqaPAh
- CmeYv+BlfT0EZgZNN8fOOaBnz5LW70ev0Fat1pcom8keJbeHCSsYt1arYWoY4+6FpabgQ/qScFGT
- s7i8Vb6wZTycfEnQ2mYSPkVXjZIiYswO5uvTSQDskrOzM7hc4heAAn5lWQiboWsyAXzYo2ea5VHM
- EhAqEMVqkBu6QQRR0G46omer+T1c8kCFqVzd6kOQW5ZcTAxvbTU6Hu0dG+gBQklQxA0AeUkJF/m/
- IikNLtXqSh5uPDwgcK3RZG47+x+Ufj29SUcN+d+c0efVxRR4JMIFcldi+ueH46Ph8O8P3BDrg6hf
- stoIrQIBbS2DnpmfWJ+c/Iv1yQlbL1c4DHbWp/qHaOz+Ye0nv/YPc9x9ueyuU2BxboUrJkr4Ie2H
- dt81/cMbaa2xy3vfkXWZ1s17wfCMmuKqeYIMHkOJISyeJ7Q7eNzjtxUrXlBwmafhqmpa7cPHV7+/
- f0/JizznqnduD0eHna9fCi5+hPg4H+UahQiY+33+fHm9fhY2J+/OWsrHQpu8DtcDuy/FhaQ7dndh
- rFrzf/fmb/TogPa5sJCJz2vnUUDmYuGartx6DJoodxNl8byLEuJMsG+Ohl2BzUTibbGA4AMDSoti
- +0VCk0JMGQ2/wZiu3ER93gYQ3X7jBySflJ5w2MBbfERr3G9QN1ZPPFw8HsSLYM+RMwMjSHLz0C74
- sYN3thQoF24PdaXyWsRcBmt2k/R0P9AUR+Hu/Y9rehl2r+F0n7v3vl5sdd1DBWJjyUTgfxY8ryV3
- XHhbJEMeB0bXSNcez1LEG9E/vwkuAj3LJT90/gFQSwMEFAAAAAgAIblOUZoM98CKAAAAvQAAAB0A
- AAAuZ2l0L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZS3NURKCMAwE0P+eYoVfgTN4By8QIJUO0nSS
- 4ODtrejn7s68bS/DmPJgS2hDi1sGH7SVJ2MRWWGTpuJwQVEupAxCoWnlGTWLJRd9I4piN4a8WCsy
- 79sIV8pWRN36U74LONNYYV+Snfq1Gpm2fxPTdxM0lfVuLzM5N30IfPCER3L8qs5Y602XcpTwAVBL
- AwQUAAAACAAhuU5Rz8BMAgkBAACoAQAAIAAAAC5naXQvaG9va3MvcHJlLWFwcGx5cGF0Y2guc2Ft
- cGxlVZBbTgMxDEX/s4pLOqpAkFb8VkKCPbCBzNTTREwmUezpA8Te8fQB4vfaPsf24m7dxnHNwSzM
- Am8j6OhTGQgh5w9wV2MRSMaeauxPOAQviAzf5umct4QupxRFaKuA9gRfynAqXrqAvuYEr0yXfByQ
- iNnvaHVWvYebI+Rp2Ko3Cg5RAsY8uk+qGSxeJnX1QlWlPMVxpzgdVkfNpUYvdKMi9pgJfhSeF2PJ
- BRJu612lGTT6Vs+ToFfM/idUjdI16eNcy7Clkvu7xK6MWWEXxXFwTDIVow0X8ott7rWimL0rvjLB
- ublTB8PZwOsZdml+sEaIBe4I2/wiLJZLfQB1/8Pm6/nRNq/222zMD1BLAwQUAAAACAAhuU5REh1n
- KokDAABmBgAAHAAAAC5naXQvaG9va3MvcHJlLWNvbW1pdC5zYW1wbGVtVGFv2zYQ/Wz9iqsTJA1g
- 2kk/Zk0Aw8uwAEEHrAH2oS0GWjxZnCVSJSk7Lor99r2jZHcB+k0Uj3fvvXt3Z28Wa+sWsS7OijNa
- OuIX3XYNU+39lmIZbJcoedpxsNWB9rVOZCPpte/z/zVT6dvWpsRmjgwr3TRsaH2g6cam8W5Ke5tq
- cp502PQtuxTnRM/1sUrt+8bgMb/gyRjq1DcOnmLSqUe9KnFA4dhbtyHtSHdd8F2wOjG1HKPeMNkK
- OSSDRgEBF5PvKNVHiPPM8dkTO70GxVSDiSCYUcCvdvxTWbnzNO0Cq5HAvChsRcIo8E51OkQmpUZR
- fn9Y/kr3C8O7heubht7dX9wUKOuKid5o62K6k5CCm8jF5IwenU1WNyOqWzK2qmiMFG7cdulAKTCT
- X//DZfqR5/ytYKh1rNVwRSoNkafyV0VlC/B8rOjg+yyGsEFf/D7ruvy4enzMLIVzpMhpIL7T0HM9
- kE+h53mRH+GNjqW1Y/HSu8puwH7tfZPli/NXcVdS/U82Ngg++KQbrBKT4RDmBb9wSTf3F+8kbhV8
- jNQ1OlU+tISmCit0j53JsHfemp/B/gWxvIOVkARat1QF38KO2R/GcH4tvQ/c+WiTD4c5/cXwWNd4
- m/JVpUv50PmEPPCTS1mBoB0MBfMFYBnuKXa6hJVqHfAMbtRACJRxcGyyjYFicMknmp6/EmRKb+5o
- KopO6QtdXIgHPvjEp9LUw06+ojUyb1kqBt8ju0YbRihoDyal5sAzemvTZZQkwh/8vvaQ2swIClLn
- AxjYxoqDPH30DZoa6eb6MtKijyFPewpXM4rWldmOmdvXXgc+AsD4JhijxpChANJU4EPW5VDD0W4c
- 5s4M0ObFBMGJBndkLytV6rJGgFLSK+Vdc8C33Ck0EOLdLUl9o/Oj6b8XE6Kn1d/Lp6e7lZBWhi4/
- kfr3y+frS/pO+5JUeSUyXo+DVUK59+8/P/zxW/EQgg+3tMQKaodlhf5Du9emIUGCMX4Wp5eYslKL
- 6jAc+t1GLI9X47L3YTs0tmMv+9A78igdTl6NkiwvwEFzxNhhN5qdjcc5Oi0WzijwZpzLrcM45nUq
- JxHfePGunASeOebIeGsut3AJAm6Lguh/c/iTAczDW4g0k7xRb35sBGHAudq+tmhbtjSLgHE22D9D
- 9VUFZwuck3Qx+73Sthkn+NhtZZ3hF+l5Bnnq/am5ShX/AVBLAwQUAAAACAAhuU5RRD/zXv8AAACg
- AQAAIgAAAC5naXQvaG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGV9j09PhDAQxe/9FE8wexK4
- ezOamL0a7qbAQBuhbTqDy/rpHXbxao/T93t/yoem86FhZ0pT4iWANrukmeBi/AL32SeBRHxT9uMV
- F2cFnmG7uN7uHaGPy+JFaKjV4dXOMw3origmL1goT1Tg4sUhRNg8rQsF4Rpo3V+Ii+s8KEubEoc0
- VD+UI1isrBo3CmXN5dWHCTbAppRjyt4KaQaznUjbqAfLQFmlI3Yvq1F7S5aYII7ufY7G9W1yG0HB
- drpYnA7bGz0h62k5LqPf/yKKlKm68dWdL2pjaujKil3FJGsyQiyoNhSP7+f28+380ex+3OzoAeF0
- MjgebdT/pzXP5hdQSwMEFAAAAAgAIblOUQTYj7GdAgAARAUAABoAAAAuZ2l0L2hvb2tzL3ByZS1w
- dXNoLnNhbXBsZY1UYWvbMBD9HP2KmxPWDZq0KftUlsIojBVGGWNlH8a2yvY5EpUlT5Lrtr9+d5Kd
- pGOwFUJl6e7de+9Omr84KbU9CUqIObyzgA+y7QyCcu4OQuV1FyE6uEevm0cYlIygA8jS9Wm/ROj6
- oLBeAVxKY7CG8hGKrY4ExycFyCaiBx1ByQCVwuqOgqJC8Ni6iBCijH04hpIQS2ycR5D2MSpttyml
- RLQjWCpz1VA2cRjJ4YOOAQYdFUiwzi6f0LsRlL4zzqCNOeAq5gT4hUGSTPpfZe4Jhrk1zhg3cGon
- vWyRJITzlLZYw3IJ17QHrjnUQW4MSlc5nwsxbomMUTuLnHrGqTefP/47lqJJJ59k+lGx4X3gL5JJ
- 1etdXeUCWea3fYs2WZG14q9emiz1ypKtrYza2al1VLdybZu8S0wk+Z4ZZJOYUei7zmhaUxuMthiI
- OMFxMhlsa+kpzHaEp+1om2+zTQBvjSNXiWVzMa2Dkmv6GInnk2kK+Gjfl5CnMCg3cJMGdqzzeE8K
- s1/k/Z4/ekzljdtCiyHIbSLoYyC81NPi69WnAl4Nzt8x1867rafA1yshMoFNsVgXoveGFmeFEE9v
- Tjen//knBFloWJCsISn9SdrGFQkbO5U2xyXtitqJmW7gGxSLXWgBG1hQbfguZqTIitlsDh/IaoKv
- 0dAc0s65mKEJvBrT96CH+RMAIVzjAKWXtlLH6YZTL4EmfrKQg+h0yy7sqdDuWIYQbrpa5iGnCxci
- z8mfgJaK/AVwT261eo7eaJH0XfKjwLMD1KURgg7yYnNLjwnZdr80VBeWFvgCUvc6OPpB8Uesn0sV
- t5MhFFMscnbxzAislIOLl2dQvHe9rQ/K8VAsdq075odjun1FyqRXBtaZM//SLRVp91T8BlBLAwQU
- AAAACAAhuU5RhOxYUd8HAAAiEwAAHAAAAC5naXQvaG9va3MvcHJlLXJlYmFzZS5zYW1wbGWdWGtv
- 20YW/Sz+iltFraWsHrY+FNu4juHYQZvtbgJkjRaLxLFH5FBiTXK4M8Moauz/3nNnhiItK+liBcjm
- 477vuY/Rk29mi6ycmVX0JHpC56ra6Gy5sjSMRzQ/PPx+zH//Tv+oy0zROf0sClEqR3u5ktSvtJxo
- uRBG9mml1C1lhnRd0u+1sbSQqdIgWmaWGiJjhbaGEpWVSwjJcP27WoxJlAnFoiQI/ChLSxbSY1UU
- /DzVqmCpJXhosSH5KbN8uc4szKZSlZM/pFYs29ZmurWuMSgWeS4TR+7kpirP1ZolVEKLQlqpzTPH
- NTiiycTR1JWxWorC3RipM2loLQx49a30Jk2ZYd4wLLQo4xV8Zrne24SGSpMsKruh9UqW/jG/d97V
- WrOnnnHUmA17jSiqHFpXam3gxJqsauOiqiwOPDDJroQlgSCLHNYmG4gopF5CNXgOSvnJHjSWuSgu
- pbUdA8ewNxa1Yf4QksxCxlrVeQIiU+eWso7hQQ1V9SLPzAp6YLBVejONovDshLVGLN4rPukPjvpR
- lpKVwER/8KRPJzSPEIIy6jl3Tvpapma2gmQzG8z7kcyNbN7dMHrMplioPIuBtZR+fnl2cUN3d1GP
- gUCHdAyDJSAFJLC1SKeuK9sanUgrYraVOaM0i6IY1sEUp6EPlqhjwOnp7Oko6h0fR/zv6yoUvNBA
- HFNLI+IIsXuNhIGWk5JIkTdAJfEgdw+BAjZV8ntSKRXCQP6U6JVBNujNL5xLT4j7U9ZxoVzuZRCJ
- nOS5qwuD9y5ggI0L1uS/rZ93d/QZHsUrRc+/m1P/NUqmZlO8RYEs+HwU3bMm2OB1pDWraMHlrTyN
- EJDrrLz2tz5bgOoESLAoDcDW2s2JKiUCIemDJ9uadLPFxeQPPHwgqx8g0trrmbii9xtzjKBaFq9l
- oT5ysKZbb0IGYwdsB3a8Bvxr12qQK0gtUWboS3bqMNLxHaWnO9oY4KdIT0pG0UbVHG0Wy9hYyBZ3
- 0B+pMt9cM8P10U5wtrH40ORn8DmU0D3dQbS2Nx32+RfY288e9rbqOnZw/XUfzJtIh/B36m6rrTXS
- q72Jevsy1yDIy9ubuqaD1BWHMhFW+vJokt77vxLW8y0jlGvUQwL9k2AYO/qX4OwEsAVob1Yb7WZk
- JXVOE0kH0FNsQrkgloOztz/9+u7w6jg8L8ySI/y0oVhhbPAo41nXeN+CyalsusKz92U/iBl+2zF9
- BIGFqLh8e73Zh+G7w8kPYpJe/W1EM6bvDTG5Tp7T0Yjv7slUeWaHs/flbBzMO7pyrzC+iG2UuSxo
- uBW5I3M4fToaeMG9d17yYO782yt7fjUaeTnAxPAb14YMDTr2f3YKJ88RpftA6mg5Vs19r9JIJf37
- 8uLl27cuit6AXl0maGTtg/voEXWfGgVHVyGEjgzfg7b/9bsm9R/3m6bxcfX/+OP7izfn1y9fX0RR
- dyi7ncKIVC5roROzdx6vBJrPQqIE2jHppm/T8zFey2TKggF+LBQpo1sYUxc8UD24n0URPaU3ZSx3
- JwevIMYL7AfTx9srVxbcryJ0hIAyBErxJBFLgVk+lBkXECWZlrFFGwUksrK5wx7yJb3bvhsjBhDL
- q1lXw9YYVg11oE+QFSuTqWuW3ClL6VG/qDOUdTvzMt5sIFizFcwvhc4z7rrAkriVBhsimNePLIpR
- T9DAayHHxe0oToCbjpkTzpeNcTDFpdN1D8xJqzMXhFLG0hihN67FBA8K1swXEg0dxsDEWykr9kQ3
- iw+ZjIHhw/Yb+p4bFl1fXZdEkAMYPHe8EuWSAaO8S6yxQdHYh5XtLkJoPWI9QQCOiXVWcUd0oMLq
- LD85iI6BP53EKgkrQqM2xKzEwhtxBmSQ6nuqzxei8TETuR+ptzxBkZMyzZa1FgugHy+jwU+vLq8v
- Xr2d+TewlX3JDPbh6De/YkNSA+uxC4XfJ9fCLbB0W6o14D08GtF0OiU0gh2kccd0YeQi6vRKbzBS
- +B8U0JJDtlt/fIRw5WdsXWXJFj4dK7Rg+DvmOJegxyQKJ5UQKsTTH0gsX3aL2k94FDbtVJdbBB+a
- gQAzbICt5jTAc055cJFIUyCdM+dZK6kYRUQvkAzF1eczsu0gnUA6AWxKE1B0FFSw2zei4fxrUXUB
- 3d2etrXhBF/ySYV1sRO+gFky0b84RAA7NgvozTfjnd3Hce8pbByQuj4CWZvtHAwe+Gy4kmiCrmXu
- CpsLZLvowoNKWBdi18xQWFxNjr3thdjKsk67SWvt1IeSG4fIhl0xKOfm0VE0xLBficq0h0b0f+mK
- Z4Tc4WQUDlR45XHoW00byuif0h4YynleCOuLIlQosN/rgUdNJpO//AbQO45Z2PSa/4+umYofCHDy
- d0Fne4lmO8/20HSe8jeGtO2XXjymnHW+7ef9I8Iu3cKZeP6AMtDN6OsiZy7q/0sA20A2cz6KzsZw
- gSv83J3THjYR38rPXL1gN6Q0+4QmH0qSfwMIleM32NCTHM8Lx5NmpatYnnr2C1UXeJuhzaaEbsx+
- 8S3/kOJKxPfqZpI6PedOKneA3d7IUMOyzK1Y7nRdv0OfB3nbHwBwSOTz/5nveLLEwq3FUkYvHim+
- 5AFdVDX6AVo3g3jvgeSDj6b7FWA/Rfg4Cn+OQNS5L6Cyx9QuzR0Hsbcweete15j5Y2PCGXrqZ2tQ
- 4se++z2maQJfboVRs/79CVBLAwQUAAAACAAhuU5RksT4lkkBAAAgAgAAHQAAAC5naXQvaG9va3Mv
- cHJlLXJlY2VpdmUuc2FtcGxldVDLTsMwEDzHXzG4EX1AW8qRKkiIA/TSViK9IVVuupFNEzuK3QdC
- /Dt2yqMIcdnVemfGM9s6G66UHlrJWqyFOw06iLIqCNKYDWxWq8rBGZRiQ9hagslRba2EqZwy2g48
- K5X0TbPKt1dQJg1ZiKL4hYaTwsE6UTvslZNoB+BKZJuk7YWEXqOmF8rcD9Wr7CVpzyTw45KfakLZ
- 4Gs9aAKkBqTFyhtx0i9CiEsvqUX5+ZKrsDPgVU39mjJSO+IDxlQOR9ahr8Hjh0m6nC+eHpezeTqZ
- TZf3s8U05cxb0CxSyRWL9rLRCQweK45+4f7nRWvDooh2ogD3ZUvJ8x+oF/GYTPgL87gBcSgdaF8H
- 6nX91IzgTc1rUzZnOYnSD4lvEL81Eq1e8s5xe34dmOOxr8cDHpUOymEUfrAi800lcaejcIFRtxss
- a2K5Yh9QSwMEFAAAAAgAIblOUe0TNjDoAgAA1AUAACQAAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29t
- bWl0LW1zZy5zYW1wbGWFVNFS2zAQfG6+4nAyhJDILu1bmXSGUkozU0qHpG8ZgmKfYxVbciUZCsPH
- 9yQ5aaCZNpMHR/bu7e1u3N1LlkImpuh0O104kYC/eFWXCIVSt2BSLWoLVkGtseYawRYIqaoqYaFU
- K6jQGL7CmLCnvCwxg+UDRCu6Gx6K4F7YwqMkrxBU7q9zUToqbqHgxp0QvmVtGUeQq7JU94HRYTIM
- aoSSa5oAIWwL6hswqtEpxgCzIuxAZ3Wja2UQhHGbYEZTdqG9KkJOArk3IOeiNGEHDlJJ9ohagbHc
- NmZE0C07iJ0vlbaYxd7LGY2SfOkXpXuObgQavQ3+JJigIGq9ZYGIVWYVxR3HsMaBkGnZkAEE1Ijr
- jEzst8yFNhaURGKv1B2uDY268K1EToujtKi3ta5ji+MICizrrRz9XASDqZLZ9mAKr7F1Y535PuFM
- 5Dkw5hZiwRFgOiK8kLSVA2yy/NGQwiXmqm2QxwdM1NI6452JbROcZIoeU9645GiaQiP7rlc1hkAY
- o8mkUenw2/xsuCkw23TJ/FmHDNfZpts8yygsmIqVxIypPGfUsVJIH8cz4b6jKZdEY6woS1LkC0Qh
- Q8iHvprCKx+IcKUUWZYhp/hOLy8uJrPFxfR88Wny5WzcO1ofTS+/X53SwZvO9PPJ0bj3ttNJGqP9
- /7BGXQIT8ZLfAiM9/VqTm9BIStscVMl1/L9Mkzimx7q9ZNCHqPdCReRqlTr45lZQM+o5LRFFRw/A
- 6MkiGcUtjgbuN8BugZREP9ynT1AazWUEMdxsFSTlKaXyV1NuCPkKRA6kNoH9fej5Ig+HMB7D613i
- 4fjYTTschAs0PHX7TC8/jHsHbuAd13BOiACcnV0tJh/Pvs7giepMAiT0TXI9P4gP388H8WEveVaA
- dzA/Suq+W9hxCecv/TMts5peAqhJMxOSkS0p0mV7SjJpfrTL6q5bziI1nz2+9DsK7w7v9j/M3fKU
- uPaCQwvX1OFwZ7xdeht0fgNQSwMEFAAAAAgAIblOURohRCV1BAAAGg4AABgAAAAuZ2l0L2hvb2tz
- L3VwZGF0ZS5zYW1wbGWtV1FvIjcQfmZ/xdyCwoFgSdK35Eh1TdTqHipVbe6pOkVm8bJuFpuuTbi9
- tv+9n+1d2F04SJSgSDG2Z+abmW9mTPfdZCbkRKdBN+jSR0n8K1uuMk6pUo+k41ysDBlFs0zFj7SW
- TEplmOFzMmyhKcnVkrg0PBdyEUHDLcsyHM4KChfCUM5jLp74eMXix5A2wqTE8sV6CRF9hdNEsiUn
- nbKLscrmfiH5xoG5V9DMZsBiUqEdoBFEnITbSYQ9UxSuV3NACiMndqtkIhZYjN0HCyupIwBTm5oD
- OCC6t3pmSmWcSdLcaNqk3KQ833d1I7KMZpycHmwKCdO46vTkfKW0MCovIqKfCprzhK0zY88L2ijZ
- NxCNmljmPOOGQ/cJJO4ewvs9GK8CsVRzkRSnQTBrnZassLadkIBxliDzFOecGaFkVDPq1IEAR32f
- 5UzG6XPd97f5W4ZgzmXh0D8PSs6XyvCsKD0+hAkaRcktD+sIJJjBX+mFJa8nLRi8XDI5p0xIHpQ1
- Mg17F2GAGsn5E9aXYYAy8esfwkrwD5ZwA3Qpjx8DkdCfNP5GYe+XT/cPd59+D+nLtUUkgw6PU5TN
- nYtHvpYeS1nsrqQt8LgGIwrp5uyyEqT3UF6oNW2YNCO3itXa1u96tUJ4SoPOmNXfFKbeOX2AWzf0
- wfuDhXfmZlDd/ArqXASJCGpulJEIaaz8hpfeffdK9txca7bgV0es7hut8uA6SbtxTHvvbWuL3Sku
- Wqp8p8cMgj22n5Ku3x0EbYIekW5fbdhG8T7PMC6WgtvOcEpwe3FgA+fIR4nKSSpw3ZMKzSFY5eov
- Hhu7BY0adTvm1L/4u79j6KR2PxwEMdMchzXBEEUVhJ+l5cG8VlnhkP6lECJlyofDIf3mxeoY/MRI
- mfZ9gLvybma/c30dcM3iLQecO6ZYcY0dkLFkma3cc3yiKLL/Ruh1fdSyKxrhJqaPJ7ZAuij4xnM1
- Dc+f+Qk97XeUnmJtVdTI7Y8eLLSptxXwTPPmQZk6ZsbO9bGp8A8cz8sIV5U1qgw6YRfsDs70xE6e
- yXDknUOUO13Mx3FjQGJTpyo3D1XD6v1TrrrdnY7/cK10rV0rIb2DlyZf85qTnVpC79GT2lZH1GtY
- Hdm84Lw5G7BX44rPd13zZ0ShbwNlZxy6DQObxpq+9B2P3ditup3NLAi5YgtAiHa6SvZ0ENWO5VAj
- bj49Pm4lLXzE6qHY1t/JQNxVE9EP5Rd4fBSlq2ALsZ3XOsptsTdQ0tkZ+efeE556OcJZcYpuCFX9
- NJFrzMfLmzNr/UBq4Ua/EunDFfSxeYG3qNBGRwcy9quD8YIYnExVCottjpePgm0EqoGzq0ZQJey1
- O6+7cCR/t9XrgZUWXp/CCv0BprWd2JsyL+HbW+H1L6l2vE2Onwm7Z9VhgUPFtCf3Fr62tL7K6aHH
- +1EWkIFK26nxitIWQY4hUd//0d6tNSf348YN3Cv0v0epNtINJFIJ+V8+tikhSruiw4m70WznHt0W
- XGvS/Syk0Cneru7CefA/UEsDBBQAAAAIACG5TlF3Pc0hrQAAAPAAAAARAAAALmdpdC9pbmZvL2V4
- Y2x1ZGUtjUEKwjAURPeeYqCLqth2L7gSXHkDcRHbnzaS5Jfkh9iNZzeV7obHvJkKoxHY2GhjKaJp
- WCYKa6BPb9NAjQ7sLm1pdcZr7ja8q3A3vhgyKUEUFQTZyIS6qqECoWfnyEtsS/PGAQpz4Df1AsdR
- 7ALjcT0VnaDZWs7Gj8ic7IAXlfbIPCCSgHVZ2F4xKxEKPmKf/PawTjgYjYUTsloBI0X688O5yMf2
- weq5hu/uB1BLAwQUAAAACAAhuU5RKkssdJkAAADTAAAADgAAAC5naXQvbG9ncy9IRUFEjctbCsIw
- EEDRb11FNhAzfYSkRUR3IHQFk5cppJ2SpIiuXnQF3s8DF+C/WGik7rxGDKClVS3IHgfVYBhca1zf
- GuWgA2vYNJc5I7vjaiM+1j0hO5efbddltpkKhXqytFxYI5UcWjloxThogINNtPqRhUwLi7VuZRTi
- Mde4m+8gbu89ez7hsiVfxPaqkVbuyBYefUrEn5STO34AUEsDBBQAAAAIACG5TlEqSyx0mQAAANMA
- AAAbAAAALmdpdC9sb2dzL3JlZnMvaGVhZHMvbWFzdGVyjctbCsIwEEDRb11FNhAzfYSkRUR3IHQF
- k5cppJ2SpIiuXnQF3s8DF+C/WGik7rxGDKClVS3IHgfVYBhca1zfGuWgA2vYNJc5I7vjaiM+1j0h
- O5efbddltpkKhXqytFxYI5UcWjloxThogINNtPqRhUwLi7VuZRTiMde4m+8gbu89ez7hsiVfxPaq
- kVbuyBYefUrEn5STO34AUEsDBBQAAAAIACG5TlEqSyx0mQAAANMAAAAiAAAALmdpdC9sb2dzL3Jl
- ZnMvcmVtb3Rlcy9vcmlnaW4vSEVBRI3LWwrCMBBA0W9dRTYQM32EpEVEdyB0BZOXKaSdkqSIrl50
- Bd7PAxfgv1hopO68RgygpVUtyB4H1WAYXGtc3xrloANr2DSXOSO742ojPtY9ITuXn23XZbaZCoV6
- srRcWCOVHFo5aMU4aICDTbT6kYVMC4u1bmUU4jHXuJvvIG7vPXs+4bIlX8T2qpFW7sgWHn1KxJ+U
- kzt+AFBLAwQUAAAACAAhuU5RpjpRHVIEAABNBAAANgAAAC5naXQvb2JqZWN0cy8xMC9kN2FmOTY1
- NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNgFNBLL7eAHdVt9v2zgMvuf8FUSAwDLmM3rb
- W4E8BLugCxD0gC3Xe8gCQYnlRJhtBZLSdP/9kbLkH21vt74uKBqFIiny4ydS+0rv4cMf729+U/VZ
- GweFcNKpWk7Cb23jyn7vls6Ig9yLw7fJRJWAG/mjNFbphqum1NubHczn8OF2AvgpZAlOc+sMexTV
- RaatmLaMdBfTgBfnhTzoQjJydpSuVJXEpZO1bFCumiNL00nnUD7JA6mws3CnDI6Yhah4oQ5u4H46
- nS5R7+IkCCBtFHgPdPZVuRPos2yCi8QkKQgLZR8eqVFMMIcyN1IULO3Mg5y+cOtcIR4s+Wq+NkkG
- Cf5P4Z3/7gwoYkbq42gnsrLybUB5QP4PKEK90kfmniIimPxaHzFB4UQF0hhtLBYGoUE9Dw9gLf/5
- crfi67/uQDaPWBgDylIFVSOLiB6qc0ITYdE2Rz1ldEM1Y0m0Tlqg0F9U7lEtyY5wj1sImHgXLAhy
- Z7732iQo86tRDvGd2VuY2QRmwCJN827R6CtLM6CE+zJh4KKqXvg7VNpKrOaEYMLI+dUeFT+Jpqik
- YeGbN6KObMVMGu1guNPHaISyEpZPB3l2eAcCDIv1hj+sPm/+XqyX9w/80+L+z/Xyc4drfbEO9hKs
- dJi7p0k4RFnVWCcaZNTwvAzwCg3YPdxDSMMVG0qD21oXl0r6bDLgGRwQEbEPErQcmuTmLIxTbRp5
- KIo96UtVcLJD9ZE5lr+wdJVYwtKgPlJ4brC9/f39jog2dEp3YOzX40H480ohTnPYspFbBKMPKt15
- 9ZAHKt/rRnpRJazjbo+iJGkxvp6IuQNI+jK+4F3vkPO2G3LOBqYZlEbXFOB828WKzQ//dj0FicGj
- OEgQP6U2QKajfEA1Xuhz7+OLNn1YyFzhsK8GSeatxieT0Rjtlw5Jp3caVoNeR/t77H/fPKb0S3qu
- w8qPjCW1krHXEUivUG6w/yrj6Az6DIr8nEivMa81wqb9jOGj329hYHTYVTfHqymNYzcZ/IiQ4xr0
- 2HbEjI4HxLiFBGdGN1lzpEYtHEeoqVGRAdYxusKuTL561Nse9EAD1teDJdOZneL4wpvrWxe2mpbD
- sggtNPgKjSFEEodsGM1BZzIRB6ce8WnA3QnP9p0f2YfN//Vut/i4WT0sNku++bT6gn0htLaRlzb4
- n2qeI3c0kqgZh84ZWziOIXcRFYbUNfLQLXHQsGTRJoAPCeg121fAzOLAxqEyiq4tYffOGO1lQC8N
- xv0Y5Hw+2owI+lPvpHN0ZKxbPAoH54/gC8MiCZMsWs9fzqq3OWpj6gcZjlN6smDu4Yg26+fF7yD+
- GXBRp4WVsLs4mjQgHM7t/wQ5vDQtznjPc3oCDozn48J4FY3zCNV4+/wjA1ohL+Myg+2uvTXkNq+F
- auI1iiqDu5yE0UXtGNVr6sDDI/p7hkT2CkRAVIq+egW6qFGaizM+dApGFuEO/zqs+Bc0xcBlUEsD
- BBQAAAAIACG5TlH7famKzAIAAMcCAAA2AAAALmdpdC9vYmplY3RzLzE1LzUyYjdmZDE1N2MzYjA4
- ZmMwMDk2ZjE4ZTRhZDVlZjQyOGJjMTJiAccCOP14AY1VXW/aMBTd86T9B8tPXR+S9UObVCWrIgoF
- qe0oCZ0moUUmuQSriZ3aDhR1+++7+aKB0Wm85co+Pveccy/zVM7JyefT83fO5XOWkhUozaVw6Yn1
- iV5+/fDeiaRY8KRQzGAdC4Q4LM99MIaLRFeFshTH5BE2Lv3uX49C7yYIH0aTYOrd9O8ewqF3d3XT
- n1CyYmkBLs0YFxaCUGL/132vF4wevKAfBsORT0sKza/Bu7qYLWUGM80NzNbrtZLSzECsZn6keG70
- LN+YpRQWPMObT7Yc/0bPzUqHK65MwVIEDXMlnzdWAiZclZ9LJuIU1NHHQ9DjH8Hw293YC4bb5g+R
- ba869r60jt5oA5m1hnkrVSSznKeVHSSGeZG41KgCOzNMIauBYhmspXp06Tl62Ejs2HtAHWAfFNre
- wmcyLlLQRBXCS9NbJlgC8W1dHEiFtQk8FaCNbt/dmthI0YYCY6EgkysgAim5dFy5cPoFxWThgGnT
- ux61/EpDD50+O3/zdBm5LjBpITsWEpIzs3Rpw8xaRAnvBoiUgZ+79Hi32Gjg0goy4XX7u2d0la2x
- khFoLZVL0di6w7PzTuB+dcttHtcL7B6pWPlmF1SBloWKINjkKNhU6BwivuAQ7x97KrgCLyrfdmkN
- +yqlY+85gcquFQ5H43Epdenx9rMpNHL6BsMVkQHHI5RoI/OmSxz4xvPOTbyLKyLm5XroIlaOlh5x
- kRemzQraYUDhflmwVHemsR5oxz4I5dgl3c6bFf2Gba/ZT0Bq9f+LccZMtCSFSl16ZB3j6PJESAU9
- plH2w9QOMttv8mXSv5/2/SCcTka/aRm+utuftq5Eta3j3bfqyRWQMIMv11/tPP1TE5SdRaXmxFRZ
- mdQO07qpbt7tl8nFCZLB1QIivi9AbXyjXr3cLuGqmV2pa+VbW/Grk6PuStmukMrBnf+LPxnm5ERQ
- SwMEFAAAAAgAIblOUYm/exHMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMvMTYvY2E5NDliOTZkYTdh
- 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
- vvfezLbXW3J3e38R1Vq9yXa0AqVWj1eXhETCmAIQpWrdQdhLTUPeYV7S1+I543Fe8irblC9xnq4r
- vorXSZ5uKPGiH2FJByFVsINQEv5rP34qsyouU16usoLuIxznyEseWKcHYE4isGmarNbIQHlW1FYa
- dEzUKL1A4NhJF5j5nLGZsdPKCOy+cy6K2SEMiZUeFn8tzlEO9U/7emlxFP0uETdWf8xBC8h/iJ1Q
- TQ/2+uaLGIW/TxyFp1/4BA3JhblQSwMEFAAAAAgAIblOUSfS34p9AAAAeAAAADYAAAAuZ2l0L29i
- amVjdHMvMmQvYTljMzU1NTUzNDU4ZGQ5Y2JjYzI5NWY0ODNkOTI0MWExMmE4MTYBeACH/3gBKylK
- TVUwNDRgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O3
- 1FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCkObyuZLMde+3mSSkuJifv7tvvMZBgEA9AYs
- IVBLAwQUAAAACAAhuU5RPvkO0tgCAADTAgAANgAAAC5naXQvb2JqZWN0cy8zMC82NDkwZGYwMGYy
- 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
- /cWzXTS1zr2vzD9t7e9ZUEsDBBQAAAAIACG5TlG3e9k3dAIAAG8CAAA2AAAALmdpdC9vYmplY3Rz
- 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/ASGOQ1FWaZ38ArC724lBLAwQUAAAACAAhuU5R
- aWxmErUAAACwAAAANgAAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkwNjcyOGY2NmE3MWY2
- MjBhNmQxZTc4YmZlYQGwAE//eAGdjktqxDAQBbPWKXo/JLS+lmAIgdnmEi2pZQtGlrFlmOOPc4Xs
- HgVFvdRbqwOUmT7GzgzBGqtz5IxBS2lYs7ZRa+ujkm7CrCzKGFCJjXZeBxgsxEmip5QDFeeKzeTJ
- Oh8cUjbklC8ki6BzLH2HB28LHfBbV7inv/2s60+rae9HL+Mr9fYN0mozOenQww0VorjodXLwP3UR
- z/ocn1fyyp4vqI1mhrTQOvMh3gH5TxNQSwMEFAAAAAgAIblOUU7njgquAQAAqQEAADYAAAAuZ2l0
- 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/drkGyUEsDBBQAAAAIACG5TlHcCWidZQAAAGAAAAA2AAAALmdp
- 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/
- Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCkNL+8oT+zcYxz5Ocvm9KeOE9sOywltQRYkFBTmZyYkl
- mfl5egWVDCuyXy27zfK67Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5
- Jd5b9T8va22zUEgFAIoUUlZQSwMEFAAAAAgAIblOUUDzmqU1AQAAMAEAADYAAAAuZ2l0L29iamVj
- dHMvNGIvMTQyNjBhODZjYWExMmYzYzQzYjk2N2Y0MzMwNTJiNDM1ZDI3ODYBMAHP/ngBKylKTVUw
- NjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVp
- fb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+v
- oJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElBSVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76b
- Jff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXFeiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWp
- SXpGeuZ6yfl5aZnpDBNm5ef5zLZ4qF5twRjKfWT7tbwrM5BUGuuZwFSKBm3/K1pjzfGHYdrHPq+r
- 7526D2oDAGpFgGtQSwMEFAAAAAgAIblOUQOlUni0AgAArwIAADYAAAAuZ2l0L29iamVjdHMvNGIv
- MWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDcBrwJQ/XgBXVNLb6MwEN5zpf6H
- UU6thLqq9rLamwNOYy1gZJxmc+ThBK8IjmzTqP9+x0BadSOkiPHM9xpT96aG5+efP74B/jImIdWN
- Gpy6v7u/C6XYXN6tPnUeHppHyHRjjTNHj3V7Mbby2gxPQPoepiYHVjll31T7dAMolD1r57APtINO
- WVW/w8lWg1dtBEerFJgjNF1lTyoCb6Aa3uGirMMBU/tKD3o4QQUNCpklYbvvECvouFZW4UQLlXOm
- 0RWCQmua8awGP4mDo+6VgwffKViVy8TqcWJqVdXPkHpASAW3c7hq35nRBzfe6ia4jEAPTT+2Qc3t
- uNdnvdCE8TmCGRGNjA4NBdkRnE2rj+FfTS4vY91r10XQ6oBfjx47XShO2UfB0Xdjwal+EYgwGm1M
- 1j91To0hM8wLlSyxuVC5dub81ZN2s7LjaAckx6CwrTUY48T9VzU+VIKRo+l7cw1OGzO0Oth3v24L
- ldhQ1eZNTd7muzEYj9KnRUyrmfTMS1+OXFfhJanVkiKyY+ZYmjXd7KHlsXYeL4euesALNlH/b/vj
- bskthZJv5J4ICqyEQvBXltAEVqTE91UEeya3fCcBOwTJ5QH4Bkh+gN8sTyKgfwpByxK4mGWwrEgZ
- xQOWx+kuYfkLrHE45/hZMPw4EFlyCKwLHqM4vIGMiniL8GTNUiYP0Yy2YTIP6BsugEBBhGTxLiUC
- ip0oeElRSILYOcs3AqloRnP5hNRYA/qKL1BuSZoGvhmQ7NCMCHIh5sVBsJethC1PE4rFNUWNZJ3S
- mQ89xilhWQQJychL0CmAI9RiNfTOYmG/paEemAk+sWQ8D65inkuBrxGaFvJjfs9KGgERrAz5bATP
- Fr8hZxxDHkTC4ZzOUGEHU2gfq8KWEOIOM7ipgoSSFAFxb/mn49vE/d0/uIRrF1BLAwQUAAAACAAh
- uU5RObGiejcCAAAyAgAANgAAAC5naXQvb2JqZWN0cy81Ni82NGI2MmYyYjRmYzQ1NDM3MzRjMGQx
- YTI1NDBjMTViMGFmNWVkMwEyAs39eAF9ksmOm0AARHPmK/qOYqDpZpFmogDGGBiDAS9jbg00iz1g
- zGYzXx9PkmOUOpVKelJJVem1rqsByAL+NnSUApQICEo8UaSUEAHmYorERJXkHIkij2GCRJxBWZGY
- lnS0GQCW1JRmElElFYuyDIkkE6RKmOKE5rnC80jNIC/xDBmH8toBg7Yl6cFb1YCX9Mt/VM3Psadd
- v2iuHW0/5kVRDeWYLNJr/QMIWIBIhoLMA5YXeJ55ps++A+2AVQ3rMQEvf7Gf/8WKtuirAnz/km5a
- tge21hZEtuVpu31o/s4ZwIB7r6e6pumGpgV64BCnwTcj1F25PCN/Ejv7rmnZ2rY1F+K150U1tyvN
- 2iveqj1GnLtiQBe+ry4je47meNc4ipJr8sytfJrpKLnMPhHf95gt+9jxB0GqhtaZA7Q87khKg2i1
- STcM8NaVdWKF7Ye+62+0bNWJi72lYQ77NJ67PPAPQTE1KFHC/XxQp5XDXfFlVocyKlr2rD07XDvo
- H0JqDJdlbKPJCuqVHs6i9SkaTulbn745F0uuhgHf0zeW8ILrxCymY13vwuNpShmwPTSWuoFwaW+i
- TTZqfsxDWQjj42Pcl7Zu+NVkOvfsADeqZudBMyvuTaNV+mgFd7ltMwYcBe6dNUe5b1zpvJLDdcTK
- xNq66sVNTgY3h25EuSPfXm4TfXSq+FBOEg7Unf6wkodevDLgdRNUa+bPZqa3/PdizL7NyEDBnSYL
- cYGer2nyqvgF01Hb81BLAwQUAAAACAAhuU5RQiaqbzQCAAAvAgAANgAAAC5naXQvb2JqZWN0cy81
- Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTViZWZmODAwNDlkMjA2MAEvAtD9eAF9UsuOokAA3DNf
- 0XezagPdDcnMZnmJiKIiInprugFxEJDHoH79OpM9brZOlUoqqVQVq67XvAMEoh9dkyQgxWqKxWlK
- MCMYyZQSSDli6EUhVROcqlRSEyYJNW2SsgMSlbFCYIxiIsYyjxHnFCYcSgqWRQWxNGUYy4wItO/O
- VQOMpD7TFizzEryxL17k5e++TZp2XFZNUhePcZZ35z4es+r6C0AERZmIEMlgNIXTqfBSX3m7pAF2
- 3s37GLz9tf3+ry2rszbPwM8v6JbteGBjb8DOsT0t2PvWty4AAQytznRN0w1N2+rbBV2UiBq+7pLz
- RV5/So0zaBqfO46mDc+eoCA6Y55BtZgEuSanH08B4HZ2sSsz0DSSKeZkSCPjuFHRnWtlu24HZOXL
- mvWX1erksGU8eY52KFyoBHW9sgl4EQqA8dp0SI7zuL0tH1Hs39eP53ObFKi6quppxU+FfLiHtXa8
- keVetB670DFPvm0e4b7oLUMAN8Lz+bpq7vN6ZHiZGErWfX/V3QuMqB4cV+WhSfv9afg8tBntDhEp
- Fiu25F7UNwc10IkAZmHlYRYHhJQx23j2ZaaG0XamuBL2FzsDtaEiL7T1dDXRWfthH6PZrLYN/yjZ
- oVoqu+mrB8+0atJhuHmOYC+2/GpU4tQgKifn8AaDbH+PXdH9sPwkXlShn9LWXaqXeze44dx03gXw
- 7vDgVej3NpZn/nsxYV9z2iVgSOKxOCav15Rpnv0BAaje8lBLAwQUAAAACAAhuU5RdMQ+9MAAAAC7
- AAAANgAAAC5naXQvb2JqZWN0cy81YS81OThlMjg4M2E3MGRlYzI5MGE0ODFjYWEyMzg2ZjRjOWJi
- NTljMgG7AET/eAG1zzGOwjAQheGtc4q5ANHYmcSOhBAtBdqCE9jj8WKJxJHjFNyeaBFHoP2K/+lx
- nqZUQY/2pxYRcKP3ismbGMgh9nowfeRog+sGH7zwaJQV1TWLKzJXsNIRkQ80KGusCYQdo6fARGxw
- cKhRS5DYuK3ec4Fr4pLXHCv8LjLDLW+FBY7Th/Ou6z+et1XK2s65yPJ4tn+p3jffcp5OoGhUiEqr
- Hg5oEJtd9xdVvtVvLnOqyT3gPfQCM3VltlBLAwQUAAAACAAhuU5R2mwDGS4BAAApAQAANgAAAC5n
- aXQvb2JqZWN0cy81ZS8zMTE5N2M3NzM2OTcxMzEyMWNmNjQ4ODVlYjY4YjhhZDE4NTRlNQEpAdb+
- eAErKUpNVTA2MmAwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8bZxsLaL1aPvEpVJWPp7Or
- X7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw/3JHgmvJZNFF4SEX3/VxBrhdEve
- H6ooNzEzT6+gkmFhZ00D/95rX5RE287dfF45n0k69CRUSVFqYWlmUWpual5JsV5JRQlD1vspp77t
- +iCeFmR/o+CVKKuerFs/VG1ZZlFJaWJOal5ZfEFRfkUlyGiB6+unhRubWefnqZTtcVdpUqqXPwZV
- Xp6apGekZ66XnJ+XlpnOoNHxxmaWo6Fgz/8PJ13q11gENZnMQlJprGcCUznjq3thXf28Jhflbtt+
- Nd2QitkafwAhDnunUEsDBBQAAAAIACG5TlEW1O/tQwIAAD4CAAA2AAAALmdpdC9vYmplY3RzLzYz
- L2UzNjZjZmViMzJmOWNlNzhmYzQwM2Y2MzJmY2FjNjc5MDRiMjlhAT4Cwf14AX2RSZOiQBSE58yv
- qONMGK1sBVUR3RNTLCKoiCJie2MpkJYS2RT71w+zHCcmjxnxxXuZmVSMFR1QRfSlaygFchQJFEWS
- jBQ54VGc0kTheUTFBKmKIEMkpFDK1Ji7RQ29diCVJQyxokIaqSLOeDEaWT6FIhaxAFGspHwUxxnm
- or47Vw0w6BV8XRdJU7VV1n0Dr5I0wirEk5ReU1oWL6zNuh99S5t2eq0aeiuf07zozn08TSr2HQhQ
- GQ9IvIjBC6/yPDe6Y4KONsAqukUfg9e/2I//Yvktb4scvPySZlq2CzzLA75tuWQf7MzfPgc48Gi1
- RCNE0wnZalsnXSnrg77Tlur5Q97cpcZ+EJIubJuY95VVqPdLGPazlZ90p3BWJg7PgcuFrRbvD+vw
- 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
- Wu2UocV53F2Mwi+pcdHmREB1rdcMdR1gg9sga0UUPP4qTBMUc7IhM6tx+op71obeefcxIFBLAwQU
- AAAACAAhuU5Ro0IPgeMFAADeBQAANgAAAC5naXQvb2JqZWN0cy9hNC9hNDEyOTgwM2I5ZWU5YTFl
- ZTNmYTMwMWI1NjY3OGNhYTg3MjQ5MgHeBSH6eAHdV21v2zYQ3mf/ikOKQDKqCV1XYEAAA/NaowuQ
- dUPjZRjSQKAlytYqiQZJJ/W/33Mk9eYUawr004wglsi7491zD+/Om1pt6NUPP7367hk9+4afGT3D
- H71W+6OutjtLcT6n36pcK6NKi3W9V1rYSrUpBdn1rjJk1EHnknJVSOLXw+YfmVuyiqzUjSHRFths
- i4pVDamS7E7Sci9yfF1VuWyNTOhGaoN9epm+SGnJB0Bpf+zEay9HuWhpI6lUB1itWmcq2Eh3tqmp
- rGpJAsfDuFbKegPwq6iM1dXm4AO4LN0RR3Vgky3kapULK7/kW0L7WgojyUg4AGdkI6qag2WP783+
- aHeq/bnpYEtz1aT0y5EOpmq3sH4KWAsjRyqF2SH6hNghoRHBVkvpNBTHu3Hx8hGbo3PRQ/sELEOm
- /obd5mAscahaNuqeQ4UzeAe0CSntHFHATSdUatV0zpb2AR6lwdC3JNysakApSwWAt1Uju3dluidz
- 7B+tFrnciPzjbFaVhI303lMmq9pS3b64o8WCfryYET6FBMlUhoTH96I+yLlf5i0t7UG35JbTQjJr
- Yza2lZapg0crG9liHejH8/msNyg/yZxF4r2wu4S2uIaizooqtyPzZ2dnK8gdwCThuIgFZ4HPfqjs
- jtRetsFEpKM5CUPl4B6LuZu0oDLVUhTxvFcP6/yFrX0NPOLog/7QRglF+D+n5+67V2CPYxafejuT
- tZFfB5QD5EtAMeq12sb2U4cIgr9SWwQorKhJaq204bsiWM5fVeTyr+u3l9nV729JtvdIjOYqAltV
- K4sOPYhn7mYvSJkUcpVGGULO4qjTjjxQsNcJD6iWBD3GvdsCYOJ50GDIrT4O0rxQpg+6ssD33FzQ
- uYnonOKOpmn/0KqHeJ4QBzykCY6Lun5kL6+VkcjmbG/vTZEZmYOK7JfjHkIKofyxvrl+k12vXr9f
- reEh4hkreC8RRhytWrGpuUS4fUrTlDngkj8JJ1wyJ9VTYyLBAbttIAubMhPWojrH44OH+FjaOeDP
- 9SrFcDjvy0+53NsLFMXRZ1CangN64FoVvfdemS5dcVgxaYbcOBuOSOTj6gHwDsyYhOBF9mC2VbZD
- 76mljsN31oqmqwXAlUvheGc4RYsKJX7lgkBZDplZXq2zm8v36z+XV6t3N9mvy3dvrlbve9a68opa
- baRFGlzk4ZAKtd9Y0eK+js9LCAVqVDvGeyBGKGDj1WC2UcUBWeJoEsoSdLC6dnnjFWiOVVK9F9q6
- 3htHaeCH2alDXWSsB/GJOlJTGC5UcRTPg/hE4FTh9uL7l3eESMdGucJM7To82L+sRiOGkdt4YhZg
- DE7N75x4iAPC71Qr3VItjM3sBktR5DF+2HHHH0EypPERyQeDWebpk2XxSNU3PnZwcdv7itaCv7uT
- CzD2Y8RxTCaafGJG8fCk0tsb/Ov0BrfAXNy9nrCJ05qezEpTtB8bZJnBaHgadRLe36C7fHSY8tt/
- 3Tnen4D0GcqN9j/LOLbBnzEoT2CeV0JLPGH45P1rGNgZ7LOR4mpKbeMXCebd8SlTQk5zMGDbE7Mz
- PCLoBUXoyP3ckoIajbAZoOY2wArIY2cKPY9tDbn0NeiGxxdXA+Po7NycYTjAzXWlC6XGc1gWoUEF
- W6EwBE+6ESYMPkFmNhO5re4xeGVuDHzch06q3fL1+vJmuV5l618vr1EXQmmbWPHOP6l4Tsxxw+di
- HCpnV8LR5O1B1GiNfSEP1dJ1gaUPgBvAIOlnrHODZoKWPfHOp7Cf4iZ7CX4e5DbO3JCRZYvJZoeg
- O/WttJaP7PLWHXXaxk/gC80iCnNCp7143Ku+zpD3aWhkGFZ4IETs4Qgf9Wnye4ifAi5kPKyM3cFy
- p+FfWF3kU6w8r/1cbzBBuXcesEfKi2linIhCP4JY5odrVuAn1PnuMaHbO39r2GyKn11td406kdFd
- jkLr4nIM8YYr8PiI4Z6ByE6ACQihztYgwBe1W03FHmNkEbNGuMP/G1b8C0ph9XZQSwMEFAAAAAgA
- IblOUbIY8KNvAAAAagAAADYAAAAuZ2l0L29iamVjdHMvYTgvNmJlYWE2ZGIwNGViNzZmYTE5ZGNi
- MzhjNjdjMWM1MDIyZDJmZWIBagCV/3gBS8rJT1IwNDBkSCvKz1VIy0kszlbIzC3ILypRcANxuBIL
- ChRsIWyN+Pi8xNzU+HhNLi4HoLheUX5pSaqGkr6SJldKappCRmpOTr6GphWXAhAUpZaUFuUpKHmA
- BBXC84tyUhSVAK3eIqNQSwMEFAAAAAgAIblOUaPpH3FbAAAAVgAAADYAAAAuZ2l0L29iamVjdHMv
- YTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3MThlMTMBVgCp/3gBKylKTVUwN2Yw
- NDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9m
- n7sWm8yab/D7pmKpOwCWBR6wUEsDBBQAAAAIACG5TlGB+pbtzwIAAMoCAAA2AAAALmdpdC9vYmpl
- Y3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2AcoCNf14AY1VXW/a
- MBTd86T9B8tPXR+S9UOdVCWrIgoFqWWUhE6T0CKTXILVJE5thxR1+++7+aKB0ak84Sv7+Nxzjm8W
- sViQk4vTiw/W1XMSkzVIxUVq0xPjC7369umjFYh0yaNcMo11LBBisSxzQWueRqoqlKUwJI+wsekP
- 92bkO7ee/zCaejPntj9+8IfO+Pq2P6VkzeIcbIrnjUJF3Mc/lJjvwnB63ujB8fq+Nxy5tKTR/BrM
- 68v5SiQwV1zDvCgKKYSeQ7qeu4HkmVbzbKNXIjXgGd68suX5L3qm18pfc6lzFiOon0nxvDEi0P66
- XK5YGsYgjz4fgp789IbfxxPHG24FOES2PWqZ+/JaaqM0JEYBi1aqQCQZjytLSAiLPLKpljl2pplE
- VgPJEiiEfLTpOfrYSGyZe0AdYBckWt/CJyLMY1BE5qkTx3csZRGEd3VxICTWpvCUg9KqvXdrYiNF
- GwyMhoRErIGkSMmmk8qF068oJvMHTOnezajlVxp6aPfZ+Zu7y9h1gUkL2bGQkIzplU0bZsYyiHg3
- QKQM/cKmx7vFRgObVpARr9vf3aOqbE2kCEApIW2KxtYdnp13Ave7W27zWCyxe6RiZJtdUAlK5DIA
- b5OhYLNUZRDwJYdwf9tTziU4QXm3TWvYVyktc88JVLaQ+Dgaj0upS4+3y6bQyOlqDFdABhy3UKK0
- yJou8dE3nndO4lkcEyEvR0QXsXK09IinWa7brKAdGiTOmCWLVec11g/aMg9CWWZJt3NnRb9h22tm
- FJBa/XcxTpgOViSXsU2PjGN8ujxKhYQeUyj7YWoHme03+TLt38/6rufPpqM/tAxf3e0vU1Wimsbx
- 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
- A1ML9xYoxhiNUx25Aj6XV5IWGkpjdPX2DdyAs5OT8/VlXVNjqOCuVSJm5CgxOArcoBAjIaF0iHJy
- IJTmASQXznDoNlspn8YgjFVE2iBow5WGKSpltYgKuFVBkJ5cJPunN2IEBxMBOAWeo3AI0QrvhPSI
- wWpvuPTAO3u0uVT2Rttsd/aeMnvyN7yk/LImX8teYnvwZX1mQuKolTDI2T0HzruTPU81+qe9+6B6
- JeaqzX5ml9XuZ9SFlcjm1rb9cRiuqc2Hu7UPrz9Hpf7TrttC+7B9n6tzH4rf+5mWpfRfpS6BpdwK
- c0daQp9y9wsoSXPZUEsDBBQAAAAIACG5TlHubrWMPAAAADcAAAA2AAAALmdpdC9vYmplY3RzL2M5
- L2FkMjFkMDNjNmQyMTY5NzA0NDI3MDQ4N2I4NmZiMjcwMDAxMTYwATcAyP94ASspSk1VMLZgMDQw
- MDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKQBjLRItUEsDBBQAAAAIACG5TlEp
- o4PWsAEAAKsBAAA2AAAALmdpdC9vYmplY3RzL2QxL2FiOTIyYmVhYzczMzhiMTUxZTUwODY1NDNi
- OGVkNTAxMGViODgxAasBVP54AcWTwW7bMAyGdzaQdyC6SwzU9q71qUGBnDZsQ3crikGR6VitJToi
- tS57+lF2t7RFLjsNEGCBon7+/CjvRtrB1Yerd1VVrYrJ7PG7HCdsgY2fRlwVHbKNbhJHoYWLb4Nj
- 0GXAu+C8GZ/zwEwTyGAEOvQUWKIRZBjoCYQgpqA3vhxloADb0fBjzh+dNVkWdG1+pYiwUZFbjD+c
- xRz86EL6WV+sitGEfVJr3K6KCqZZR81G6pKVJWiyQD6dN5XKV7woaTC3tirev3awNAg9xTPV13Pt
- Ml/7Dy3nslv15UmhuKAW/UzqEnQkhhEYUWkj3D0zzQRfsDskZx9ZTJT79SAycds0HVmuvbORmHqp
- LfkGQ5W4mYE1L4A1loIYFzByc1KqFuxlvaC80Zzodklc2P+lpBN5QCswGH0hHU2C3WLz05+68HnC
- ALeUoo74hjqdc6/fkAd58kqaxHPOG8dWb1Cv/nJ+U9ZwjtKJzpsCsN18/ecivTk0JegwZira3F12
- l41cv6J5v/bGjULt+eMSnpwMYMJRyXQuv3v9eQ4JOW95KeA9BmEl/Btm10OrUEsDBBQAAAAIACG5
- TlEOqnjxqAEAAKMBAAA2AAAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcyNjcyZDZi
- Yjc1MjBiMWJhNjhjMmMyAaMBXP54AZ2STWvcMBCGexb4PwzksoZ4Teml7KlLYE8tbUmhh5CDVh6v
- lVgar2bUNP31Hdldtvm4tKCDkUczj55X+5H28P7d2zdN01RGaPJuA18eZaAIu9HyPbAN04jQU4Lt
- r5wQttME15h+eIew+uhj/llXZrTxkO0BeVMZgAamuUVlpkRddnLaftFhqV62v+O+NOfKzDCVufgf
- ksp8GzyDLgvBRx/seLqDVXIZrECHgSJLsoIMAz2AEKQc9cSTq2v96J0VrzJ0vYAvm7OAdWUqs1ND
- gVSQjyorzMcuQd1ZRmBEHY1w82dAafeXx2P27p7FJrldDSITb9q2I8fr4F0ipl7WjkKLscnc2hJD
- q3ANLzG0jqJYHzFxe+7ULBnUM9wFXGlN8vssPh4K7mxJ47lDJzBY1dXRJNgtmJ9Oc+HzhBGuKSeN
- +4o6BOpLr5LqmZW0iOeaZ8ROT1CvfKW+rdfwmqWznWcDYLf9+s9Dentsa9AwZit6uZtCV0A+PLF5
- uwrWj0Kb13/X8OBlABsf1UznyyPQl3TMyOWTlwEhYBRWw78BLsIlEVBLAwQUAAAACAAhuU5Rfbco
- kkICAAA9AgAANgAAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1
- OGI2ZDBhYmJmOQE9AsL9eAF9kUGPmkAAhXvmV8yxDVkFRhhIdpuFEQFFUBSt3BgYkBUEBxDx13e7
- 6bHpO37Je8nLl9RVVXQASeq3jlEKVEioAkU11iRRFAlNJComMc1SkUgpyugMykmMZIlrYkavHaBi
- TDKVoBiSRJIVkknCTJ5lkhSLoqYKKpklKCZU4+K+O9cMzOkVfF8XCavbOut+gFcIFSQjWeNTek1p
- WbxUbda99y1l7eRaM9qU4yQvunNPJkld/QSirMCZIGmqCl4EJAjcJ/180FEGrKKzewJe/9be/1vL
- m7wtcvDyJ4ZpOR7YWBuwcyxP34eB+cU5wIGhNRJD1w2s61tju0xdxW1xYKzQ+WPm3yFzBl1PbcfR
- sXub25vjA0c+vOEp5i/RbpCeHBCxO/S9TUmTa+Gebr1Z6ClepLhZLi9jGa+UY6Mleblq1Eq7bS/P
- KjuesWMejr0WLk8nDvjsYTW2fDBhoIzBtqVNHS3zy2G6WxTOvPbhY7lahunHKayce2ctLfMG9/eU
- ndGRV/xA5oAZypcM06fTu2VyP7OuhMxHdn6cWpdYLSKa2N26nEJibHPHIl4enKDG8+UN44UkwBsH
- pBbNx63NX5oUX8QFGmA03xgfDIa7m3vFQ8+PxBU/ol01OOlKFcdsM9rITXTv4C0esccBtIcwzbKn
- 56wFKDVxFbHRe+BfT3Qdw8QhZuKPJ8O8Stc2CPihNAvGL1YCSzPsT9vTGwferAp9Dn25Mb35v41x
- YZPGHQWBqc/X5qRKfwP/EeMBUEsDBBQAAAAIACG5TlFZTf/5igEAAIUBAAA2AAAALmdpdC9vYmpl
- Y3RzL2RmLzkzNDg2MGViMTk2MzE1YTA1NDU3ZDdlYTgyMDU1ODQyZGExZjRmAYUBev54AZWST0vk
- QBDFPQt+hwIvDmwmeBDB0w7C3GRXXPAgHiqdimlNd7VdlR3ip7c649/RPSzkkKKr6v3e624GbuD0
- 5HjvEH5P2nOE9YDyAJgSWLF6GjPByooryn+9I7im5mD/YP9P7wXsQwg++oADCIY00DyoPSq0FDiK
- ZlQS6HkDypDHaBO7QoN3qN7U/iW4fFPMlFi8cp7AYYTWZ3I6TNCQ6aWBJ2qLzhfsecOaMwQ2Pz52
- nMOs+QMMGoVAiEB7gpsXusLywfbl6N2DKGYzxk5uj3rVJGd1Xapl8C6zcKdLx6GmWI1SY4muthwr
- 2UZXbajZras70mpeS22V5gtYzKyHcM5Rs29G9fHuzX/KfG+OoUeLvuWkxW+hvnglgF+JIlzxmO2y
- zrkl4K7saken79RsTTL37LA7m+DObfvrxRK+C+09rB0BWK8u/1ukw8d6AXY3pqpo5m4KXQH5+SnX
- 26OAflA++/54ARuvPWCcLJnWlwdlr/JxJCm/shUIgaKKJfwMt9UPDVBLAwQUAAAACAAhuU5RY2Y+
- ijECAAAsAgAANgAAAC5naXQvb2JqZWN0cy9lMS9hYmY4YjdhM2JjMjU2YmYyMDQ1NGYyMmExMTk4
- MDhiNGM3YWJlOQEsAtP9eAF9kV9vokAAxO+ZT7Hv5pQ/CwtJe+miQhGFCrS2vLHLiiAIwiLIp297
- d4+Xm6fJJL/JJEPrqso5QJL4g7eMAUmjiQENYmhpghKWqOpRRSk0UqSqmi6SowTFFBmq0CQtu3DA
- DJloMmFISolGiJ6oVPsqO2pMUTSqqIlOdElDSEh6fqpbsGTNKenANr+AB/rty/zy1Hes7eaXumVN
- eZ9nOT/1ZE7r6heQVBUiKIsQgpkoi6LwlX7t5awFds6fewIe/mJP/8WyJuvyDPz8lrm2HQ+82C8g
- dGwPR6/B+ncuAAEMnUlNjM0lxntzv6FXpaPLwHTRqYD+TWmdAeP02XGwm8xii9sHWlkhMa+uMbrh
- 4MgCMJiRp1czfMWLzegvBz/heisGHLXH08ZkQwAdC+IIrQ0VMZ3FkUz2jPZXx1WnsrorArAOA53y
- qDY96/1qX7CYrra6M0bWeVjEvJi2beW6XeXWWpPFTrXPDEeGnT3GidshinsBrLnb7Fdn1Tncw3Ka
- OFQsyFdj5HnR6O6CrRoW5ZnfS0itVXgWldmiZEWzi/LY0/l7WgigWhZDA8WYvMDREKfMjsTdYNX3
- swaRyU97tH8ugo9NrCxvK0j8kZ1vH6Iv3couPfHzmy8AaHf0TSOLAkmHuzbb9rLJN/3h2Ic+ykJP
- 9+l06HNJwv5i6RzNazfdmhvZvVeLw1sY148CeMTQiIU/n6291b8fE16bNOEMBGu82q3nVfoJwdje
- uVBLAwQUAAAACAAhuU5Rr7THA3ACAABrAgAANgAAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRi
- NmJiOGE1YzY3MTBmNmUzMzZjMzVhOGI4MTY3NwFrApT9eAF9Ucluo0AUnDNf0dIco8S9gAEpGQWw
- WYzteMOxfaObNsZuwCztha8fZ5bbaN7hqVSqkl69YmWeZy0wIP7W1pwDU1M1klCeQJMgpHLCiUYJ
- 0QyKUV+HCdYgoibEyjmuedECE6mYYoNjTPuYQYIowfsYMYo0RkgS68yEGsPwr56pkO8pfWxDR7AP
- MdfNRDcQM6iqEoZ0Y4+xrjEllu2hrIHDz4e4AeOsAK/sC4useJcNr5uXoqz5Wdxf0qw9SPrCyvwH
- QBrpawY2VR08QQyh8mAf+VpeAy9rfUnB6x/b+39t6TltshQ8f4099IIpmHkzsAy8qbWKFsNfvAIU
- cG1sZluW7VjW3J6PqMijo7OwQ/1wVD8upA6ulpX4QWB5Qa962lWymXtLtXPqC+NJuFkrYLh9qF08
- CN0BDaIBT8X6ynRYxjtvOcxNKwmRJNLeLaUX+JvVXPg5SkKee9o2Sp1jooByvG00vCN0TsZ5uXAd
- 2R0brk+2l8ugBwU2S2ysosHwLhbdBl+kVgk9xHrPlTNZTC+xAtyR/jFpOq1YduYUnpO1Nscn0XhF
- 5Zz8TXFdR5/weNxwviCX0ekj726fFaHEmTmJ2O1b53HDQt+XqWhvNYvC603sl0ORF111uoW4Wps4
- vOywB+/dKCfS55NNXppDmNVHH58wU527AlCpo8MC9z+Pjfc0NerHX5YbEbgzX+62T0E9G0UnlJ2M
- JOpW9nZlrpNxWg1cumv8yXl8fVPAmxu7M+V3Z8Pp4N+NKRNepxycpRCg5pXkTQu+IwL2dZkDq5M1
- f17G+VnwpkdlJtrnrFAU+wuBrPgJX6T7HVBLAwQUAAAACAAhuU5REBcGajYCAAAxAgAANgAAAC5n
- aXQvb2JqZWN0cy9mMS81ODNlOGFhZjA4NWM3MjA1NGE5NzFhZjlkMmJkNDJiN2QwMzBjYgExAs79
- eAF9UUuTmkAYzJlfMXdrFeQxULWbWlBBBARRdhduAzPDQxAcwNevj5vkmErfur+vu7qqs7ZpygFA
- Af4YGCFApQrikUQ1rGkYqSQVcZrKWIRUyehcxpSgDKuY5zrEyGkAikhE5Xl6Ps6plhGo0kziRao8
- aYYyBWq8lM41xKFxKFoGcJv14FUUFShDWZt805eOtXjMhvexJ6yfnlpGuvo+zcuhGNNp1jY/gSBD
- QYCqpEDwwkOe557qs/ZAGLDKYT2m4PWv7f2/trzL+zIHL98wVpa9BYEVgL1tbfVDFK5+6xzgwLU3
- MkPXjYWu74zdBndHWi1Cw4FFJfkXkdlXXcdr29bN8hZ3wb42LZWvIHYKGiV7ZnCApo+N13VR7MKc
- F9Bk66PKP44wDatb60/cx72b585j0zidJpt8H5gH5+TsnLt1cc164nHAilJVXNTRp+1UdXtxY38m
- DY/Dfrav1TG+9nKI9zTR6TheS6VarxP7IexgcamaI3PtesaBYZJce3LwLOxu7kyj/NdomEGlOLaP
- 56WBlq7OLwS7/Siqs7oM9eb46ScSygP34U3IvXkmaF8kH6XrnXk9H8+re3/12MqOl7OtTC9LIUFU
- Tft6rdbGZR4H2leDmL/t92HgMSadbA7E2P0Uovgs3KLaxEkJA+2inSPVCSwszE6Bt3GK2hJ7qkji
- 7JyH5i5LivBGbudmrertGwfeoiD94P5sttou/70YF3UYDQSEK33praYN/gU0mOM/UEsDBBQAAAAI
- 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==
+ UEsDBBQAAAAIAG+dXVFbwg3ocwIAAJoEAAAKAAAALmdpdGlnbm9yZW1UTWvcMBC9G/wfBOkpxN5L
+ 6aHHNC0EQghNk0spiyyPbWVtjZBmnVV/fWckb5pCL5Zm3nzPky/UdSJoDC7eztCrnUJPdrG/8/3m
+ 7k4NrI91td/7ZLSZYL/f1dVl69NPg/0vvn7wqTWzjmxUVxfqi4ITgYsWXRTDiEV/YyMF2x2JAQ7t
+ tTno0bqxrtqHRBO6ugK3cuzuaOeezx5WmNE3MI5RRPaXA1/djLoX1Ya02znbrnw/feTT60CijZvj
+ qkMunI0b6wYUR+si6Zn7bs0wbmCp9iHdblgQUT3FIwtJ0QQRykyUDqBegyXuVnVJaeVzHyqaYD2p
+ IeDCSoLFz5ogh+lgQPZ6F13ldqME5sHBlYqoNIuorHsBQ6pn3x0yHJSUHfkrILVS76KdHSBSHrQH
+ U4r/G3zGkZfgrW/41tKJitDDDLx1mmxsehs4DYZUYPF/cpa47ki8J4MrBD2CCuCRJ1pXEy0za2V+
+ hCc5zjbvru2lCMKXunIYQaLF9rTMdfVmkqXLqyyz9ZS8tBmtbE3K+BG0izy6M5MWzMTDrcqbF+1G
+ VJGOw/BZEG6R149Gz3tOSMytyDQtxt+YoIc327x3Z0CKf4WOuQsUm61cMX80Qfv0Zt/GLG+Yn6w7
+ qR7NcQFHuT7hpYm7/Zm7hULXIklvpMMItOlvC93VPRJ0iAfhoU+u23N2c/DI+92ekk/8IhguvGp4
+ TDHnEszwCkNiQmliwk3QH+fCSx5whgRpzkjx6TljDpi/olltICZ2ltfy/L7eP8tYNqk0nLgL5QNm
+ Qp5nK2PJyAYU4+/o4X+mgfX/GD5beVLqkY69RfUFe6HPGvmnAjnvH1BLAwQUAAAACABvnV1RjGpL
+ gWAAAABtAAAABgAAAGFwcC5weSWJsQqFMAwA90D+IXaqILoLwpse/oFjKZii2JoS6/9b8ba7CyqJ
+ QvTXQXvKooX+ryD4nGn6xDp3+sTOtQgIv3p6lbuwNYOpaeVAG8coth0RqKJcbj3JzG/taBGNa2MQ
+ HlBLAwQUAAAACABvnV1RQcF3To8CAACfBAAABwAAAExJQ0VOU0VdU81u4jAQvlfqO4w4tVLUve/N
+ BFOsTeLIMe1yDIkhXoUY2aaob78zSaBqJSTk8Xx/Mw4AQC40ZLYxQzCPD48PWIHUnT+9PXYRnppn
+ yG3jXXCHiHV/dr6O1g0vwPoexqYA3gTjP0z7ciMojT/ZELAPbIDOeLP/hKOvh2jaBA7eGHAHaLra
+ H00C0UE9fMLZ+IAAt4+1HexwhBoaNDIxYnvskIt8XGtvENFCHYJrbI2k0LrmcjJDHM3BwfYmwFPs
+ DCyqGbF4HpVaU/cTpR2AGm73cLWxc5dIaaK3DREl2NT0l5bc3K57e7KzDMGnEUyMSH8JGIhsJ3By
+ rT3QvxlTni/73oYugdYS//4SsRioOM4+oUS/nIdg+tkg0liMMUb/8jk2ktSZhhznsQWqXDt3+p7J
+ zs4OFz+guBmBrcMxjtr/TBOpQpiD63t3paSNG1pLAcPv20I1NtR792HGbNPbGFxE65MbWs35a+nz
+ VehqfCR7M08R1XHm9c94npyEiI/D1j3gAxulf8a+vy294VDJtX5nioOooFTyTaz4ChaswvMigXeh
+ N3KrATsUK/QO5BpYsYM/olglwP+WilcVSDXxibzMBMcLUaTZdiWKV1giuJD4WQj8OJBZy1F15hO8
+ Isacq3SDR7YUmdC7ZGJbC10Q+1oqYFAypUW6zZiCcqtKWXE0skLuQhRrhVI854V+QWmsAX/DA1Qb
+ lmWkNxGyLYZRZBdSWe6UeN1o2MhsxbG45OiRLTM+6WHGNGMiT2DFcvbKR5REqjkq9U5m4X3DqU7K
+ DH+pFrKgVKkstMJjgqGVvuPfRcUTYEpUNJ+1kvmcl+aMMDkyIbjgExXt4PuqsIXO24rfWWHFWYaE
+ FYHviW+Ix4f/UEsDBBQAAAAIAG+dXVG/IIiLswEAAH4DAAAJAAAAUkVBRE1FLm1klZJBb9swDIXv
+ BvwfiOaSAHN892lBgJw2bEV3C4pBlelYqyUqEr0t+/Uj7dRri6LAAB8EieR776OrqiqLaE74nS8R
+ G8jGxwHLosVsk4vsKDRwswPvgvNmuL6DiRG4NwzWBHhAGDO2wAQtegqZk2GUcxzo4sIJDoPJj9qT
+ tWb3Z0wIO5lwh+mnswgU4JML4+/tTVkMJpxG8ZObsqggXrinIA4TtaPl+dLogOVQydwqz5PkUvOU
+ xQq+Tp1X6avrjtIb6utJe6Nt33qXQT6z5F2sv4g7R5sjvxNHRx5E0ykSsS8ws76mMQTlYkL7jBL3
+ CJZa/AAZEY63o7OPmU3iBvYJlah5SqV+XHhH+n7dM8fc1HVLNm+9s4kydby15OsJW/0MW31etKqZ
+ +GbyvlrBngIn9zCyOFwIyTZ+oGXojaBqKbKSEPfHz0868CVigDsak5jaSyigTmfpEv95IynKU80r
+ h4qBOjvX15stKEVPEtYFWaI3inLCNMm+EoDD7va/RTpzrjcgMnLBRoYctVFrPr5ou1974wam5u3n
+ Dfxy3MtmL0KmdepT/qLziPm6fRXwHgNnQfwXUEsDBBQAAAAIAG+dXVFwKD1JFAAAABQAAAAQAAAA
+ cmVxdWlyZW1lbnRzLnR4dHPLSSzOtrM11DPQsQGShnpGvFwAUEsDBBQAAAAIAG+dXVHzjpxMdQAA
+ AIkAAAANAAAALmF6dXJlL2NvbmZpZzXMQQoCMQyF4X0gd5gLDIy69gYuXLkRKTGTGYulDU0zenyL
+ IrzVx8+7zrKQp2Y3hLUW1+E4MKUt5rGJtbGuCPb0rufdZY9AqiZ1iyyaKP9iflAg03CK2d+BJbdK
+ yS1MCKkwtVi+4d8RXnLvQDYvfYep3yJ8AFBLAQIUABQAAAAIAG+dXVFbwg3ocwIAAJoEAAAKAAAA
+ AAAAAAAAAAC2gQAAAAAuZ2l0aWdub3JlUEsBAhQAFAAAAAgAb51dUYxqS4FgAAAAbQAAAAYAAAAA
+ AAAAAAAAALaBmwIAAGFwcC5weVBLAQIUABQAAAAIAG+dXVFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAA
+ AAC2gR8DAABMSUNFTlNFUEsBAhQAFAAAAAgAb51dUb8giIuzAQAAfgMAAAkAAAAAAAAAAAAAALaB
+ 0wUAAFJFQURNRS5tZFBLAQIUABQAAAAIAG+dXVFwKD1JFAAAABQAAAAQAAAAAAAAAAAAAAC2ga0H
+ AAByZXF1aXJlbWVudHMudHh0UEsBAhQAFAAAAAgAb51dUfOOnEx1AAAAiQAAAA0AAAAAAAAAAAAA
+ ALaB7wcAAC5henVyZS9jb25maWdQSwUGAAAAAAYABgBRAQAAjwgAAAAA
headers:
Accept:
- '*/*'
@@ -2231,11 +1434,11 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '47968'
+ - '2550'
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-pythonapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -2245,13 +1448,14 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:50 GMT
+ - Fri, 30 Oct 2020 02:45:42 GMT
location:
- - https://up-pythonapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-10-50Z
+ - https://up-pythonapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-45-41Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -2269,68 +1473,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:45:46 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2352,27 +1516,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:45:49 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2394,27 +1559,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:45:53 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2436,27 +1602,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:45:56 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2478,27 +1645,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:45:59 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2520,27 +1688,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:46:02 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2562,27 +1731,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:46:05 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2604,27 +1774,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:46:09 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2646,27 +1817,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:46:11 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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2688,27 +1860,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","status":1,"status_text":"Building
+ and Deploying ''fef5af6cd1da4011a0372b6621503f27''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2730,66 +1903,25 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"fef5af6cd1da4011a0372b6621503f27","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-30T02:45:44.7286623Z","start_time":"2020-10-30T02:45:44.8599624Z","end_time":"2020-10-30T02:46:15.4339239Z","last_success_end_time":"2020-10-30T02:46:15.4339239Z","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
+ - Fri, 30 Oct 2020 02:46:16 GMT
server:
- Kestrel
set-cookie:
- - ARRAffinity=9855daf1e1ce85cbe57395df2c4186f2b3ba8d27aad56243b71cacee58096f3f;Path=/;HttpOnly;Domain=up-pythonapp7i4rketjuszt.scm.azurewebsites.net
+ - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
+ - ARRAffinitySameSite=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappa7ald4xreyzi.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2812,7 +1944,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2820,18 +1952,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.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-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-30T02:45:00.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","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-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'
+ - '5458'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:31 GMT
+ - Fri, 30 Oct 2020 02:46:17 GMT
etag:
- - '"1D6A2B9DB2EC595"'
+ - '"1D6AE66A920388B"'
expires:
- '-1'
pragma:
@@ -2866,7 +1998,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.14.0
accept-language:
- en-US
method: GET
@@ -2874,18 +2006,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.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-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-30T02:45:00.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","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-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'
+ - '5458'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:32 GMT
+ - Fri, 30 Oct 2020 02:46:18 GMT
etag:
- - '"1D6A2B9DB2EC595"'
+ - '"1D6AE66A920388B"'
expires:
- '-1'
pragma:
@@ -2920,7 +2052,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.14.0
accept-language:
- en-US
method: GET
@@ -2928,18 +2060,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-pythonapp000003","state":"Running","hostNames":["up-pythonapp000003.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-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-30T02:45:00.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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.22","possibleInboundIpAddresses":"13.89.172.22","ftpUsername":"up-pythonapp000003\\$up-pythonapp000003","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-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'
+ - '5458'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:32 GMT
+ - Fri, 30 Oct 2020 02:46:18 GMT
etag:
- - '"1D6A2B9DB2EC595"'
+ - '"1D6AE66A920388B"'
expires:
- '-1'
pragma:
@@ -2978,7 +2110,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.14.0
accept-language:
- en-US
method: POST
@@ -2986,18 +2118,18 @@ interactions:
response:
body:
string:
@@ -3005,11 +2137,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:33 GMT
+ - Fri, 30 Oct 2020 02:46:19 GMT
expires:
- '-1'
pragma:
@@ -3042,7 +2174,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.14.0
accept-language:
- en-US
method: GET
@@ -3061,7 +2193,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:33 GMT
+ - Fri, 30 Oct 2020 02:46:19 GMT
expires:
- '-1'
pragma:
@@ -3098,7 +2230,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.14.0
accept-language:
- en-US
method: POST
@@ -3115,7 +2247,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:34 GMT
+ - Fri, 30 Oct 2020 02:46:19 GMT
expires:
- '-1'
pragma:
@@ -3133,7 +2265,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -3152,7 +2284,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.14.0
accept-language:
- en-US
method: GET
@@ -3169,7 +2301,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:34 GMT
+ - Fri, 30 Oct 2020 02:46:20 GMT
expires:
- '-1'
pragma:
@@ -3204,7 +2336,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.14.0
accept-language:
- en-US
method: GET
@@ -3212,8 +2344,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":22732,"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-171_22732","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
@@ -3222,7 +2354,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:35 GMT
+ - Fri, 30 Oct 2020 02:46:21 GMT
expires:
- '-1'
pragma:
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
index d839c3481d1..65d776eb9cf 100644
--- 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:04 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:04 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -280,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -325,7 +325,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:05 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -374,7 +374,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -411,7 +411,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -483,7 +483,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -522,11 +522,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:47:06 GMT
expires:
- '-1'
pragma:
@@ -563,7 +563,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -577,7 +577,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:07 GMT
+ - Fri, 30 Oct 2020 02:47:06 GMT
expires:
- '-1'
pragma:
@@ -604,7 +604,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -620,7 +620,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:47:06 GMT
expires:
- '-1'
pragma:
@@ -649,7 +649,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -663,7 +663,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:09:06 GMT
+ - Fri, 30 Oct 2020 02:47:07 GMT
expires:
- '-1'
pragma:
@@ -690,7 +690,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -706,7 +706,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:07 GMT
+ - Fri, 30 Oct 2020 02:47:07 GMT
expires:
- '-1'
pragma:
@@ -740,7 +740,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -748,8 +748,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":57984,"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-059_57984","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
@@ -758,7 +758,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:16 GMT
+ - Fri, 30 Oct 2020 02:47:17 GMT
expires:
- '-1'
pragma:
@@ -776,7 +776,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -797,7 +797,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -805,8 +805,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":57984,"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-059_57984","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
@@ -815,7 +815,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:18 GMT
+ - Fri, 30 Oct 2020 02:47:17 GMT
expires:
- '-1'
pragma:
@@ -856,7 +856,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -872,7 +872,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:18 GMT
+ - Fri, 30 Oct 2020 02:47:17 GMT
expires:
- '-1'
pragma:
@@ -918,7 +918,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -926,20 +926,20 @@ interactions:
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
+ US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.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-30T02:47:24.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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}}'
+ 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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","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'
+ - '5585'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:43 GMT
+ - Fri, 30 Oct 2020 02:47:40 GMT
etag:
- - '"1D6A2B9BC503EB5"'
+ - '"1D6AE66FF8E7B75"'
expires:
- '-1'
pragma:
@@ -980,7 +980,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -997,7 +997,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:43 GMT
+ - Fri, 30 Oct 2020 02:47:41 GMT
expires:
- '-1'
pragma:
@@ -1040,7 +1040,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1057,9 +1057,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:44 GMT
+ - Fri, 30 Oct 2020 02:47:41 GMT
etag:
- - '"1D6A2B9C6BC7FA0"'
+ - '"1D6AE6709D18980"'
expires:
- '-1'
pragma:
@@ -1102,7 +1102,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1111,19 +1111,19 @@ interactions:
body:
string:
@@ -1135,7 +1135,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:09:44 GMT
+ - Fri, 30 Oct 2020 02:47:43 GMT
expires:
- '-1'
pragma:
@@ -1170,7 +1170,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1178,18 +1178,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.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-30T02:47:42.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-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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","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'
+ - '5380'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:44 GMT
+ - Fri, 30 Oct 2020 02:47:42 GMT
etag:
- - '"1D6A2B9C6BC7FA0"'
+ - '"1D6AE6709D18980"'
expires:
- '-1'
pragma:
@@ -1231,7 +1231,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1248,9 +1248,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:45 GMT
+ - Fri, 30 Oct 2020 02:47:44 GMT
etag:
- - '"1D6A2B9C7E8968B"'
+ - '"1D6AE670B2B672B"'
expires:
- '-1'
pragma:
@@ -1291,7 +1291,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1299,7 +1299,7 @@ interactions:
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"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-dotnetcoreapp000003","publishingPassword":"eoKviSsxoi0XzxYXLu3ogiy9toCvxKwsgwQ9vHcwjrs1faWonZ4rgESruqAj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-dotnetcoreapp000003:eoKviSsxoi0XzxYXLu3ogiy9toCvxKwsgwQ9vHcwjrs1faWonZ4rgESruqAj@up-dotnetcoreapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1308,7 +1308,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:46 GMT
+ - Fri, 30 Oct 2020 02:47:45 GMT
expires:
- '-1'
pragma:
@@ -1347,7 +1347,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1355,18 +1355,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.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-30T02:47:44.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":"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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","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'
+ - '5385'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:09:47 GMT
+ - Fri, 30 Oct 2020 02:47:47 GMT
etag:
- - '"1D6A2B9C7E8968B"'
+ - '"1D6AE670B2B672B"'
expires:
- '-1'
pragma:
@@ -1407,7 +1407,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1416,19 +1416,19 @@ interactions:
body:
string:
@@ -1440,7 +1440,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:09:47 GMT
+ - Fri, 30 Oct 2020 02:47:47 GMT
expires:
- '-1'
pragma:
@@ -1454,7 +1454,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11997'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1462,22 +1462,22 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIACG5TlFn+aX4WAAAAJIAAAAcAAAAYXBwc2V0dGluZ3MuRGV2ZWxvcG1lbnQuanNv
+ UEsDBBQAAAAIAOKdXVFn+aX4WAAAAJIAAAAcAAAAYXBwc2V0dGluZ3MuRGV2ZWxvcG1lbnQuanNv
bqvm5VJQUPLJT0/PzEtXslKoBvEhIj6pZak5CCGgoEtqWmJpTglQDMhMKk1X0oFLBVcWl6TmgmQ8
- 89Lyi3ITSzLz85DkfTOTi/KL89NK0JVAVNSCKCABRABQSwMEFAAAAAgAIblOUQI4j9tKAAAAaQAA
+ 89Lyi3ITSzLz85DkfTOTi/KL89NK0JVAVNSCKCABRABQSwMEFAAAAAgA4p1dUQI4j9tKAAAAaQAA
ABAAAABhcHBzZXR0aW5ncy5qc29uq+blUlBQ8slPT8/MS1eyUqgG8SEiPqllqTkIIaCgS2paYmlO
- CVBMKTyxKA+kAyJXC6JqdcBmOebk5JenpnjkF5cUg1RqAdUA5QFQSwMEFAAAAAgAIblOUUFUnQLe
+ CVBMKTyxKA+kAyJXC6JqdcBmOebk5JenpnjkF5cUg1RqAdUA5QFQSwMEFAAAAAgA4p1dUUFUnQLe
AAAAnAEAABYAAABoZWxsb2RvdG5ldGNvcmUuY3Nwcm9qnVFBTsMwELxHyh8sP8BGPTuRIqA0h1ZR
qeBsnGlkktrW2i2C1+NGIEolLhx3dkYzs6s68q8wiT32Y8XX1pCPfp/E5n4nMiSe8cLrsigLxlSm
BlB6fyB/DPUZyuBO04C0JH3Am6exdkjGE3QIC7FQ8nr9pWpi2CDdZuLKx2TdsPY9prp12cMgRiX/
YMxB5HWSGW0TDr+iddqMesAWexCcAWudmY49Lnv+2IgmBM7kP8Vb/eFJ3CHawXH2BIrWu4rnG4gb
- zjqyJ53QxIgUK95M07eTkpexy2Ludn5Inj4BUEsDBBQAAAAIACG5TlG7IcUjHwEAAH0CAAAKAAAA
+ zjqyJ53QxIgUK95M07eTkpexy2Ludn5Inj4BUEsDBBQAAAAIAOKdXVG7IcUjHwEAAH0CAAAKAAAA
UHJvZ3JhbS5jc31QQU7DMBC8R8offEwu/kChEgRUKrWAaBEHxMF1NqmFYwfvGoEQL+PAk/gCTlK1
TRR1ZcnanZmdsf9+fj0qU7LVJxJUkzg6bnlmtQZJyhrkMzDglBxS5nfDyUKZt+FsvXUg8jDga4Gv
uIeXSjqLtiB+gfUtUGYdnAT5jUUK4Ajp+oPAYJs1s6ZQpXeiiX6aurBl2e2LIyMqwFpIYFvQ2uaW
DJAMrnH0FUcsVO03WkkmtUBk986WTlQdsiMckZCCvWTvVuVsKZRJkFxwen5hwpWYHvhH0qay8FUE
T7Bpnnrplc7BJa2Et12S8gdvknRykH036cft5/1F49v7ydj5tJ9ox+ad9goK4XU/WZ/fFH9EWJFw
- 5Ouz3T3dZw55w/kHUEsDBBQAAAAIACG5TlFvzNkj+gEAAGUEAAAKAAAAU3RhcnR1cC5jc61TwW4T
+ 5Ouz3T3dZw55w/kHUEsDBBQAAAAIAOKdXVFvzNkj+gEAAGUEAAAKAAAAU3RhcnR1cC5jc61TwW4T
MRC9R8o/DD1tpMqLBAdKVVBIAokEqGqCena9k6zJru3as5tEqF/GgU/iFxg322wSKnLBsrT2+D3P
vLfj3z9/VUGbBUw3gbC87Hb2t2JgiwIVaWuC+IQGvVbHkM/a3B/HZrlHmXFAzGRYht3xF628DXZO
oh/cV6SB9Sg+VLrI0P8bNLaB+PAEiMg9gxitCU141DBEhyZDozYT830rjAndjpElBicVQo5FYTNL
@@ -1486,19 +1486,19 @@ interactions:
h1oHTZCzVeFtmi6sKHdGKVum81WhzTJ9z791ORlevbp4c/H6ZZu7saG2OoPBU5ZpU3QyaVZt2+wE
9do79gx7iOb/H/dazRE5ns2uweN9hYHAaYesCsUJHcmk3zrVtGU07xwmTf+NTK29NSUaAjT186Li
0HNIGCAmYYg1FtZFStLrHaKOSHFwOsHqGhb60Vqhi/VcywUmvctDxoF/T/SbyiQybIyCJLYPrqkH
- V+9OZ15JboyGIW74PfCLQXHrNWE/XpecjePjgFvri+zF2V+17Acetkv+8PwDUEsDBBQAAAAIACG5
- TlG+Vt44JgEAAKkCAAAeAAAAUHJvcGVydGllcy9sYXVuY2hTZXR0aW5ncy5qc29uvZFNTsMwEIX3
+ V+9OZ15JboyGIW74PfCLQXHrNWE/XpecjePjgFvri+zF2V+17Acetkv+8PwDUEsDBBQAAAAIAOKd
+ XVG+Vt44JgEAAKkCAAAeAAAAUHJvcGVydGllcy9sYXVuY2hTZXR0aW5ncy5qc29uvZFNTsMwEIX3
lXqHyOtKbZUi0bAqkEUWpFFTukUmmRIjxxPZkxaEcjIWHIkr4KRJf9QKsWJl6c339Dxvvj+/Pvo9
x2FCmBiIhHoxzHMazapboVLcmllJGSgSCSeBys7XXBoYOC3FFar3HMtzjnR5wGyE/1ZoMEcJtbso
ZOt41NKOWEZUeMOhxITLDA1546l7zQZ7hzEyQk0WnUxcd7rTq/qpGogVGtdCwvEmQRA7l9ITzHOu
0pDnUEdbrKMOeZKXKslutW0CdLfVfgpqIzSq3C6+4lrw55PgBpnFUegv7+YL/8kPV8FiHj744bLO
u4cNSCxqM+sMVbtQG8EykBJTJAWUoIbfvh9pfIWE/vz3y92bk/KvRqPxzdlJrDpi/1BCc9V+r/oB
- UEsBAhQAFAAAAAgAIblOUWf5pfhYAAAAkgAAABwAAAAAAAAAAAAAALaBAAAAAGFwcHNldHRpbmdz
- LkRldmVsb3BtZW50Lmpzb25QSwECFAAUAAAACAAhuU5RAjiP20oAAABpAAAAEAAAAAAAAAAAAAAA
- toGSAAAAYXBwc2V0dGluZ3MuanNvblBLAQIUABQAAAAIACG5TlFBVJ0C3gAAAJwBAAAWAAAAAAAA
- AAAAAAC2gQoBAABoZWxsb2RvdG5ldGNvcmUuY3Nwcm9qUEsBAhQAFAAAAAgAIblOUbshxSMfAQAA
- fQIAAAoAAAAAAAAAAAAAALaBHAIAAFByb2dyYW0uY3NQSwECFAAUAAAACAAhuU5Rb8zZI/oBAABl
- BAAACgAAAAAAAAAAAAAAtoFjAwAAU3RhcnR1cC5jc1BLAQIUABQAAAAIACG5TlG+Vt44JgEAAKkC
+ UEsBAhQAFAAAAAgA4p1dUWf5pfhYAAAAkgAAABwAAAAAAAAAAAAAALaBAAAAAGFwcHNldHRpbmdz
+ LkRldmVsb3BtZW50Lmpzb25QSwECFAAUAAAACADinV1RAjiP20oAAABpAAAAEAAAAAAAAAAAAAAA
+ toGSAAAAYXBwc2V0dGluZ3MuanNvblBLAQIUABQAAAAIAOKdXVFBVJ0C3gAAAJwBAAAWAAAAAAAA
+ AAAAAAC2gQoBAABoZWxsb2RvdG5ldGNvcmUuY3Nwcm9qUEsBAhQAFAAAAAgA4p1dUbshxSMfAQAA
+ fQIAAAoAAAAAAAAAAAAAALaBHAIAAFByb2dyYW0uY3NQSwECFAAUAAAACADinV1Rb8zZI/oBAABl
+ BAAACgAAAAAAAAAAAAAAtoFjAwAAU3RhcnR1cC5jc1BLAQIUABQAAAAIAOKdXVG+Vt44JgEAAKkC
AAAeAAAAAAAAAAAAAAC2gYUFAABQcm9wZXJ0aWVzL2xhdW5jaFNldHRpbmdzLmpzb25QSwUGAAAA
AAYABgCIAQAA5wYAAAAA
headers:
@@ -1515,7 +1515,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -1527,67 +1527,18 @@ interactions:
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
+ - Fri, 30 Oct 2020 02:47:55 GMT
expires:
- '-1'
location:
- - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest
+ - https://up-dotnetcoreapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-30_02-47-56Z
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1609,14 +1560,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1625,7 +1576,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:09:57 GMT
+ - Fri, 30 Oct 2020 02:48:00 GMT
expires:
- '-1'
location:
@@ -1635,8 +1586,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1658,14 +1609,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1674,7 +1625,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:00 GMT
+ - Fri, 30 Oct 2020 02:48:02 GMT
expires:
- '-1'
location:
@@ -1684,8 +1635,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1707,14 +1658,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1723,7 +1674,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:02 GMT
+ - Fri, 30 Oct 2020 02:48:05 GMT
expires:
- '-1'
location:
@@ -1733,8 +1684,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1756,14 +1707,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1772,7 +1723,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:05 GMT
+ - Fri, 30 Oct 2020 02:48:07 GMT
expires:
- '-1'
location:
@@ -1782,8 +1733,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1805,14 +1756,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1821,7 +1772,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:07 GMT
+ - Fri, 30 Oct 2020 02:48:11 GMT
expires:
- '-1'
location:
@@ -1831,8 +1782,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1854,14 +1805,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1870,7 +1821,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:09 GMT
+ - Fri, 30 Oct 2020 02:48:12 GMT
expires:
- '-1'
location:
@@ -1880,8 +1831,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1903,14 +1854,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1919,7 +1870,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:12 GMT
+ - Fri, 30 Oct 2020 02:48:15 GMT
expires:
- '-1'
location:
@@ -1929,8 +1880,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -1952,14 +1903,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -1968,7 +1919,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:14 GMT
+ - Fri, 30 Oct 2020 02:48:18 GMT
expires:
- '-1'
location:
@@ -1978,8 +1929,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2001,14 +1952,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -2017,7 +1968,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:17 GMT
+ - Fri, 30 Oct 2020 02:48:20 GMT
expires:
- '-1'
location:
@@ -2027,8 +1978,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2050,14 +2001,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -2066,7 +2017,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:19 GMT
+ - Fri, 30 Oct 2020 02:48:23 GMT
expires:
- '-1'
location:
@@ -2076,8 +2027,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2099,14 +2050,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -2115,7 +2066,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:21 GMT
+ - Fri, 30 Oct 2020 02:48:25 GMT
expires:
- '-1'
location:
@@ -2125,8 +2076,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2148,14 +2099,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":1,"status_text":"Building
+ and Deploying ''9b9bc048e82e476dba62275185e36a80''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_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
@@ -2164,7 +2115,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:24 GMT
+ - Fri, 30 Oct 2020 02:48:29 GMT
expires:
- '-1'
location:
@@ -2174,8 +2125,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2197,62 +2148,13 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"9b9bc048e82e476dba62275185e36a80","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"","received_time":"2020-10-30T02:47:56.4932197Z","start_time":"2020-10-30T02:47:56.6138874Z","end_time":"2020-10-30T02:48:29.4416067Z","last_success_end_time":"2020-10-30T02:48:29.4416067Z","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
@@ -2261,7 +2163,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:29 GMT
+ - Fri, 30 Oct 2020 02:48:31 GMT
expires:
- '-1'
pragma:
@@ -2269,8 +2171,8 @@ interactions:
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
+ - ARRAffinity=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
+ - ARRAffinitySameSite=c742bce43547be7cc86ac20be59d731ca60edb1e4e89d2a19feab0dc45fc0423;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-dotnetcoreappdgi4io2e.scm.azurewebsites.net
vary:
- Accept-Encoding
x-aspnet-version:
@@ -2295,7 +2197,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2303,18 +2205,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.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-30T02:47:44.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":"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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","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'
+ - '5385'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:29 GMT
+ - Fri, 30 Oct 2020 02:48:32 GMT
etag:
- - '"1D6A2B9C7E8968B"'
+ - '"1D6AE670B2B672B"'
expires:
- '-1'
pragma:
@@ -2349,7 +2251,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.14.0
accept-language:
- en-US
method: GET
@@ -2357,18 +2259,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.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-30T02:47:44.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":"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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","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'
+ - '5385'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:30 GMT
+ - Fri, 30 Oct 2020 02:48:32 GMT
etag:
- - '"1D6A2B9C7E8968B"'
+ - '"1D6AE670B2B672B"'
expires:
- '-1'
pragma:
@@ -2403,7 +2305,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.14.0
accept-language:
- en-US
method: GET
@@ -2411,18 +2313,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-dotnetcoreapp000003","state":"Running","hostNames":["up-dotnetcoreapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.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-30T02:47:44.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":"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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreapp000003\\$up-dotnetcoreapp000003","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","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'
+ - '5385'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:30 GMT
+ - Fri, 30 Oct 2020 02:48:33 GMT
etag:
- - '"1D6A2B9C7E8968B"'
+ - '"1D6AE670B2B672B"'
expires:
- '-1'
pragma:
@@ -2461,7 +2363,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.14.0
accept-language:
- en-US
method: POST
@@ -2470,19 +2372,19 @@ interactions:
body:
string:
@@ -2494,7 +2396,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:10:30 GMT
+ - Fri, 30 Oct 2020 02:48:33 GMT
expires:
- '-1'
pragma:
@@ -2508,7 +2410,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -2527,7 +2429,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.14.0
accept-language:
- en-US
method: GET
@@ -2546,7 +2448,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:31 GMT
+ - Fri, 30 Oct 2020 02:48:34 GMT
expires:
- '-1'
pragma:
@@ -2583,7 +2485,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.14.0
accept-language:
- en-US
method: POST
@@ -2600,7 +2502,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:32 GMT
+ - Fri, 30 Oct 2020 02:48:34 GMT
expires:
- '-1'
pragma:
@@ -2637,7 +2539,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.14.0
accept-language:
- en-US
method: GET
@@ -2654,7 +2556,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:32 GMT
+ - Fri, 30 Oct 2020 02:48:34 GMT
expires:
- '-1'
pragma:
@@ -2689,7 +2591,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.14.0
accept-language:
- en-US
method: GET
@@ -2697,8 +2599,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":57984,"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-059_57984","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
@@ -2707,7 +2609,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:32 GMT
+ - Fri, 30 Oct 2020 02:48:35 GMT
expires:
- '-1'
pragma:
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 488e935fc94..a74f6e4f316 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -35,7 +35,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:48 GMT
+ - Fri, 30 Oct 2020 02:42:12 GMT
expires:
- '-1'
pragma:
@@ -76,7 +76,7 @@ interactions:
- -n
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -93,7 +93,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:49 GMT
+ - Fri, 30 Oct 2020 02:42:12 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
index bee9adaeb4a..9b8d3e2ba3a 100644
--- 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
@@ -14,14 +14,14 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.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"}}'
+ 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-30T02:43:14Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:12:15 GMT
+ - Fri, 30 Oct 2020 02:43:15 GMT
expires:
- '-1'
pragma:
@@ -65,7 +65,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -81,7 +81,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:16 GMT
+ - Fri, 30 Oct 2020 02:43:15 GMT
expires:
- '-1'
pragma:
@@ -120,14 +120,14 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.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"}}'
+ 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-30T02:43:14Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -136,7 +136,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:12:16 GMT
+ - Fri, 30 Oct 2020 02:43:15 GMT
expires:
- '-1'
pragma:
@@ -171,7 +171,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -179,8 +179,8 @@ interactions:
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}}'
+ US 2","properties":{"serverFarmId":5056,"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-073_5056","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -189,7 +189,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:29 GMT
+ - Fri, 30 Oct 2020 02:43:26 GMT
expires:
- '-1'
pragma:
@@ -228,7 +228,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -236,8 +236,8 @@ interactions:
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}}'
+ US 2","properties":{"serverFarmId":5056,"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-073_5056","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -246,7 +246,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:30 GMT
+ - Fri, 30 Oct 2020 02:43:26 GMT
expires:
- '-1'
pragma:
@@ -288,7 +288,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -304,7 +304,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:30 GMT
+ - Fri, 30 Oct 2020 02:43:27 GMT
expires:
- '-1'
pragma:
@@ -343,7 +343,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -351,8 +351,8 @@ interactions:
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}}'
+ US 2","properties":{"serverFarmId":5056,"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-073_5056","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -361,7 +361,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:30 GMT
+ - Fri, 30 Oct 2020 02:43:28 GMT
expires:
- '-1'
pragma:
@@ -402,7 +402,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -418,7 +418,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:30 GMT
+ - Fri, 30 Oct 2020 02:43:28 GMT
expires:
- '-1'
pragma:
@@ -443,7 +443,7 @@ interactions:
- 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,
+ "v4.6", "linuxFxVersion": "PYTHON|3.7", "appSettings": [], "alwaysOn": true,
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
"httpsOnly": false}}'
headers:
@@ -463,7 +463,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -471,20 +471,20 @@ interactions:
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
+ 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-073.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-30T02:43:30.73","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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}}'
+ 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":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","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'
+ - '6030'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:51 GMT
+ - Fri, 30 Oct 2020 02:43:47 GMT
etag:
- - '"1D6A2BA2CB1ACAB"'
+ - '"1D6AE6674177580"'
expires:
- '-1'
pragma:
@@ -527,7 +527,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -535,21 +535,15 @@ interactions:
response:
body:
string:
@@ -557,11 +551,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1938'
+ - '1283'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:12:51 GMT
+ - Fri, 30 Oct 2020 02:43:47 GMT
expires:
- '-1'
pragma:
@@ -596,7 +590,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -604,16 +598,16 @@ interactions:
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}'
+ 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-073.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-30T02:43:31.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","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'
+ - '5870'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:51 GMT
+ - Fri, 30 Oct 2020 02:43:48 GMT
expires:
- '-1'
pragma:
@@ -654,7 +648,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -671,7 +665,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:52 GMT
+ - Fri, 30 Oct 2020 02:43:48 GMT
expires:
- '-1'
pragma:
@@ -708,114 +702,108 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ 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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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/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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/sites/up-nodeapp3ngwpwaky6to4q","name":"up-nodeapp3ngwpwaky6to4q","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp3ngwpwaky6to4q","state":"Running","hostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net"],"webSpace":"clitestll2w665itavskk4be-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestll2w665itavskk4be-CentralUSwebspace/sites/up-nodeapp3ngwpwaky6to4q","repositorySiteName":"up-nodeapp3ngwpwaky6to4q","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net","up-nodeapp3ngwpwaky6to4q.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-nodeapp3ngwpwaky6to4q.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/serverfarms/up-nodeplanzcxyeyslctxis","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp3ngwpwaky6to4q","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeapp3ngwpwaky6to4q\\$up-nodeapp3ngwpwaky6to4q","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":"clitestll2w665itavskk4be","defaultHostName":"up-nodeapp3ngwpwaky6to4q.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":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":"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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":"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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/sites/up-nodeapp6wjlg76g65ruht","name":"up-nodeapp6wjlg76g65ruht","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp6wjlg76g65ruht","state":"Running","hostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net"],"webSpace":"clitestfmkfvpjtnqimkcuns-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestfmkfvpjtnqimkcuns-CentralUSwebspace/sites/up-nodeapp6wjlg76g65ruht","repositorySiteName":"up-nodeapp6wjlg76g65ruht","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net","up-nodeapp6wjlg76g65ruht.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":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/serverfarms/up-nodeplanyzjydyzusvae6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:23.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":"up-nodeapp6wjlg76g65ruht","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-nodeapp6wjlg76g65ruht\\$up-nodeapp6wjlg76g65ruht","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":"clitestfmkfvpjtnqimkcuns","defaultHostName":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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
+ 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/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/sites/up-nodeapp773sruovjgj5go","name":"up-nodeapp773sruovjgj5go","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp773sruovjgj5go","state":"Running","hostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net"],"webSpace":"clitestpfvhm5kzbcebdfssu-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestpfvhm5kzbcebdfssu-CentralUSwebspace/sites/up-nodeapp773sruovjgj5go","repositorySiteName":"up-nodeapp773sruovjgj5go","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net","up-nodeapp773sruovjgj5go.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-nodeapp773sruovjgj5go.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp773sruovjgj5go.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/serverfarms/up-nodeplani6inxawfrpcxz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:56.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":"up-nodeapp773sruovjgj5go","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-nodeapp773sruovjgj5go\\$up-nodeapp773sruovjgj5go","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":"clitestpfvhm5kzbcebdfssu","defaultHostName":"up-nodeapp773sruovjgj5go.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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}}]}'
+ 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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"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-073.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-30T02:43:31.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","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}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.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'
+ - '461782'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:12:53 GMT
+ - Fri, 30 Oct 2020 02:43:51 GMT
expires:
- '-1'
pragma:
@@ -827,11 +815,12 @@ interactions:
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
+ - 228a4a5f-fb54-43e0-97be-220f80ce8bd1
+ - a352ee03-b3eb-4a05-9b4c-d07f43bf5b64
+ - 0ad65fed-349d-4077-919d-5ebf13625889
+ - 1c66f8f2-0cf7-4687-9e73-1be333a3a9e5
+ - 26d79ba8-2cf3-4b7d-a3b5-3d5997bb2337
+ - b40cdfc3-33df-4551-903a-7ad7689879bc
status:
code: 200
message: OK
@@ -850,7 +839,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -858,8 +847,8 @@ interactions:
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}}'
+ US 2","properties":{"serverFarmId":5056,"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-073_5056","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
@@ -868,7 +857,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:55 GMT
+ - Fri, 30 Oct 2020 02:43:52 GMT
expires:
- '-1'
pragma:
@@ -905,7 +894,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -913,7 +902,7 @@ interactions:
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
+ 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:
@@ -924,7 +913,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:55 GMT
+ - Fri, 30 Oct 2020 02:43:53 GMT
expires:
- '-1'
pragma:
@@ -965,7 +954,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -982,7 +971,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:55 GMT
+ - Fri, 30 Oct 2020 02:43:53 GMT
expires:
- '-1'
pragma:
@@ -1019,114 +1008,108 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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
+ 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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"httpsOnly":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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/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":"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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/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":"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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":"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/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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/sites/up-nodeapp3ngwpwaky6to4q","name":"up-nodeapp3ngwpwaky6to4q","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp3ngwpwaky6to4q","state":"Running","hostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net"],"webSpace":"clitestll2w665itavskk4be-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestll2w665itavskk4be-CentralUSwebspace/sites/up-nodeapp3ngwpwaky6to4q","repositorySiteName":"up-nodeapp3ngwpwaky6to4q","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp3ngwpwaky6to4q.azurewebsites.net","up-nodeapp3ngwpwaky6to4q.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-nodeapp3ngwpwaky6to4q.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestll2w665itavskk4be/providers/Microsoft.Web/serverfarms/up-nodeplanzcxyeyslctxis","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp3ngwpwaky6to4q","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeapp3ngwpwaky6to4q\\$up-nodeapp3ngwpwaky6to4q","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":"clitestll2w665itavskk4be","defaultHostName":"up-nodeapp3ngwpwaky6to4q.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/sites/up-nodeapp6wjlg76g65ruht","name":"up-nodeapp6wjlg76g65ruht","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp6wjlg76g65ruht","state":"Running","hostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net"],"webSpace":"clitestfmkfvpjtnqimkcuns-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestfmkfvpjtnqimkcuns-CentralUSwebspace/sites/up-nodeapp6wjlg76g65ruht","repositorySiteName":"up-nodeapp6wjlg76g65ruht","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net","up-nodeapp6wjlg76g65ruht.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":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/serverfarms/up-nodeplanyzjydyzusvae6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:43:23.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":"up-nodeapp6wjlg76g65ruht","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-nodeapp6wjlg76g65ruht\\$up-nodeapp6wjlg76g65ruht","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":"clitestfmkfvpjtnqimkcuns","defaultHostName":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","slotSwapStatus":null,"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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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":"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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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
+ 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/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/sites/up-nodeapp773sruovjgj5go","name":"up-nodeapp773sruovjgj5go","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp773sruovjgj5go","state":"Running","hostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net"],"webSpace":"clitestpfvhm5kzbcebdfssu-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestpfvhm5kzbcebdfssu-CentralUSwebspace/sites/up-nodeapp773sruovjgj5go","repositorySiteName":"up-nodeapp773sruovjgj5go","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net","up-nodeapp773sruovjgj5go.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-nodeapp773sruovjgj5go.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp773sruovjgj5go.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/serverfarms/up-nodeplani6inxawfrpcxz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:56.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":"up-nodeapp773sruovjgj5go","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-nodeapp773sruovjgj5go\\$up-nodeapp773sruovjgj5go","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":"clitestpfvhm5kzbcebdfssu","defaultHostName":"up-nodeapp773sruovjgj5go.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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}}]}'
+ 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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"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-073.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-30T02:43:31.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","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}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.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'
+ - '461782'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:12:57 GMT
+ - Fri, 30 Oct 2020 02:43:55 GMT
expires:
- '-1'
pragma:
@@ -1138,11 +1121,12 @@ interactions:
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
+ - d04598e3-ed05-4a80-b899-b4e79d57411f
+ - 2f309118-2059-4a35-80bd-c920eaea1567
+ - 0390df98-682b-4115-b88a-84f4d5801bd5
+ - 6ead46ba-e360-4491-ba9e-1ceb6ce42ff9
+ - 8858ca54-b523-44d5-83f2-9ab4c3d3a9b0
+ - 775117f5-1765-4523-99c3-1c7cffff14dc
status:
code: 200
message: OK
@@ -1161,7 +1145,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1169,8 +1153,8 @@ interactions:
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}}'
+ US 2","properties":{"serverFarmId":5056,"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-073_5056","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
@@ -1179,7 +1163,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:58 GMT
+ - Fri, 30 Oct 2020 02:43:56 GMT
expires:
- '-1'
pragma:
@@ -1216,7 +1200,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1224,7 +1208,7 @@ interactions:
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
+ 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:
@@ -1235,7 +1219,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:58 GMT
+ - Fri, 30 Oct 2020 02:43:57 GMT
expires:
- '-1'
pragma:
@@ -1278,15 +1262,15 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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}}'
+ 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":5056,"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-073_5056","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -1295,7 +1279,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:13:02 GMT
+ - Fri, 30 Oct 2020 02:44:00 GMT
expires:
- '-1'
pragma:
@@ -1313,7 +1297,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1336,7 +1320,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1344,7 +1328,7 @@ interactions:
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"}}'
+ US 2","properties":{"name":null,"publishingUserName":"$up-name-exists-app000003","publishingPassword":"ixgajJvxAnujjT9eAefaRrmf5ZuNEtyBj26cRCCFekf6DdCoZX6WiDSehnnr","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-name-exists-app000003:ixgajJvxAnujjT9eAefaRrmf5ZuNEtyBj26cRCCFekf6DdCoZX6WiDSehnnr@up-name-exists-app000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1353,7 +1337,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:13:02 GMT
+ - Fri, 30 Oct 2020 02:44:00 GMT
expires:
- '-1'
pragma:
@@ -1392,7 +1376,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1400,18 +1384,18 @@ interactions:
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}}'
+ 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-073.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-30T02:43:31.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","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'
+ - '5830'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:13:03 GMT
+ - Fri, 30 Oct 2020 02:44:01 GMT
etag:
- - '"1D6A2BA2CB1ACAB"'
+ - '"1D6AE6674177580"'
expires:
- '-1'
pragma:
@@ -1452,7 +1436,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1460,21 +1444,15 @@ interactions:
response:
body:
string:
@@ -1482,11 +1460,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1938'
+ - '1283'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:13:03 GMT
+ - Fri, 30 Oct 2020 02:44:01 GMT
expires:
- '-1'
pragma:
@@ -1500,7 +1478,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1508,848 +1486,51 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIAIe5TlGu1e8oXQIAAG4EAAAKAAAALmdpdGlnbm9yZW1TPW/cMAzdDfg/CEinIPYt
- RYeOaVogQBAEbdOlKAxZpm3lbFGQeJdTf31JyXfJ0MUS+R4pfjxfqdtE0BhcvV1gUDuFnuxq/+b7
- 3cODGtkf66rrfDLazNB1u7q6bn36bXD4w9cPPrVm0ZFJdXWlvig4Ebho0UUhRiz+Oxsp2P5ADHBq
- r81eT9ZNddU+JZrR1RW4I+fuD3YZ+BzgCAv6BqYpisnxcuCrW1AP4tqQdjsX25fvp498eh1IvHEL
- POqQC2dyY92IEmhdJL1w360Zpw0s1T6l+w0LYqrneGAjKZohQpmJ0gHUa7DE3ao+Ka187kNFE6wn
- NQZc2Umw+kUT5DQ9jMhR77Kr3G6UxDw4uFERlWYTlXUvYEgNHLtDhoOSsiN/BaRW6l21syNEyoP2
- YErxb8kXnHgJ3vqGby2dqBgDLMBbp9nGZrCBn8GQCizxz84S1x2J92TwCEFPoAJ45InW1Uzrwl6Z
- H+FJjjPn3bW9FkP0UlcOI0i22J7Wpa4ulGxd32Sb2XPy0ma0sjUp42fQLvLozkpaMQsPtyrvXrSb
- UEU6jONnQbhFXj8avXT8ILG2Isu0kL+xQPcXbt67MyDFv0LP2gWKzVau0H+YoH268NuY7Q3zs3Un
- NaA5rOAo1ye6NHHXnbVbJHQrlvRGOkxAm/++yF09IkGPuBcd+uT6jl83e4+83+1X8on/CIaLrhoe
- U8xvCWZ4hSGxoDSx4GYYDkvRJQ84Q4I0Z6TEDPxiTpi/4jnaQCzsbB/L7/f18dfu3Gji6pUPmIV4
- nqmMIyMbUMjf0cP/qIH9F+I/UEsDBBQAAAAIAIe5TlEstqWhXQAAAGoAAAAOAAAAYXBwbGljYXRp
- b24ucHkliUEKgCAQAO+Cf9g86aXuQdAp+kFHEVopUlc2/X9Kc5sZzxTBB/c+cMdMXGDrIoXLGZZf
- tLXJRbTWSCHF2s7IVAtqNamWTvRwYQikzSwFNBhL5QRq7xUO4nAO6gNQSwMEFAAAAAgAh7lOUUHB
- d06PAgAAnwQAAAcAAABMSUNFTlNFXVPNbuIwEL5X6juMOLVS1L3vzQRTrE3iyDHtcgyJIV6FGNmm
- qG+/M0mgaiUk5PF8fzMOAEAuNGS2MUMwjw+PD1iB1J0/vT12EZ6aZ8ht411wh4h1f3a+jtYNL8D6
- HsamAN4E4z9M+3IjKI0/2RCwD2yAzniz/4Sjr4do2gQO3hhwB2i62h9NAtFBPXzC2fiAALePtR3s
- cIQaGjQyMWJ77JCLfFxrbxDRQh2Ca2yNpNC65nIyQxzNwcH2JsBT7AwsqhmxeB6VWlP3E6UdgBpu
- 93C1sXOXSGmitw0RJdjU9JeW3Nyue3uyswzBpxFMjEh/CRiIbCdwcq090L8ZU54v+96GLoHWEv/+
- ErEYqDjOPqFEv5yHYPrZINJYjDFG//I5NpLUmYYc57EFqlw7d/qeyc7ODhc/oLgZga3DMY7a/0wT
- qUKYg+t7d6WkjRtaSwHD79tCNTbUe/dhxmzT2xhcROuTG1rN+Wvp81XoanwkezNPEdVx5vXPeJ6c
- hIiPw9Y94AMbpX/Gvr8tveFQybV+Z4qDqKBU8k2s+AoWrMLzIoF3oTdyqwE7FCv0DuQaWLGDP6JY
- JcD/lopXFUg18Ym8zATHC1Gk2XYlildYIriQ+FkI/DiQWctRdeYTvCLGnKt0g0e2FJnQu2RiWwtd
- EPtaKmBQMqVFus2YgnKrSllxNLJC7kIUa4VSPOeFfkFprAF/wwNUG5ZlpDcRsi2GUWQXUlnulHjd
- aNjIbMWxuOTokS0zPulhxjRjIk9gxXL2ykeURKo5KvVOZuF9w6lOygx/qRayoFSpLLTCY4Khlb7j
- 30XFE2BKVDSftZL5nJfmjDA5MiG44BMV7eD7qrCFztuK31lhxVmGhBWB74lviMeH/1BLAwQUAAAA
- CACHuU5RSG68PI8BAACIAwAACQAAAFJFQURNRS5tZMVSPW/bMBDdBeg/HOLFAipr11QjgKcWbZFu
- QVCw1MliI/Jo3imJ8+tzlNw4Cbx0KsCBOL2ve1Rd12URzR5/yTFiC2x8HLEsOmSbXBRHoYWrn4Nj
- 0GPAu+C8GU84MDGCDEagQ0+BJRlBhoEeQQjSFJTx/SgDBdiNhu8zfnTWZFnQs32eEsJWRW4wPTiL
- efjFhelpc1UWown7SaNxWxY1xFlHwybqJivL0GSB10ut8jUvSjrMq5XF6n2CU/Ce0gX39exdZdp/
- WDnb7jSXJ0W4oBH9TPsE6msYgRHVGuH2ZJDl3ggdJmfvWUySu/UgErltmo4sb7yziZh62VjyzVxV
- 86aqxlIQ4wImbs4a9VJ4NcdareBaQcn9nsSF/WtB+hh/0AoMRpvqKAp2S8Kvfy3hW8QANzQlTXhN
- ne7bZ638hueYpCCeMR/CWmVQbxd8U23gUkHnYj4YwG77459NenNoKlCbuRYVuc3EjPn8jna39saN
- Qu3lzxU8OhnAhKM207mcU3+iw4Scr7wYeI9BWCt+AVBLAwQUAAAACACHuU5Rmm/OA1cAAABdAAAA
- EAAAAHJlcXVpcmVtZW50cy50eHRLzslMzra1NdMz5+Vyy0ksBrIN9Qz0jHi5MkuKUxLz0lOL8kuL
- bW2BQia8XF6ZeVmJRra2RnqGBrxcvolF2aUFwYlpqWBNvFzhqUXZVaml6SDlhiZ6hgBQSwMEFAAA
- AAgAh7lOUaOoHCbRAAAAPwEAAAsAAAAuZ2l0L2NvbmZpZ02QsW6EMBBEa/wViPIi4tQnXZFvSIlS
- GFiwlbUX7a4TcV9/G1CUK0fzNDOaYSKGT9cwbCRJifeFOAf9BpZEpb21b65ZEkKmGUwtAQVcMwZ+
- UkhrQGRY6jYHBTFHuZohe8ZUvuQfTWuxwikI/EEDW7ZC2xGnNZXOxlRGc6PqJlfv16Sxjq8TZf9+
- rwz9R8gbgvht10iln2mSPgIi9T/EONte0ClawotNEh8hzOIv10OcZeLPMn9xw8ihGN3lIArcHV8c
- g27tCbkmA6+/+inupN0DUEsDBBQAAAAIAIe5TlE3iwcfPwAAAEkAAAAQAAAALmdpdC9kZXNjcmlw
- dGlvbgvNy0vMTU1RKEotyC/OLMkvqrRWSE3JLFEoycgsVkjLzElVUE9JLU4uyiwoyczPU1coyVcA
- 6QDKpyJp0uMCAFBLAwQUAAAACACHuU5RK2lzpxkAAAAXAAAACQAAAC5naXQvSEVBRCtKTbNSKEpN
- K9bPSE1MKdbPTSwuSS3iAgBQSwMEFAAAAAgAh7lOUax80NgkAQAAwQEAAAoAAAAuZ2l0L2luZGV4
- c/EMcmZgYGACYtbYdzseM2YdNoDRDHDQuATBZskrMvOf+c/7x1U13c8bZxsLaL1aPvEpA5deemZJ
- ZnpeflEqTCXYnCqOCTAah3nzvaWuSuvz/TH73LXYZNZ8g983FUvdGdh9PJ1d/YJdiTaHucNe0S3u
- 27s/NvIV6vFTDqZyh72/vJeBM8jV0cXXVS83BWJOp4cIjMZuDkPWiuxXy26zvC77JXlnc0/6waNM
- uvqvGfgSCwpyMpMTSzLz8/QKKuH+I2xerIOvzcfvMxJPySvx3qr/eVlrm4VCKoNAUWphaWZRam5q
- XkmxXklFCQNDSJAryLuSDKYKBlz9WVz+c2fe6tt8e+vl+pxPsf/W3LggwPT3nHlqTEi20ILXl4qr
- Y5geei8CAFBLAwQUAAAACACHuU5RG7aRBOoAAAC/AQAAEAAAAC5naXQvcGFja2VkLXJlZnOdj0tu
- xCAQRPc+haWsPUAD3ZDb8GkcNJ6xhbFGyenjfJazSTZVqkU9Vb2MW0jXqXHZx0ftb6/jxrxwHsux
- LO/Tb9jX1k8bkpFcYjzVkZIogclnciq5aIxOilwBIJvGL55ofFs772Jtda53EY+69KneB3IG0Jis
- LbIH0JYwADvIbB3HIsl7KAb0U0rmje85xLWLrW7iwe36wcc8yYuyFz0UZZ1mF0KRziYCaU3wpELx
- GWI2EClLLVN8yr6FvXMbULNGTIWjhuITn6/O47rgGVNISF6aCD78MHqYd4GEaP5bxD+u/i565Z0c
- PgFQSwMEFAAAAAgAh7lOUYVP+AkXAQAA3gEAACAAAAAuZ2l0L2hvb2tzL2FwcGx5cGF0Y2gtbXNn
- LnNhbXBsZVWQXU4DMQyE33MKk64qEKQVr0hIcAcukG69m6j5U+ylLYi747RsW17H42/GXtytNz6t
- yamFWsB7AjzYWAKCy3kH1FdfGDhD77DfATuEPsfoGUIeISKRHRHY7jDB5igEW0o4Fsu9g6HmCFaI
- JlofZvPqFPTh5gSXp7CVVEHuPTtIOZkvrBmILU8EdmCs4Ikmn0bBnTNqLtVbxksFP0Aj2MTU6hLn
- ctN2BddETw0RQt7jtllxK4s3h83EwYe5rJiS3chT2Hk6UZ6gihT/lGZtKH293kQa9UqpFYyeDTlD
- yFNR5wyZveruXiaC+TTFVkIwpjll2Z0SaH32NtCDVozEYA6guwtCw3Ipj8P+v9h9Pz/q7k3/qBf1
- C1BLAwQUAAAACACHuU5R6fjKEPcBAACAAwAAHAAAAC5naXQvaG9va3MvY29tbWl0LW1zZy5zYW1w
- bGV9kl9v0zAUxZ+bT3FIK9JWTaPyiLRKgyLYC5NY90Tp5CY3ibXEzmyH8ad8d64dqhUm8RJF1/f+
- zj3HHr/IDlJlto7G0RiXCvRNtF1DqLW+h82N7BycRl5Tfg9XE3LdttKh0RVaslZUtOTJt6JpqMDh
- O+KKT4emGI/S1dCKIEzVt6TcIjCUaAm6DP+lbIgBrhYOtbDnGic+sK1PG9W6bwreko8DXGmV/iCj
- GWGdcL2FKB0ZSGt7qSoIBdF1RndGCkcnJGQJTxDKWW/POt15ZaYM2ueakplNox/ZH7dSwYPPlww+
- liHFLTcpceAQXc2znrGAoWA6VHyrR8UDIm1tFS8jnrxVvsIxBYEDsajvE0UBgRtZKSpSXZYpx9xI
- FRi+8eweNtqbDiqSnT8ZwEEUkAUJX69IkRHNAod+kOoMdcJQ+rQQs06zrTYETtMNAXA4webN9ZuL
- ydTf9ldh8P5qe3d5u/1w/enuavPu4xZHWO5PFRKb7XfT5Xy9my3nk+wvG6+xW2VdMmNcxSsgfbCI
- 9xNGx4gnqxjHIyivOaqhtl6Hss9q6z2eXmsuHL9Qi6LvGpn7i36eluWIHVmHOMYFY6ZBMdn/s1Dy
- RzgawWrj2Eev5APS/OSIkGT7zxh9ma/8NyuSWdjzZzQKq65fvsLm/3uMwvtdRb+i31BLAwQUAAAA
- CACHuU5RFmK2zx8GAAD/DAAAJAAAAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFuLnNhbXBs
- ZZVXbU8bORD+nPyK6YKUpCJZ2vtySgrXqr32eqoA9eV6UqHI2XUSl117sb2EiKa//Z6xNy9AT3fw
- ARLbM/PMPDOPzc6jtHY2HSudVtIW7XbtJDlvVeZH4fNcWK301MVvb09eDofHldRPR+32Dr3QJK9F
- WRWSZsZckMusqjx5Q0p7ObXCS/osfDYrhcbx7sz7yg3TdCIyOYbBYKr8rB4PlEnnzbG0R3MsEnbY
- j6ukzKmuKJdeZh5I4EfLOQmdU2lyNVHYn6hCukF7B3sfZw0W5agSzmFX0JW0ThlN3ay2VmpfLOhJ
- L7gQ5FUpAZe00MbJzOjcwc3E2FJ4z9YOh7giehosTO2r2rsAzuf4RqIoIgLyM+FpJq4kjaXkjNcI
- ndKZxL5EYldSh6gDOhF+5qisnYcBWVkIj112zSetMZ7MBG7429zYC8bgrZQBiJOV4ArnNF4wRGyC
- h6NP75pCGJJajAuOilpwTfYQQouyWWHIHCq5rKVd9FcEJI1zDx8dZgElmagp/lg5mLjSaOWNJaYu
- ZacuvW3fQfRyQd3dpuh7tMvJ9uiAnr94/+av0DgvZzK7CGlFrtAtlptixVS7rSYbF3RwwHzdtFs7
- jAarfpuuQEXDXCsEQyy4jIEppSf7q59Re0myQCPDV64kJZ+0q6vKWC5jzGOTYoC2gtBZgekMTlGj
- QbtF+Eleg3xmZSw4H+DIhOZ5GQz4GMK1uRi7KNY5E3jO7I1icl+P6eAHdUq3cB36/p1WC9liOle6
- E/K9bYi0Piv9y9Ph8I30L+d5tze6f+QHOiQ9PU1P03Q7Wysva2UlwewnRrw8HGbRZYPZSm8X2HoC
- xgpR62x2vuKYT7VdPaY76wjUbrFtpXJYGhaK7unjl3+8e3V+/OnjHjWf3x7tUWdt1P9G/b42/QoR
- /aLTi6UFAYGh6KRHE4F+zYe0++gh9eeWeatDpwV6oVcI4wKlY1mYOc1lB2URLgwXxp54Qhzmbmum
- Q+PNhJ6uJzm21hjTP5cw15hUb4V2CupCXeDOrAyzKSZobbbfWGhDhYEvCzDK+R5y2eETmFiRZQZy
- qtwszOheg652YfKRRBLCJzSVWmL4ARdJszJjk31YmUmdLdD+ubyOg1FANwllyVXOeqxNjqx4xhMo
- U5G7hI8VqmTBjU6ixPFy0IimILpYDFhe9X1Qm6LCmbQlTNnPpLbYtjyzEFChIg84WRferbPGUgZg
- UwN2UPVNGbc0dc4XkY43y1RDiXBJQHWD1IrADpebSc0Kg07oZuFvj68KAIAPHQk493QlijoqaPAh
- CmeYv+BlfT0EZgZNN8fOOaBnz5LW70ev0Fat1pcom8keJbeHCSsYt1arYWoY4+6FpabgQ/qScFGT
- s7i8Vb6wZTycfEnQ2mYSPkVXjZIiYswO5uvTSQDskrOzM7hc4heAAn5lWQiboWsyAXzYo2ea5VHM
- EhAqEMVqkBu6QQRR0G46omer+T1c8kCFqVzd6kOQW5ZcTAxvbTU6Hu0dG+gBQklQxA0AeUkJF/m/
- IikNLtXqSh5uPDwgcK3RZG47+x+Ufj29SUcN+d+c0efVxRR4JMIFcldi+ueH46Ph8O8P3BDrg6hf
- stoIrQIBbS2DnpmfWJ+c/Iv1yQlbL1c4DHbWp/qHaOz+Ye0nv/YPc9x9ueyuU2BxboUrJkr4Ie2H
- dt81/cMbaa2xy3vfkXWZ1s17wfCMmuKqeYIMHkOJISyeJ7Q7eNzjtxUrXlBwmafhqmpa7cPHV7+/
- f0/JizznqnduD0eHna9fCi5+hPg4H+UahQiY+33+fHm9fhY2J+/OWsrHQpu8DtcDuy/FhaQ7dndh
- rFrzf/fmb/TogPa5sJCJz2vnUUDmYuGartx6DJoodxNl8byLEuJMsG+Ohl2BzUTibbGA4AMDSoti
- +0VCk0JMGQ2/wZiu3ER93gYQ3X7jBySflJ5w2MBbfERr3G9QN1ZPPFw8HsSLYM+RMwMjSHLz0C74
- sYN3thQoF24PdaXyWsRcBmt2k/R0P9AUR+Hu/Y9rehl2r+F0n7v3vl5sdd1DBWJjyUTgfxY8ryV3
- XHhbJEMeB0bXSNcez1LEG9E/vwkuAj3LJT90/gFQSwMEFAAAAAgAh7lOUZoM98CKAAAAvQAAAB0A
- AAAuZ2l0L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZS3NURKCMAwE0P+eYoVfgTN4By8QIJUO0nSS
- 4ODtrejn7s68bS/DmPJgS2hDi1sGH7SVJ2MRWWGTpuJwQVEupAxCoWnlGTWLJRd9I4piN4a8WCsy
- 79sIV8pWRN36U74LONNYYV+Snfq1Gpm2fxPTdxM0lfVuLzM5N30IfPCER3L8qs5Y602XcpTwAVBL
- AwQUAAAACACHuU5Rz8BMAgkBAACoAQAAIAAAAC5naXQvaG9va3MvcHJlLWFwcGx5cGF0Y2guc2Ft
- cGxlVZBbTgMxDEX/s4pLOqpAkFb8VkKCPbCBzNTTREwmUezpA8Te8fQB4vfaPsf24m7dxnHNwSzM
- Am8j6OhTGQgh5w9wV2MRSMaeauxPOAQviAzf5umct4QupxRFaKuA9gRfynAqXrqAvuYEr0yXfByQ
- iNnvaHVWvYebI+Rp2Ko3Cg5RAsY8uk+qGSxeJnX1QlWlPMVxpzgdVkfNpUYvdKMi9pgJfhSeF2PJ
- BRJu612lGTT6Vs+ToFfM/idUjdI16eNcy7Clkvu7xK6MWWEXxXFwTDIVow0X8ott7rWimL0rvjLB
- ublTB8PZwOsZdml+sEaIBe4I2/wiLJZLfQB1/8Pm6/nRNq/222zMD1BLAwQUAAAACACHuU5REh1n
- KokDAABmBgAAHAAAAC5naXQvaG9va3MvcHJlLWNvbW1pdC5zYW1wbGVtVGFv2zYQ/Wz9iqsTJA1g
- 2kk/Zk0Aw8uwAEEHrAH2oS0GWjxZnCVSJSk7Lor99r2jZHcB+k0Uj3fvvXt3Z28Wa+sWsS7OijNa
- OuIX3XYNU+39lmIZbJcoedpxsNWB9rVOZCPpte/z/zVT6dvWpsRmjgwr3TRsaH2g6cam8W5Ke5tq
- cp502PQtuxTnRM/1sUrt+8bgMb/gyRjq1DcOnmLSqUe9KnFA4dhbtyHtSHdd8F2wOjG1HKPeMNkK
- OSSDRgEBF5PvKNVHiPPM8dkTO70GxVSDiSCYUcCvdvxTWbnzNO0Cq5HAvChsRcIo8E51OkQmpUZR
- fn9Y/kr3C8O7heubht7dX9wUKOuKid5o62K6k5CCm8jF5IwenU1WNyOqWzK2qmiMFG7cdulAKTCT
- X//DZfqR5/ytYKh1rNVwRSoNkafyV0VlC/B8rOjg+yyGsEFf/D7ruvy4enzMLIVzpMhpIL7T0HM9
- kE+h53mRH+GNjqW1Y/HSu8puwH7tfZPli/NXcVdS/U82Ngg++KQbrBKT4RDmBb9wSTf3F+8kbhV8
- jNQ1OlU+tISmCit0j53JsHfemp/B/gWxvIOVkARat1QF38KO2R/GcH4tvQ/c+WiTD4c5/cXwWNd4
- m/JVpUv50PmEPPCTS1mBoB0MBfMFYBnuKXa6hJVqHfAMbtRACJRxcGyyjYFicMknmp6/EmRKb+5o
- KopO6QtdXIgHPvjEp9LUw06+ojUyb1kqBt8ju0YbRihoDyal5sAzemvTZZQkwh/8vvaQ2swIClLn
- AxjYxoqDPH30DZoa6eb6MtKijyFPewpXM4rWldmOmdvXXgc+AsD4JhijxpChANJU4EPW5VDD0W4c
- 5s4M0ObFBMGJBndkLytV6rJGgFLSK+Vdc8C33Ck0EOLdLUl9o/Oj6b8XE6Kn1d/Lp6e7lZBWhi4/
- kfr3y+frS/pO+5JUeSUyXo+DVUK59+8/P/zxW/EQgg+3tMQKaodlhf5Du9emIUGCMX4Wp5eYslKL
- 6jAc+t1GLI9X47L3YTs0tmMv+9A78igdTl6NkiwvwEFzxNhhN5qdjcc5Oi0WzijwZpzLrcM45nUq
- JxHfePGunASeOebIeGsut3AJAm6Lguh/c/iTAczDW4g0k7xRb35sBGHAudq+tmhbtjSLgHE22D9D
- 9VUFZwuck3Qx+73Sthkn+NhtZZ3hF+l5Bnnq/am5ShX/AVBLAwQUAAAACACHuU5RRD/zXv8AAACg
- AQAAIgAAAC5naXQvaG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGV9j09PhDAQxe/9FE8wexK4
- ezOamL0a7qbAQBuhbTqDy/rpHXbxao/T93t/yoem86FhZ0pT4iWANrukmeBi/AL32SeBRHxT9uMV
- F2cFnmG7uN7uHaGPy+JFaKjV4dXOMw3origmL1goT1Tg4sUhRNg8rQsF4Rpo3V+Ii+s8KEubEoc0
- VD+UI1isrBo3CmXN5dWHCTbAppRjyt4KaQaznUjbqAfLQFmlI3Yvq1F7S5aYII7ufY7G9W1yG0HB
- drpYnA7bGz0h62k5LqPf/yKKlKm68dWdL2pjaujKil3FJGsyQiyoNhSP7+f28+380ex+3OzoAeF0
- MjgebdT/pzXP5hdQSwMEFAAAAAgAh7lOUQTYj7GdAgAARAUAABoAAAAuZ2l0L2hvb2tzL3ByZS1w
- dXNoLnNhbXBsZY1UYWvbMBD9HP2KmxPWDZq0KftUlsIojBVGGWNlH8a2yvY5EpUlT5Lrtr9+d5Kd
- pGOwFUJl6e7de+9Omr84KbU9CUqIObyzgA+y7QyCcu4OQuV1FyE6uEevm0cYlIygA8jS9Wm/ROj6
- oLBeAVxKY7CG8hGKrY4ExycFyCaiBx1ByQCVwuqOgqJC8Ni6iBCijH04hpIQS2ycR5D2MSpttyml
- RLQjWCpz1VA2cRjJ4YOOAQYdFUiwzi6f0LsRlL4zzqCNOeAq5gT4hUGSTPpfZe4Jhrk1zhg3cGon
- vWyRJITzlLZYw3IJ17QHrjnUQW4MSlc5nwsxbomMUTuLnHrGqTefP/47lqJJJ59k+lGx4X3gL5JJ
- 1etdXeUCWea3fYs2WZG14q9emiz1ypKtrYza2al1VLdybZu8S0wk+Z4ZZJOYUei7zmhaUxuMthiI
- OMFxMhlsa+kpzHaEp+1om2+zTQBvjSNXiWVzMa2Dkmv6GInnk2kK+Gjfl5CnMCg3cJMGdqzzeE8K
- s1/k/Z4/ekzljdtCiyHIbSLoYyC81NPi69WnAl4Nzt8x1867rafA1yshMoFNsVgXoveGFmeFEE9v
- Tjen//knBFloWJCsISn9SdrGFQkbO5U2xyXtitqJmW7gGxSLXWgBG1hQbfguZqTIitlsDh/IaoKv
- 0dAc0s65mKEJvBrT96CH+RMAIVzjAKWXtlLH6YZTL4EmfrKQg+h0yy7sqdDuWIYQbrpa5iGnCxci
- z8mfgJaK/AVwT261eo7eaJH0XfKjwLMD1KURgg7yYnNLjwnZdr80VBeWFvgCUvc6OPpB8Uesn0sV
- t5MhFFMscnbxzAislIOLl2dQvHe9rQ/K8VAsdq075odjun1FyqRXBtaZM//SLRVp91T8BlBLAwQU
- AAAACACHuU5RhOxYUd8HAAAiEwAAHAAAAC5naXQvaG9va3MvcHJlLXJlYmFzZS5zYW1wbGWdWGtv
- 20YW/Sz+iltFraWsHrY+FNu4juHYQZvtbgJkjRaLxLFH5FBiTXK4M8Moauz/3nNnhiItK+liBcjm
- 477vuY/Rk29mi6ycmVX0JHpC56ra6Gy5sjSMRzQ/PPx+zH//Tv+oy0zROf0sClEqR3u5ktSvtJxo
- uRBG9mml1C1lhnRd0u+1sbSQqdIgWmaWGiJjhbaGEpWVSwjJcP27WoxJlAnFoiQI/ChLSxbSY1UU
- /DzVqmCpJXhosSH5KbN8uc4szKZSlZM/pFYs29ZmurWuMSgWeS4TR+7kpirP1ZolVEKLQlqpzTPH
- NTiiycTR1JWxWorC3RipM2loLQx49a30Jk2ZYd4wLLQo4xV8Zrne24SGSpMsKruh9UqW/jG/d97V
- WrOnnnHUmA17jSiqHFpXam3gxJqsauOiqiwOPDDJroQlgSCLHNYmG4gopF5CNXgOSvnJHjSWuSgu
- pbUdA8ewNxa1Yf4QksxCxlrVeQIiU+eWso7hQQ1V9SLPzAp6YLBVejONovDshLVGLN4rPukPjvpR
- lpKVwER/8KRPJzSPEIIy6jl3Tvpapma2gmQzG8z7kcyNbN7dMHrMplioPIuBtZR+fnl2cUN3d1GP
- gUCHdAyDJSAFJLC1SKeuK9sanUgrYraVOaM0i6IY1sEUp6EPlqhjwOnp7Oko6h0fR/zv6yoUvNBA
- HFNLI+IIsXuNhIGWk5JIkTdAJfEgdw+BAjZV8ntSKRXCQP6U6JVBNujNL5xLT4j7U9ZxoVzuZRCJ
- nOS5qwuD9y5ggI0L1uS/rZ93d/QZHsUrRc+/m1P/NUqmZlO8RYEs+HwU3bMm2OB1pDWraMHlrTyN
- EJDrrLz2tz5bgOoESLAoDcDW2s2JKiUCIemDJ9uadLPFxeQPPHwgqx8g0trrmbii9xtzjKBaFq9l
- oT5ysKZbb0IGYwdsB3a8Bvxr12qQK0gtUWboS3bqMNLxHaWnO9oY4KdIT0pG0UbVHG0Wy9hYyBZ3
- 0B+pMt9cM8P10U5wtrH40ORn8DmU0D3dQbS2Nx32+RfY288e9rbqOnZw/XUfzJtIh/B36m6rrTXS
- q72Jevsy1yDIy9ubuqaD1BWHMhFW+vJokt77vxLW8y0jlGvUQwL9k2AYO/qX4OwEsAVob1Yb7WZk
- JXVOE0kH0FNsQrkgloOztz/9+u7w6jg8L8ySI/y0oVhhbPAo41nXeN+CyalsusKz92U/iBl+2zF9
- BIGFqLh8e73Zh+G7w8kPYpJe/W1EM6bvDTG5Tp7T0Yjv7slUeWaHs/flbBzMO7pyrzC+iG2UuSxo
- uBW5I3M4fToaeMG9d17yYO782yt7fjUaeTnAxPAb14YMDTr2f3YKJ88RpftA6mg5Vs19r9JIJf37
- 8uLl27cuit6AXl0maGTtg/voEXWfGgVHVyGEjgzfg7b/9bsm9R/3m6bxcfX/+OP7izfn1y9fX0RR
- dyi7ncKIVC5roROzdx6vBJrPQqIE2jHppm/T8zFey2TKggF+LBQpo1sYUxc8UD24n0URPaU3ZSx3
- JwevIMYL7AfTx9srVxbcryJ0hIAyBErxJBFLgVk+lBkXECWZlrFFGwUksrK5wx7yJb3bvhsjBhDL
- q1lXw9YYVg11oE+QFSuTqWuW3ClL6VG/qDOUdTvzMt5sIFizFcwvhc4z7rrAkriVBhsimNePLIpR
- T9DAayHHxe0oToCbjpkTzpeNcTDFpdN1D8xJqzMXhFLG0hihN67FBA8K1swXEg0dxsDEWykr9kQ3
- iw+ZjIHhw/Yb+p4bFl1fXZdEkAMYPHe8EuWSAaO8S6yxQdHYh5XtLkJoPWI9QQCOiXVWcUd0oMLq
- LD85iI6BP53EKgkrQqM2xKzEwhtxBmSQ6nuqzxei8TETuR+ptzxBkZMyzZa1FgugHy+jwU+vLq8v
- Xr2d+TewlX3JDPbh6De/YkNSA+uxC4XfJ9fCLbB0W6o14D08GtF0OiU0gh2kccd0YeQi6vRKbzBS
- +B8U0JJDtlt/fIRw5WdsXWXJFj4dK7Rg+DvmOJegxyQKJ5UQKsTTH0gsX3aL2k94FDbtVJdbBB+a
- gQAzbICt5jTAc055cJFIUyCdM+dZK6kYRUQvkAzF1eczsu0gnUA6AWxKE1B0FFSw2zei4fxrUXUB
- 3d2etrXhBF/ySYV1sRO+gFky0b84RAA7NgvozTfjnd3Hce8pbByQuj4CWZvtHAwe+Gy4kmiCrmXu
- CpsLZLvowoNKWBdi18xQWFxNjr3thdjKsk67SWvt1IeSG4fIhl0xKOfm0VE0xLBficq0h0b0f+mK
- Z4Tc4WQUDlR45XHoW00byuif0h4YynleCOuLIlQosN/rgUdNJpO//AbQO45Z2PSa/4+umYofCHDy
- d0Fne4lmO8/20HSe8jeGtO2XXjymnHW+7ef9I8Iu3cKZeP6AMtDN6OsiZy7q/0sA20A2cz6KzsZw
- gSv83J3THjYR38rPXL1gN6Q0+4QmH0qSfwMIleM32NCTHM8Lx5NmpatYnnr2C1UXeJuhzaaEbsx+
- 8S3/kOJKxPfqZpI6PedOKneA3d7IUMOyzK1Y7nRdv0OfB3nbHwBwSOTz/5nveLLEwq3FUkYvHim+
- 5AFdVDX6AVo3g3jvgeSDj6b7FWA/Rfg4Cn+OQNS5L6Cyx9QuzR0Hsbcweete15j5Y2PCGXrqZ2tQ
- 4se++z2maQJfboVRs/79CVBLAwQUAAAACACHuU5RksT4lkkBAAAgAgAAHQAAAC5naXQvaG9va3Mv
- cHJlLXJlY2VpdmUuc2FtcGxldVDLTsMwEDzHXzG4EX1AW8qRKkiIA/TSViK9IVVuupFNEzuK3QdC
- /Dt2yqMIcdnVemfGM9s6G66UHlrJWqyFOw06iLIqCNKYDWxWq8rBGZRiQ9hagslRba2EqZwy2g48
- K5X0TbPKt1dQJg1ZiKL4hYaTwsE6UTvslZNoB+BKZJuk7YWEXqOmF8rcD9Wr7CVpzyTw45KfakLZ
- 4Gs9aAKkBqTFyhtx0i9CiEsvqUX5+ZKrsDPgVU39mjJSO+IDxlQOR9ahr8Hjh0m6nC+eHpezeTqZ
- TZf3s8U05cxb0CxSyRWL9rLRCQweK45+4f7nRWvDooh2ogD3ZUvJ8x+oF/GYTPgL87gBcSgdaF8H
- 6nX91IzgTc1rUzZnOYnSD4lvEL81Eq1e8s5xe34dmOOxr8cDHpUOymEUfrAi800lcaejcIFRtxss
- a2K5Yh9QSwMEFAAAAAgAh7lOUe0TNjDoAgAA1AUAACQAAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29t
- bWl0LW1zZy5zYW1wbGWFVNFS2zAQfG6+4nAyhJDILu1bmXSGUkozU0qHpG8ZgmKfYxVbciUZCsPH
- 9yQ5aaCZNpMHR/bu7e1u3N1LlkImpuh0O104kYC/eFWXCIVSt2BSLWoLVkGtseYawRYIqaoqYaFU
- K6jQGL7CmLCnvCwxg+UDRCu6Gx6K4F7YwqMkrxBU7q9zUToqbqHgxp0QvmVtGUeQq7JU94HRYTIM
- aoSSa5oAIWwL6hswqtEpxgCzIuxAZ3Wja2UQhHGbYEZTdqG9KkJOArk3IOeiNGEHDlJJ9ohagbHc
- NmZE0C07iJ0vlbaYxd7LGY2SfOkXpXuObgQavQ3+JJigIGq9ZYGIVWYVxR3HsMaBkGnZkAEE1Ijr
- jEzst8yFNhaURGKv1B2uDY268K1EToujtKi3ta5ji+MICizrrRz9XASDqZLZ9mAKr7F1Y535PuFM
- 5Dkw5hZiwRFgOiK8kLSVA2yy/NGQwiXmqm2QxwdM1NI6452JbROcZIoeU9645GiaQiP7rlc1hkAY
- o8mkUenw2/xsuCkw23TJ/FmHDNfZpts8yygsmIqVxIypPGfUsVJIH8cz4b6jKZdEY6woS1LkC0Qh
- Q8iHvprCKx+IcKUUWZYhp/hOLy8uJrPFxfR88Wny5WzcO1ofTS+/X53SwZvO9PPJ0bj3ttNJGqP9
- /7BGXQIT8ZLfAiM9/VqTm9BIStscVMl1/L9Mkzimx7q9ZNCHqPdCReRqlTr45lZQM+o5LRFFRw/A
- 6MkiGcUtjgbuN8BugZREP9ynT1AazWUEMdxsFSTlKaXyV1NuCPkKRA6kNoH9fej5Ig+HMB7D613i
- 4fjYTTschAs0PHX7TC8/jHsHbuAd13BOiACcnV0tJh/Pvs7giepMAiT0TXI9P4gP388H8WEveVaA
- dzA/Suq+W9hxCecv/TMts5peAqhJMxOSkS0p0mV7SjJpfrTL6q5bziI1nz2+9DsK7w7v9j/M3fKU
- uPaCQwvX1OFwZ7xdeht0fgNQSwMEFAAAAAgAh7lOURohRCV1BAAAGg4AABgAAAAuZ2l0L2hvb2tz
- L3VwZGF0ZS5zYW1wbGWtV1FvIjcQfmZ/xdyCwoFgSdK35Eh1TdTqHipVbe6pOkVm8bJuFpuuTbi9
- tv+9n+1d2F04SJSgSDG2Z+abmW9mTPfdZCbkRKdBN+jSR0n8K1uuMk6pUo+k41ysDBlFs0zFj7SW
- TEplmOFzMmyhKcnVkrg0PBdyEUHDLcsyHM4KChfCUM5jLp74eMXix5A2wqTE8sV6CRF9hdNEsiUn
- nbKLscrmfiH5xoG5V9DMZsBiUqEdoBFEnITbSYQ9UxSuV3NACiMndqtkIhZYjN0HCyupIwBTm5oD
- OCC6t3pmSmWcSdLcaNqk3KQ833d1I7KMZpycHmwKCdO46vTkfKW0MCovIqKfCprzhK0zY88L2ijZ
- NxCNmljmPOOGQ/cJJO4ewvs9GK8CsVRzkRSnQTBrnZassLadkIBxliDzFOecGaFkVDPq1IEAR32f
- 5UzG6XPd97f5W4ZgzmXh0D8PSs6XyvCsKD0+hAkaRcktD+sIJJjBX+mFJa8nLRi8XDI5p0xIHpQ1
- Mg17F2GAGsn5E9aXYYAy8esfwkrwD5ZwA3Qpjx8DkdCfNP5GYe+XT/cPd59+D+nLtUUkgw6PU5TN
- nYtHvpYeS1nsrqQt8LgGIwrp5uyyEqT3UF6oNW2YNCO3itXa1u96tUJ4SoPOmNXfFKbeOX2AWzf0
- wfuDhXfmZlDd/ArqXASJCGpulJEIaaz8hpfeffdK9txca7bgV0es7hut8uA6SbtxTHvvbWuL3Sku
- Wqp8p8cMgj22n5Ku3x0EbYIekW5fbdhG8T7PMC6WgtvOcEpwe3FgA+fIR4nKSSpw3ZMKzSFY5eov
- Hhu7BY0adTvm1L/4u79j6KR2PxwEMdMchzXBEEUVhJ+l5cG8VlnhkP6lECJlyofDIf3mxeoY/MRI
- mfZ9gLvybma/c30dcM3iLQecO6ZYcY0dkLFkma3cc3yiKLL/Ruh1fdSyKxrhJqaPJ7ZAuij4xnM1
- Dc+f+Qk97XeUnmJtVdTI7Y8eLLSptxXwTPPmQZk6ZsbO9bGp8A8cz8sIV5U1qgw6YRfsDs70xE6e
- yXDknUOUO13Mx3FjQGJTpyo3D1XD6v1TrrrdnY7/cK10rV0rIb2DlyZf85qTnVpC79GT2lZH1GtY
- Hdm84Lw5G7BX44rPd13zZ0ShbwNlZxy6DQObxpq+9B2P3ditup3NLAi5YgtAiHa6SvZ0ENWO5VAj
- bj49Pm4lLXzE6qHY1t/JQNxVE9EP5Rd4fBSlq2ALsZ3XOsptsTdQ0tkZ+efeE556OcJZcYpuCFX9
- NJFrzMfLmzNr/UBq4Ua/EunDFfSxeYG3qNBGRwcy9quD8YIYnExVCottjpePgm0EqoGzq0ZQJey1
- O6+7cCR/t9XrgZUWXp/CCv0BprWd2JsyL+HbW+H1L6l2vE2Onwm7Z9VhgUPFtCf3Fr62tL7K6aHH
- +1EWkIFK26nxitIWQY4hUd//0d6tNSf348YN3Cv0v0epNtINJFIJ+V8+tikhSruiw4m70WznHt0W
- XGvS/Syk0Cneru7CefA/UEsDBBQAAAAIAIe5TlF3Pc0hrQAAAPAAAAARAAAALmdpdC9pbmZvL2V4
- Y2x1ZGUtjUEKwjAURPeeYqCLqth2L7gSXHkDcRHbnzaS5Jfkh9iNZzeV7obHvJkKoxHY2GhjKaJp
- WCYKa6BPb9NAjQ7sLm1pdcZr7ja8q3A3vhgyKUEUFQTZyIS6qqECoWfnyEtsS/PGAQpz4Df1AsdR
- 7ALjcT0VnaDZWs7Gj8ic7IAXlfbIPCCSgHVZ2F4xKxEKPmKf/PawTjgYjYUTsloBI0X688O5yMf2
- weq5hu/uB1BLAwQUAAAACACHuU5RKkssdJkAAADTAAAADgAAAC5naXQvbG9ncy9IRUFEjctbCsIw
- EEDRb11FNhAzfYSkRUR3IHQFk5cppJ2SpIiuXnQF3s8DF+C/WGik7rxGDKClVS3IHgfVYBhca1zf
- GuWgA2vYNJc5I7vjaiM+1j0hO5efbddltpkKhXqytFxYI5UcWjloxThogINNtPqRhUwLi7VuZRTi
- Mde4m+8gbu89ez7hsiVfxPaqkVbuyBYefUrEn5STO34AUEsDBBQAAAAIAIe5TlEqSyx0mQAAANMA
- AAAbAAAALmdpdC9sb2dzL3JlZnMvaGVhZHMvbWFzdGVyjctbCsIwEEDRb11FNhAzfYSkRUR3IHQF
- k5cppJ2SpIiuXnQF3s8DF+C/WGik7rxGDKClVS3IHgfVYBhca1zfGuWgA2vYNJc5I7vjaiM+1j0h
- O5efbddltpkKhXqytFxYI5UcWjloxThogINNtPqRhUwLi7VuZRTiMde4m+8gbu89ez7hsiVfxPaq
- kVbuyBYefUrEn5STO34AUEsDBBQAAAAIAIe5TlEqSyx0mQAAANMAAAAiAAAALmdpdC9sb2dzL3Jl
- ZnMvcmVtb3Rlcy9vcmlnaW4vSEVBRI3LWwrCMBBA0W9dRTYQM32EpEVEdyB0BZOXKaSdkqSIrl50
- Bd7PAxfgv1hopO68RgygpVUtyB4H1WAYXGtc3xrloANr2DSXOSO742ojPtY9ITuXn23XZbaZCoV6
- srRcWCOVHFo5aMU4aICDTbT6kYVMC4u1bmUU4jHXuJvvIG7vPXs+4bIlX8T2qpFW7sgWHn1KxJ+U
- kzt+AFBLAwQUAAAACACHuU5RpjpRHVIEAABNBAAANgAAAC5naXQvb2JqZWN0cy8xMC9kN2FmOTY1
- NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNgFNBLL7eAHdVt9v2zgMvuf8FUSAwDLmM3rb
- W4E8BLugCxD0gC3Xe8gCQYnlRJhtBZLSdP/9kbLkH21vt74uKBqFIiny4ydS+0rv4cMf729+U/VZ
- GweFcNKpWk7Cb23jyn7vls6Ig9yLw7fJRJWAG/mjNFbphqum1NubHczn8OF2AvgpZAlOc+sMexTV
- RaatmLaMdBfTgBfnhTzoQjJydpSuVJXEpZO1bFCumiNL00nnUD7JA6mws3CnDI6Yhah4oQ5u4H46
- nS5R7+IkCCBtFHgPdPZVuRPos2yCi8QkKQgLZR8eqVFMMIcyN1IULO3Mg5y+cOtcIR4s+Wq+NkkG
- Cf5P4Z3/7gwoYkbq42gnsrLybUB5QP4PKEK90kfmniIimPxaHzFB4UQF0hhtLBYGoUE9Dw9gLf/5
- crfi67/uQDaPWBgDylIFVSOLiB6qc0ITYdE2Rz1ldEM1Y0m0Tlqg0F9U7lEtyY5wj1sImHgXLAhy
- Z7732iQo86tRDvGd2VuY2QRmwCJN827R6CtLM6CE+zJh4KKqXvg7VNpKrOaEYMLI+dUeFT+Jpqik
- YeGbN6KObMVMGu1guNPHaISyEpZPB3l2eAcCDIv1hj+sPm/+XqyX9w/80+L+z/Xyc4drfbEO9hKs
- dJi7p0k4RFnVWCcaZNTwvAzwCg3YPdxDSMMVG0qD21oXl0r6bDLgGRwQEbEPErQcmuTmLIxTbRp5
- KIo96UtVcLJD9ZE5lr+wdJVYwtKgPlJ4brC9/f39jog2dEp3YOzX40H480ohTnPYspFbBKMPKt15
- 9ZAHKt/rRnpRJazjbo+iJGkxvp6IuQNI+jK+4F3vkPO2G3LOBqYZlEbXFOB828WKzQ//dj0FicGj
- OEgQP6U2QKajfEA1Xuhz7+OLNn1YyFzhsK8GSeatxieT0Rjtlw5Jp3caVoNeR/t77H/fPKb0S3qu
- w8qPjCW1krHXEUivUG6w/yrj6Az6DIr8nEivMa81wqb9jOGj329hYHTYVTfHqymNYzcZ/IiQ4xr0
- 2HbEjI4HxLiFBGdGN1lzpEYtHEeoqVGRAdYxusKuTL561Nse9EAD1teDJdOZneL4wpvrWxe2mpbD
- sggtNPgKjSFEEodsGM1BZzIRB6ce8WnA3QnP9p0f2YfN//Vut/i4WT0sNku++bT6gn0htLaRlzb4
- n2qeI3c0kqgZh84ZWziOIXcRFYbUNfLQLXHQsGTRJoAPCeg121fAzOLAxqEyiq4tYffOGO1lQC8N
- xv0Y5Hw+2owI+lPvpHN0ZKxbPAoH54/gC8MiCZMsWs9fzqq3OWpj6gcZjlN6smDu4Yg26+fF7yD+
- GXBRp4WVsLs4mjQgHM7t/wQ5vDQtznjPc3oCDozn48J4FY3zCNV4+/wjA1ohL+Myg+2uvTXkNq+F
- auI1iiqDu5yE0UXtGNVr6sDDI/p7hkT2CkRAVIq+egW6qFGaizM+dApGFuEO/zqs+Bc0xcBlUEsD
- BBQAAAAIAIe5TlH7famKzAIAAMcCAAA2AAAALmdpdC9vYmplY3RzLzE1LzUyYjdmZDE1N2MzYjA4
- ZmMwMDk2ZjE4ZTRhZDVlZjQyOGJjMTJiAccCOP14AY1VXW/aMBTd86T9B8tPXR+S9UObVCWrIgoF
- qe0oCZ0moUUmuQSriZ3aDhR1+++7+aKB0Wm85co+Pveccy/zVM7JyefT83fO5XOWkhUozaVw6Yn1
- iV5+/fDeiaRY8KRQzGAdC4Q4LM99MIaLRFeFshTH5BE2Lv3uX49C7yYIH0aTYOrd9O8ewqF3d3XT
- n1CyYmkBLs0YFxaCUGL/132vF4wevKAfBsORT0sKza/Bu7qYLWUGM80NzNbrtZLSzECsZn6keG70
- LN+YpRQWPMObT7Yc/0bPzUqHK65MwVIEDXMlnzdWAiZclZ9LJuIU1NHHQ9DjH8Hw293YC4bb5g+R
- ba869r60jt5oA5m1hnkrVSSznKeVHSSGeZG41KgCOzNMIauBYhmspXp06Tl62Ejs2HtAHWAfFNre
- wmcyLlLQRBXCS9NbJlgC8W1dHEiFtQk8FaCNbt/dmthI0YYCY6EgkysgAim5dFy5cPoFxWThgGnT
- ux61/EpDD50+O3/zdBm5LjBpITsWEpIzs3Rpw8xaRAnvBoiUgZ+79Hi32Gjg0goy4XX7u2d0la2x
- khFoLZVL0di6w7PzTuB+dcttHtcL7B6pWPlmF1SBloWKINjkKNhU6BwivuAQ7x97KrgCLyrfdmkN
- +yqlY+85gcquFQ5H43Epdenx9rMpNHL6BsMVkQHHI5RoI/OmSxz4xvPOTbyLKyLm5XroIlaOlh5x
- kRemzQraYUDhflmwVHemsR5oxz4I5dgl3c6bFf2Gba/ZT0Bq9f+LccZMtCSFSl16ZB3j6PJESAU9
- plH2w9QOMttv8mXSv5/2/SCcTka/aRm+utuftq5Eta3j3bfqyRWQMIMv11/tPP1TE5SdRaXmxFRZ
- mdQO07qpbt7tl8nFCZLB1QIivi9AbXyjXr3cLuGqmV2pa+VbW/Grk6PuStmukMrBnf+LPxnm5ERQ
- SwMEFAAAAAgAh7lOUYm/exHMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMvMTYvY2E5NDliOTZkYTdh
- 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
- vvfezLbXW3J3e38R1Vq9yXa0AqVWj1eXhETCmAIQpWrdQdhLTUPeYV7S1+I543Fe8irblC9xnq4r
- vorXSZ5uKPGiH2FJByFVsINQEv5rP34qsyouU16usoLuIxznyEseWKcHYE4isGmarNbIQHlW1FYa
- dEzUKL1A4NhJF5j5nLGZsdPKCOy+cy6K2SEMiZUeFn8tzlEO9U/7emlxFP0uETdWf8xBC8h/iJ1Q
- TQ/2+uaLGIW/TxyFp1/4BA3JhblQSwMEFAAAAAgAh7lOUSfS34p9AAAAeAAAADYAAAAuZ2l0L29i
- amVjdHMvMmQvYTljMzU1NTUzNDU4ZGQ5Y2JjYzI5NWY0ODNkOTI0MWExMmE4MTYBeACH/3gBKylK
- TVUwNDRgMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O3
- 1FVpfb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCkObyuZLMde+3mSSkuJifv7tvvMZBgEA9AYs
- IVBLAwQUAAAACACHuU5RPvkO0tgCAADTAgAANgAAAC5naXQvb2JqZWN0cy8zMC82NDkwZGYwMGYy
- 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
- /cWzXTS1zr2vzD9t7e9ZUEsDBBQAAAAIAIe5TlG3e9k3dAIAAG8CAAA2AAAALmdpdC9vYmplY3Rz
- 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/ASGOQ1FWaZ38ArC724lBLAwQUAAAACACHuU5R
- aWxmErUAAACwAAAANgAAAC5naXQvb2JqZWN0cy8zZC8xOWE2ZWU3OTMyNzkwNjcyOGY2NmE3MWY2
- MjBhNmQxZTc4YmZlYQGwAE//eAGdjktqxDAQBbPWKXo/JLS+lmAIgdnmEi2pZQtGlrFlmOOPc4Xs
- HgVFvdRbqwOUmT7GzgzBGqtz5IxBS2lYs7ZRa+ujkm7CrCzKGFCJjXZeBxgsxEmip5QDFeeKzeTJ
- Oh8cUjbklC8ki6BzLH2HB28LHfBbV7inv/2s60+rae9HL+Mr9fYN0mozOenQww0VorjodXLwP3UR
- z/ocn1fyyp4vqI1mhrTQOvMh3gH5TxNQSwMEFAAAAAgAh7lOUU7njgquAQAAqQEAADYAAAAuZ2l0
- 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/drkGyUEsDBBQAAAAIAIe5TlHcCWidZQAAAGAAAAA2AAAALmdp
- 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/
- Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCkNL+8oT+zcYxz5Ocvm9KeOE9sOywltQRYkFBTmZyYkl
- mfl5egWVDCuyXy27zfK67Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5
- Jd5b9T8va22zUEgFAIoUUlZQSwMEFAAAAAgAh7lOUUDzmqU1AQAAMAEAADYAAAAuZ2l0L29iamVj
- dHMvNGIvMTQyNjBhODZjYWExMmYzYzQzYjk2N2Y0MzMwNTJiNDM1ZDI3ODYBMAHP/ngBKylKTVUw
- NjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVp
- fb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+v
- oJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElBSVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76b
- Jff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXFeiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWp
- SXpGeuZ6yfl5aZnpDBNm5ef5zLZ4qF5twRjKfWT7tbwrM5BUGuuZwFSKBm3/K1pjzfGHYdrHPq+r
- 7526D2oDAGpFgGtQSwMEFAAAAAgAh7lOUQOlUni0AgAArwIAADYAAAAuZ2l0L29iamVjdHMvNGIv
- MWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDcBrwJQ/XgBXVNLb6MwEN5zpf6H
- UU6thLqq9rLamwNOYy1gZJxmc+ThBK8IjmzTqP9+x0BadSOkiPHM9xpT96aG5+efP74B/jImIdWN
- Gpy6v7u/C6XYXN6tPnUeHppHyHRjjTNHj3V7Mbby2gxPQPoepiYHVjll31T7dAMolD1r57APtINO
- WVW/w8lWg1dtBEerFJgjNF1lTyoCb6Aa3uGirMMBU/tKD3o4QQUNCpklYbvvECvouFZW4UQLlXOm
- 0RWCQmua8awGP4mDo+6VgwffKViVy8TqcWJqVdXPkHpASAW3c7hq35nRBzfe6ia4jEAPTT+2Qc3t
- uNdnvdCE8TmCGRGNjA4NBdkRnE2rj+FfTS4vY91r10XQ6oBfjx47XShO2UfB0Xdjwal+EYgwGm1M
- 1j91To0hM8wLlSyxuVC5dub81ZN2s7LjaAckx6CwrTUY48T9VzU+VIKRo+l7cw1OGzO0Oth3v24L
- ldhQ1eZNTd7muzEYj9KnRUyrmfTMS1+OXFfhJanVkiKyY+ZYmjXd7KHlsXYeL4euesALNlH/b/vj
- bskthZJv5J4ICqyEQvBXltAEVqTE91UEeya3fCcBOwTJ5QH4Bkh+gN8sTyKgfwpByxK4mGWwrEgZ
- xQOWx+kuYfkLrHE45/hZMPw4EFlyCKwLHqM4vIGMiniL8GTNUiYP0Yy2YTIP6BsugEBBhGTxLiUC
- ip0oeElRSILYOcs3AqloRnP5hNRYA/qKL1BuSZoGvhmQ7NCMCHIh5sVBsJethC1PE4rFNUWNZJ3S
- mQ89xilhWQQJychL0CmAI9RiNfTOYmG/paEemAk+sWQ8D65inkuBrxGaFvJjfs9KGgERrAz5bATP
- Fr8hZxxDHkTC4ZzOUGEHU2gfq8KWEOIOM7ipgoSSFAFxb/mn49vE/d0/uIRrF1BLAwQUAAAACACH
- uU5RObGiejcCAAAyAgAANgAAAC5naXQvb2JqZWN0cy81Ni82NGI2MmYyYjRmYzQ1NDM3MzRjMGQx
- YTI1NDBjMTViMGFmNWVkMwEyAs39eAF9ksmOm0AARHPmK/qOYqDpZpFmogDGGBiDAS9jbg00iz1g
- zGYzXx9PkmOUOpVKelJJVem1rqsByAL+NnSUApQICEo8UaSUEAHmYorERJXkHIkij2GCRJxBWZGY
- lnS0GQCW1JRmElElFYuyDIkkE6RKmOKE5rnC80jNIC/xDBmH8toBg7Yl6cFb1YCX9Mt/VM3Psadd
- v2iuHW0/5kVRDeWYLNJr/QMIWIBIhoLMA5YXeJ55ps++A+2AVQ3rMQEvf7Gf/8WKtuirAnz/km5a
- tge21hZEtuVpu31o/s4ZwIB7r6e6pumGpgV64BCnwTcj1F25PCN/Ejv7rmnZ2rY1F+K150U1tyvN
- 2iveqj1GnLtiQBe+ry4je47meNc4ipJr8sytfJrpKLnMPhHf95gt+9jxB0GqhtaZA7Q87khKg2i1
- STcM8NaVdWKF7Ye+62+0bNWJi72lYQ77NJ67PPAPQTE1KFHC/XxQp5XDXfFlVocyKlr2rD07XDvo
- H0JqDJdlbKPJCuqVHs6i9SkaTulbn745F0uuhgHf0zeW8ILrxCymY13vwuNpShmwPTSWuoFwaW+i
- TTZqfsxDWQjj42Pcl7Zu+NVkOvfsADeqZudBMyvuTaNV+mgFd7ltMwYcBe6dNUe5b1zpvJLDdcTK
- xNq66sVNTgY3h25EuSPfXm4TfXSq+FBOEg7Unf6wkodevDLgdRNUa+bPZqa3/PdizL7NyEDBnSYL
- cYGer2nyqvgF01Hb81BLAwQUAAAACACHuU5RQiaqbzQCAAAvAgAANgAAAC5naXQvb2JqZWN0cy81
- Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTViZWZmODAwNDlkMjA2MAEvAtD9eAF9UsuOokAA3DNf
- 0XezagPdDcnMZnmJiKIiInprugFxEJDHoH79OpM9brZOlUoqqVQVq67XvAMEoh9dkyQgxWqKxWlK
- MCMYyZQSSDli6EUhVROcqlRSEyYJNW2SsgMSlbFCYIxiIsYyjxHnFCYcSgqWRQWxNGUYy4wItO/O
- VQOMpD7TFizzEryxL17k5e++TZp2XFZNUhePcZZ35z4es+r6C0AERZmIEMlgNIXTqfBSX3m7pAF2
- 3s37GLz9tf3+ry2rszbPwM8v6JbteGBjb8DOsT0t2PvWty4AAQytznRN0w1N2+rbBV2UiBq+7pLz
- RV5/So0zaBqfO46mDc+eoCA6Y55BtZgEuSanH08B4HZ2sSsz0DSSKeZkSCPjuFHRnWtlu24HZOXL
- mvWX1erksGU8eY52KFyoBHW9sgl4EQqA8dp0SI7zuL0tH1Hs39eP53ObFKi6quppxU+FfLiHtXa8
- keVetB670DFPvm0e4b7oLUMAN8Lz+bpq7vN6ZHiZGErWfX/V3QuMqB4cV+WhSfv9afg8tBntDhEp
- Fiu25F7UNwc10IkAZmHlYRYHhJQx23j2ZaaG0XamuBL2FzsDtaEiL7T1dDXRWfthH6PZrLYN/yjZ
- oVoqu+mrB8+0atJhuHmOYC+2/GpU4tQgKifn8AaDbH+PXdH9sPwkXlShn9LWXaqXeze44dx03gXw
- 7vDgVej3NpZn/nsxYV9z2iVgSOKxOCav15Rpnv0BAaje8lBLAwQUAAAACACHuU5RdMQ+9MAAAAC7
- AAAANgAAAC5naXQvb2JqZWN0cy81YS81OThlMjg4M2E3MGRlYzI5MGE0ODFjYWEyMzg2ZjRjOWJi
- NTljMgG7AET/eAG1zzGOwjAQheGtc4q5ANHYmcSOhBAtBdqCE9jj8WKJxJHjFNyeaBFHoP2K/+lx
- nqZUQY/2pxYRcKP3ismbGMgh9nowfeRog+sGH7zwaJQV1TWLKzJXsNIRkQ80KGusCYQdo6fARGxw
- cKhRS5DYuK3ec4Fr4pLXHCv8LjLDLW+FBY7Th/Ou6z+et1XK2s65yPJ4tn+p3jffcp5OoGhUiEqr
- Hg5oEJtd9xdVvtVvLnOqyT3gPfQCM3VltlBLAwQUAAAACACHuU5R2mwDGS4BAAApAQAANgAAAC5n
- aXQvb2JqZWN0cy81ZS8zMTE5N2M3NzM2OTcxMzEyMWNmNjQ4ODVlYjY4YjhhZDE4NTRlNQEpAdb+
- eAErKUpNVTA2MmAwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8bZxsLaL1aPvEpVJWPp7Or
- X7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw/3JHgmvJZNFF4SEX3/VxBrhdEve
- H6ooNzEzT6+gkmFhZ00D/95rX5RE287dfF45n0k69CRUSVFqYWlmUWpual5JsV5JRQlD1vspp77t
- +iCeFmR/o+CVKKuerFs/VG1ZZlFJaWJOal5ZfEFRfkUlyGiB6+unhRubWefnqZTtcVdpUqqXPwZV
- Xp6apGekZ66XnJ+XlpnOoNHxxmaWo6Fgz/8PJ13q11gENZnMQlJprGcCUznjq3thXf28Jhflbtt+
- Nd2QitkafwAhDnunUEsDBBQAAAAIAIe5TlEW1O/tQwIAAD4CAAA2AAAALmdpdC9vYmplY3RzLzYz
- L2UzNjZjZmViMzJmOWNlNzhmYzQwM2Y2MzJmY2FjNjc5MDRiMjlhAT4Cwf14AX2RSZOiQBSE58yv
- qONMGK1sBVUR3RNTLCKoiCJie2MpkJYS2RT71w+zHCcmjxnxxXuZmVSMFR1QRfSlaygFchQJFEWS
- jBQ54VGc0kTheUTFBKmKIEMkpFDK1Ji7RQ29diCVJQyxokIaqSLOeDEaWT6FIhaxAFGspHwUxxnm
- or47Vw0w6BV8XRdJU7VV1n0Dr5I0wirEk5ReU1oWL6zNuh99S5t2eq0aeiuf07zozn08TSr2HQhQ
- GQ9IvIjBC6/yPDe6Y4KONsAqukUfg9e/2I//Yvktb4scvPySZlq2CzzLA75tuWQf7MzfPgc48Gi1
- RCNE0wnZalsnXSnrg77Tlur5Q97cpcZ+EJIubJuY95VVqPdLGPazlZ90p3BWJg7PgcuFrRbvD+vw
- 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
- YTRmOWQ5OWRhOGViM2RiYjVkMzdmNmNmMjVkZmVhY2Q4ZDABxgA5/3gBKylKTVUwtDRjMDQwMDMx
- UdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvM
- mm/w+6ZiqTtUSZCro4uvq15uCoO9olvct3d/bOQr1OOnHEzlDnt/eS9UUWJBQU5mcmJJZn6eXkEl
- w4rsV8tus7wu+yV5Z3NP+sGjTLr6r6Eqi1ILSzOLUnNT80qK9UoqShgcfG0+fp+ReEpeifdW/c/L
- WtssFFIB0M9Qf1BLAwQUAAAACACHuU5RISfNXdUCAADQAgAANgAAAC5naXQvb2JqZWN0cy85MC85
- 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/u25UEsDBBQAAAAIAIe5TlEJVBWefAIAAHcCAAA2AAAALmdpdC9v
- 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
- UEsDBBQAAAAIAIe5TlHwqBwKzAAAAMcAAAA2AAAALmdpdC9vYmplY3RzLzk1LzQ1M2RiZWQwOTMx
- 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
- Wu2UocV53F2Mwi+pcdHmREB1rdcMdR1gg9sga0UUPP4qTBMUc7IhM6tx+op71obeefcxIFBLAwQU
- AAAACACHuU5Ro0IPgeMFAADeBQAANgAAAC5naXQvb2JqZWN0cy9hNC9hNDEyOTgwM2I5ZWU5YTFl
- ZTNmYTMwMWI1NjY3OGNhYTg3MjQ5MgHeBSH6eAHdV21v2zYQ3mf/ikOKQDKqCV1XYEAAA/NaowuQ
- dUPjZRjSQKAlytYqiQZJJ/W/33Mk9eYUawr004wglsi7491zD+/Om1pt6NUPP7367hk9+4afGT3D
- H71W+6OutjtLcT6n36pcK6NKi3W9V1rYSrUpBdn1rjJk1EHnknJVSOLXw+YfmVuyiqzUjSHRFths
- i4pVDamS7E7Sci9yfF1VuWyNTOhGaoN9epm+SGnJB0Bpf+zEay9HuWhpI6lUB1itWmcq2Eh3tqmp
- rGpJAsfDuFbKegPwq6iM1dXm4AO4LN0RR3Vgky3kapULK7/kW0L7WgojyUg4AGdkI6qag2WP783+
- aHeq/bnpYEtz1aT0y5EOpmq3sH4KWAsjRyqF2SH6hNghoRHBVkvpNBTHu3Hx8hGbo3PRQ/sELEOm
- /obd5mAscahaNuqeQ4UzeAe0CSntHFHATSdUatV0zpb2AR6lwdC3JNysakApSwWAt1Uju3dluidz
- 7B+tFrnciPzjbFaVhI303lMmq9pS3b64o8WCfryYET6FBMlUhoTH96I+yLlf5i0t7UG35JbTQjJr
- Yza2lZapg0crG9liHejH8/msNyg/yZxF4r2wu4S2uIaizooqtyPzZ2dnK8gdwCThuIgFZ4HPfqjs
- jtRetsFEpKM5CUPl4B6LuZu0oDLVUhTxvFcP6/yFrX0NPOLog/7QRglF+D+n5+67V2CPYxafejuT
- tZFfB5QD5EtAMeq12sb2U4cIgr9SWwQorKhJaq204bsiWM5fVeTyr+u3l9nV729JtvdIjOYqAltV
- K4sOPYhn7mYvSJkUcpVGGULO4qjTjjxQsNcJD6iWBD3GvdsCYOJ50GDIrT4O0rxQpg+6ssD33FzQ
- uYnonOKOpmn/0KqHeJ4QBzykCY6Lun5kL6+VkcjmbG/vTZEZmYOK7JfjHkIKofyxvrl+k12vXr9f
- reEh4hkreC8RRhytWrGpuUS4fUrTlDngkj8JJ1wyJ9VTYyLBAbttIAubMhPWojrH44OH+FjaOeDP
- 9SrFcDjvy0+53NsLFMXRZ1CangN64FoVvfdemS5dcVgxaYbcOBuOSOTj6gHwDsyYhOBF9mC2VbZD
- 76mljsN31oqmqwXAlUvheGc4RYsKJX7lgkBZDplZXq2zm8v36z+XV6t3N9mvy3dvrlbve9a68opa
- baRFGlzk4ZAKtd9Y0eK+js9LCAVqVDvGeyBGKGDj1WC2UcUBWeJoEsoSdLC6dnnjFWiOVVK9F9q6
- 3htHaeCH2alDXWSsB/GJOlJTGC5UcRTPg/hE4FTh9uL7l3eESMdGucJM7To82L+sRiOGkdt4YhZg
- DE7N75x4iAPC71Qr3VItjM3sBktR5DF+2HHHH0EypPERyQeDWebpk2XxSNU3PnZwcdv7itaCv7uT
- CzD2Y8RxTCaafGJG8fCk0tsb/Ov0BrfAXNy9nrCJ05qezEpTtB8bZJnBaHgadRLe36C7fHSY8tt/
- 3Tnen4D0GcqN9j/LOLbBnzEoT2CeV0JLPGH45P1rGNgZ7LOR4mpKbeMXCebd8SlTQk5zMGDbE7Mz
- PCLoBUXoyP3ckoIajbAZoOY2wArIY2cKPY9tDbn0NeiGxxdXA+Po7NycYTjAzXWlC6XGc1gWoUEF
- W6EwBE+6ESYMPkFmNhO5re4xeGVuDHzch06q3fL1+vJmuV5l618vr1EXQmmbWPHOP6l4Tsxxw+di
- HCpnV8LR5O1B1GiNfSEP1dJ1gaUPgBvAIOlnrHODZoKWPfHOp7Cf4iZ7CX4e5DbO3JCRZYvJZoeg
- O/WttJaP7PLWHXXaxk/gC80iCnNCp7143Ku+zpD3aWhkGFZ4IETs4Qgf9Wnye4ifAi5kPKyM3cFy
- p+FfWF3kU6w8r/1cbzBBuXcesEfKi2linIhCP4JY5odrVuAn1PnuMaHbO39r2GyKn11td406kdFd
- jkLr4nIM8YYr8PiI4Z6ByE6ACQihztYgwBe1W03FHmNkEbNGuMP/G1b8C0ph9XZQSwMEFAAAAAgA
- h7lOUbIY8KNvAAAAagAAADYAAAAuZ2l0L29iamVjdHMvYTgvNmJlYWE2ZGIwNGViNzZmYTE5ZGNi
- MzhjNjdjMWM1MDIyZDJmZWIBagCV/3gBS8rJT1IwNDBkSCvKz1VIy0kszlbIzC3ILypRcANxuBIL
- ChRsIWyN+Pi8xNzU+HhNLi4HoLheUX5pSaqGkr6SJldKappCRmpOTr6GphWXAhAUpZaUFuUpKHmA
- BBXC84tyUhSVAK3eIqNQSwMEFAAAAAgAh7lOUaPpH3FbAAAAVgAAADYAAAAuZ2l0L29iamVjdHMv
- YTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3MThlMTMBVgCp/3gBKylKTVUwN2Yw
- NDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9m
- n7sWm8yab/D7pmKpOwCWBR6wUEsDBBQAAAAIAIe5TlGB+pbtzwIAAMoCAAA2AAAALmdpdC9vYmpl
- Y3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2AcoCNf14AY1VXW/a
- MBTd86T9B8tPXR+S9UOdVCWrIgoFqWWUhE6T0CKTXILVJE5thxR1+++7+aKB0ak84Sv7+Nxzjm8W
- sViQk4vTiw/W1XMSkzVIxUVq0xPjC7369umjFYh0yaNcMo11LBBisSxzQWueRqoqlKUwJI+wsekP
- 92bkO7ee/zCaejPntj9+8IfO+Pq2P6VkzeIcbIrnjUJF3Mc/lJjvwnB63ujB8fq+Nxy5tKTR/BrM
- 68v5SiQwV1zDvCgKKYSeQ7qeu4HkmVbzbKNXIjXgGd68suX5L3qm18pfc6lzFiOon0nxvDEi0P66
- XK5YGsYgjz4fgp789IbfxxPHG24FOES2PWqZ+/JaaqM0JEYBi1aqQCQZjytLSAiLPLKpljl2pplE
- VgPJEiiEfLTpOfrYSGyZe0AdYBckWt/CJyLMY1BE5qkTx3csZRGEd3VxICTWpvCUg9KqvXdrYiNF
- GwyMhoRErIGkSMmmk8qF068oJvMHTOnezajlVxp6aPfZ+Zu7y9h1gUkL2bGQkIzplU0bZsYyiHg3
- QKQM/cKmx7vFRgObVpARr9vf3aOqbE2kCEApIW2KxtYdnp13Ave7W27zWCyxe6RiZJtdUAlK5DIA
- b5OhYLNUZRDwJYdwf9tTziU4QXm3TWvYVyktc88JVLaQ+Dgaj0upS4+3y6bQyOlqDFdABhy3UKK0
- yJou8dE3nndO4lkcEyEvR0QXsXK09IinWa7brKAdGiTOmCWLVec11g/aMg9CWWZJt3NnRb9h22tm
- FJBa/XcxTpgOViSXsU2PjGN8ujxKhYQeUyj7YWoHme03+TLt38/6rufPpqM/tAxf3e0vU1Wimsbx
- 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
- A1ML9xYoxhiNUx25Aj6XV5IWGkpjdPX2DdyAs5OT8/VlXVNjqOCuVSJm5CgxOArcoBAjIaF0iHJy
- IJTmASQXznDoNlspn8YgjFVE2iBow5WGKSpltYgKuFVBkJ5cJPunN2IEBxMBOAWeo3AI0QrvhPSI
- wWpvuPTAO3u0uVT2Rttsd/aeMnvyN7yk/LImX8teYnvwZX1mQuKolTDI2T0HzruTPU81+qe9+6B6
- JeaqzX5ml9XuZ9SFlcjm1rb9cRiuqc2Hu7UPrz9Hpf7TrttC+7B9n6tzH4rf+5mWpfRfpS6BpdwK
- c0daQp9y9wsoSXPZUEsDBBQAAAAIAIe5TlHubrWMPAAAADcAAAA2AAAALmdpdC9vYmplY3RzL2M5
- L2FkMjFkMDNjNmQyMTY5NzA0NDI3MDQ4N2I4NmZiMjcwMDAxMTYwATcAyP94ASspSk1VMLZgMDQw
- MDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKQBjLRItUEsDBBQAAAAIAIe5TlEp
- o4PWsAEAAKsBAAA2AAAALmdpdC9vYmplY3RzL2QxL2FiOTIyYmVhYzczMzhiMTUxZTUwODY1NDNi
- OGVkNTAxMGViODgxAasBVP54AcWTwW7bMAyGdzaQdyC6SwzU9q71qUGBnDZsQ3crikGR6VitJToi
- tS57+lF2t7RFLjsNEGCBon7+/CjvRtrB1Yerd1VVrYrJ7PG7HCdsgY2fRlwVHbKNbhJHoYWLb4Nj
- 0GXAu+C8GZ/zwEwTyGAEOvQUWKIRZBjoCYQgpqA3vhxloADb0fBjzh+dNVkWdG1+pYiwUZFbjD+c
- xRz86EL6WV+sitGEfVJr3K6KCqZZR81G6pKVJWiyQD6dN5XKV7woaTC3tirev3awNAg9xTPV13Pt
- Ml/7Dy3nslv15UmhuKAW/UzqEnQkhhEYUWkj3D0zzQRfsDskZx9ZTJT79SAycds0HVmuvbORmHqp
- LfkGQ5W4mYE1L4A1loIYFzByc1KqFuxlvaC80Zzodklc2P+lpBN5QCswGH0hHU2C3WLz05+68HnC
- ALeUoo74hjqdc6/fkAd58kqaxHPOG8dWb1Cv/nJ+U9ZwjtKJzpsCsN18/ecivTk0JegwZira3F12
- l41cv6J5v/bGjULt+eMSnpwMYMJRyXQuv3v9eQ4JOW95KeA9BmEl/Btm10OrUEsDBBQAAAAIAIe5
- TlEOqnjxqAEAAKMBAAA2AAAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcyNjcyZDZi
- Yjc1MjBiMWJhNjhjMmMyAaMBXP54AZ2STWvcMBCGexb4PwzksoZ4Teml7KlLYE8tbUmhh5CDVh6v
- lVgar2bUNP31Hdldtvm4tKCDkUczj55X+5H28P7d2zdN01RGaPJuA18eZaAIu9HyPbAN04jQU4Lt
- r5wQttME15h+eIew+uhj/llXZrTxkO0BeVMZgAamuUVlpkRddnLaftFhqV62v+O+NOfKzDCVufgf
- ksp8GzyDLgvBRx/seLqDVXIZrECHgSJLsoIMAz2AEKQc9cSTq2v96J0VrzJ0vYAvm7OAdWUqs1ND
- gVSQjyorzMcuQd1ZRmBEHY1w82dAafeXx2P27p7FJrldDSITb9q2I8fr4F0ipl7WjkKLscnc2hJD
- q3ANLzG0jqJYHzFxe+7ULBnUM9wFXGlN8vssPh4K7mxJ47lDJzBY1dXRJNgtmJ9Oc+HzhBGuKSeN
- +4o6BOpLr5LqmZW0iOeaZ8ROT1CvfKW+rdfwmqWznWcDYLf9+s9Dentsa9AwZit6uZtCV0A+PLF5
- uwrWj0Kb13/X8OBlABsf1UznyyPQl3TMyOWTlwEhYBRWw78BLsIlEVBLAwQUAAAACACHuU5Rfbco
- kkICAAA9AgAANgAAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1
- OGI2ZDBhYmJmOQE9AsL9eAF9kUGPmkAAhXvmV8yxDVkFRhhIdpuFEQFFUBSt3BgYkBUEBxDx13e7
- 6bHpO37Je8nLl9RVVXQASeq3jlEKVEioAkU11iRRFAlNJComMc1SkUgpyugMykmMZIlrYkavHaBi
- TDKVoBiSRJIVkknCTJ5lkhSLoqYKKpklKCZU4+K+O9cMzOkVfF8XCavbOut+gFcIFSQjWeNTek1p
- WbxUbda99y1l7eRaM9qU4yQvunNPJkld/QSirMCZIGmqCl4EJAjcJ/180FEGrKKzewJe/9be/1vL
- m7wtcvDyJ4ZpOR7YWBuwcyxP34eB+cU5wIGhNRJD1w2s61tju0xdxW1xYKzQ+WPm3yFzBl1PbcfR
- sXub25vjA0c+vOEp5i/RbpCeHBCxO/S9TUmTa+Gebr1Z6ClepLhZLi9jGa+UY6Mleblq1Eq7bS/P
- KjuesWMejr0WLk8nDvjsYTW2fDBhoIzBtqVNHS3zy2G6WxTOvPbhY7lahunHKayce2ctLfMG9/eU
- ndGRV/xA5oAZypcM06fTu2VyP7OuhMxHdn6cWpdYLSKa2N26nEJibHPHIl4enKDG8+UN44UkwBsH
- pBbNx63NX5oUX8QFGmA03xgfDIa7m3vFQ8+PxBU/ol01OOlKFcdsM9rITXTv4C0esccBtIcwzbKn
- 56wFKDVxFbHRe+BfT3Qdw8QhZuKPJ8O8Stc2CPihNAvGL1YCSzPsT9vTGwferAp9Dn25Mb35v41x
- YZPGHQWBqc/X5qRKfwP/EeMBUEsDBBQAAAAIAIe5TlFZTf/5igEAAIUBAAA2AAAALmdpdC9vYmpl
- Y3RzL2RmLzkzNDg2MGViMTk2MzE1YTA1NDU3ZDdlYTgyMDU1ODQyZGExZjRmAYUBev54AZWST0vk
- QBDFPQt+hwIvDmwmeBDB0w7C3GRXXPAgHiqdimlNd7VdlR3ip7c649/RPSzkkKKr6v3e624GbuD0
- 5HjvEH5P2nOE9YDyAJgSWLF6GjPByooryn+9I7im5mD/YP9P7wXsQwg++oADCIY00DyoPSq0FDiK
- ZlQS6HkDypDHaBO7QoN3qN7U/iW4fFPMlFi8cp7AYYTWZ3I6TNCQ6aWBJ2qLzhfsecOaMwQ2Pz52
- nMOs+QMMGoVAiEB7gpsXusLywfbl6N2DKGYzxk5uj3rVJGd1Xapl8C6zcKdLx6GmWI1SY4muthwr
- 2UZXbajZras70mpeS22V5gtYzKyHcM5Rs29G9fHuzX/KfG+OoUeLvuWkxW+hvnglgF+JIlzxmO2y
- zrkl4K7saken79RsTTL37LA7m+DObfvrxRK+C+09rB0BWK8u/1ukw8d6AXY3pqpo5m4KXQH5+SnX
- 26OAflA++/54ARuvPWCcLJnWlwdlr/JxJCm/shUIgaKKJfwMt9UPDVBLAwQUAAAACACHuU5RY2Y+
- ijECAAAsAgAANgAAAC5naXQvb2JqZWN0cy9lMS9hYmY4YjdhM2JjMjU2YmYyMDQ1NGYyMmExMTk4
- MDhiNGM3YWJlOQEsAtP9eAF9kV9vokAAxO+ZT7Hv5pQ/CwtJe+miQhGFCrS2vLHLiiAIwiLIp297
- d4+Xm6fJJL/JJEPrqso5QJL4g7eMAUmjiQENYmhpghKWqOpRRSk0UqSqmi6SowTFFBmq0CQtu3DA
- DJloMmFISolGiJ6oVPsqO2pMUTSqqIlOdElDSEh6fqpbsGTNKenANr+AB/rty/zy1Hes7eaXumVN
- eZ9nOT/1ZE7r6heQVBUiKIsQgpkoi6LwlX7t5awFds6fewIe/mJP/8WyJuvyDPz8lrm2HQ+82C8g
- dGwPR6/B+ncuAAEMnUlNjM0lxntzv6FXpaPLwHTRqYD+TWmdAeP02XGwm8xii9sHWlkhMa+uMbrh
- 4MgCMJiRp1czfMWLzegvBz/heisGHLXH08ZkQwAdC+IIrQ0VMZ3FkUz2jPZXx1WnsrorArAOA53y
- qDY96/1qX7CYrra6M0bWeVjEvJi2beW6XeXWWpPFTrXPDEeGnT3GidshinsBrLnb7Fdn1Tncw3Ka
- OFQsyFdj5HnR6O6CrRoW5ZnfS0itVXgWldmiZEWzi/LY0/l7WgigWhZDA8WYvMDREKfMjsTdYNX3
- swaRyU97tH8ugo9NrCxvK0j8kZ1vH6Iv3couPfHzmy8AaHf0TSOLAkmHuzbb9rLJN/3h2Ic+ykJP
- 9+l06HNJwv5i6RzNazfdmhvZvVeLw1sY148CeMTQiIU/n6291b8fE16bNOEMBGu82q3nVfoJwdje
- uVBLAwQUAAAACACHuU5Rr7THA3ACAABrAgAANgAAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRi
- NmJiOGE1YzY3MTBmNmUzMzZjMzVhOGI4MTY3NwFrApT9eAF9Ucluo0AUnDNf0dIco8S9gAEpGQWw
- WYzteMOxfaObNsZuwCztha8fZ5bbaN7hqVSqkl69YmWeZy0wIP7W1pwDU1M1klCeQJMgpHLCiUYJ
- 0QyKUV+HCdYgoibEyjmuedECE6mYYoNjTPuYQYIowfsYMYo0RkgS68yEGsPwr56pkO8pfWxDR7AP
- MdfNRDcQM6iqEoZ0Y4+xrjEllu2hrIHDz4e4AeOsAK/sC4useJcNr5uXoqz5Wdxf0qw9SPrCyvwH
- QBrpawY2VR08QQyh8mAf+VpeAy9rfUnB6x/b+39t6TltshQ8f4099IIpmHkzsAy8qbWKFsNfvAIU
- cG1sZluW7VjW3J6PqMijo7OwQ/1wVD8upA6ulpX4QWB5Qa962lWymXtLtXPqC+NJuFkrYLh9qF08
- CN0BDaIBT8X6ynRYxjtvOcxNKwmRJNLeLaUX+JvVXPg5SkKee9o2Sp1jooByvG00vCN0TsZ5uXAd
- 2R0brk+2l8ugBwU2S2ysosHwLhbdBl+kVgk9xHrPlTNZTC+xAtyR/jFpOq1YduYUnpO1Nscn0XhF
- 5Zz8TXFdR5/weNxwviCX0ekj726fFaHEmTmJ2O1b53HDQt+XqWhvNYvC603sl0ORF111uoW4Wps4
- vOywB+/dKCfS55NNXppDmNVHH58wU527AlCpo8MC9z+Pjfc0NerHX5YbEbgzX+62T0E9G0UnlJ2M
- JOpW9nZlrpNxWg1cumv8yXl8fVPAmxu7M+V3Z8Pp4N+NKRNepxycpRCg5pXkTQu+IwL2dZkDq5M1
- f17G+VnwpkdlJtrnrFAU+wuBrPgJX6T7HVBLAwQUAAAACACHuU5REBcGajYCAAAxAgAANgAAAC5n
- aXQvb2JqZWN0cy9mMS81ODNlOGFhZjA4NWM3MjA1NGE5NzFhZjlkMmJkNDJiN2QwMzBjYgExAs79
- eAF9UUuTmkAYzJlfMXdrFeQxULWbWlBBBARRdhduAzPDQxAcwNevj5vkmErfur+vu7qqs7ZpygFA
- Af4YGCFApQrikUQ1rGkYqSQVcZrKWIRUyehcxpSgDKuY5zrEyGkAikhE5Xl6Ps6plhGo0kziRao8
- aYYyBWq8lM41xKFxKFoGcJv14FUUFShDWZt805eOtXjMhvexJ6yfnlpGuvo+zcuhGNNp1jY/gSBD
- QYCqpEDwwkOe557qs/ZAGLDKYT2m4PWv7f2/trzL+zIHL98wVpa9BYEVgL1tbfVDFK5+6xzgwLU3
- MkPXjYWu74zdBndHWi1Cw4FFJfkXkdlXXcdr29bN8hZ3wb42LZWvIHYKGiV7ZnCApo+N13VR7MKc
- F9Bk66PKP44wDatb60/cx72b585j0zidJpt8H5gH5+TsnLt1cc164nHAilJVXNTRp+1UdXtxY38m
- DY/Dfrav1TG+9nKI9zTR6TheS6VarxP7IexgcamaI3PtesaBYZJce3LwLOxu7kyj/NdomEGlOLaP
- 56WBlq7OLwS7/Siqs7oM9eb46ScSygP34U3IvXkmaF8kH6XrnXk9H8+re3/12MqOl7OtTC9LIUFU
- Tft6rdbGZR4H2leDmL/t92HgMSadbA7E2P0Uovgs3KLaxEkJA+2inSPVCSwszE6Bt3GK2hJ7qkji
- 7JyH5i5LivBGbudmrertGwfeoiD94P5sttou/70YF3UYDQSEK33praYN/gU0mOM/UEsDBBQAAAAI
- 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==
+ UEsDBBQAAAAIAGedXVFbwg3ocwIAAJoEAAAKAAAALmdpdGlnbm9yZW1UTWvcMBC9G/wfBOkpxN5L
+ 6aHHNC0EQghNk0spiyyPbWVtjZBmnVV/fWckb5pCL5Zm3nzPky/UdSJoDC7eztCrnUJPdrG/8/3m
+ 7k4NrI91td/7ZLSZYL/f1dVl69NPg/0vvn7wqTWzjmxUVxfqi4ITgYsWXRTDiEV/YyMF2x2JAQ7t
+ tTno0bqxrtqHRBO6ugK3cuzuaOeezx5WmNE3MI5RRPaXA1/djLoX1Ya02znbrnw/feTT60CijZvj
+ qkMunI0b6wYUR+si6Zn7bs0wbmCp9iHdblgQUT3FIwtJ0QQRykyUDqBegyXuVnVJaeVzHyqaYD2p
+ IeDCSoLFz5ogh+lgQPZ6F13ldqME5sHBlYqoNIuorHsBQ6pn3x0yHJSUHfkrILVS76KdHSBSHrQH
+ U4r/G3zGkZfgrW/41tKJitDDDLx1mmxsehs4DYZUYPF/cpa47ki8J4MrBD2CCuCRJ1pXEy0za2V+
+ hCc5zjbvru2lCMKXunIYQaLF9rTMdfVmkqXLqyyz9ZS8tBmtbE3K+BG0izy6M5MWzMTDrcqbF+1G
+ VJGOw/BZEG6R149Gz3tOSMytyDQtxt+YoIc327x3Z0CKf4WOuQsUm61cMX80Qfv0Zt/GLG+Yn6w7
+ qR7NcQFHuT7hpYm7/Zm7hULXIklvpMMItOlvC93VPRJ0iAfhoU+u23N2c/DI+92ekk/8IhguvGp4
+ TDHnEszwCkNiQmliwk3QH+fCSx5whgRpzkjx6TljDpi/olltICZ2ltfy/L7eP8tYNqk0nLgL5QNm
+ Qp5nK2PJyAYU4+/o4X+mgfX/GD5beVLqkY69RfUFe6HPGvmnAjnvH1BLAwQUAAAACABnnV1RjGpL
+ gWAAAABtAAAABgAAAGFwcC5weSWJsQqFMAwA90D+IXaqILoLwpse/oFjKZii2JoS6/9b8ba7CyqJ
+ QvTXQXvKooX+ryD4nGn6xDp3+sTOtQgIv3p6lbuwNYOpaeVAG8coth0RqKJcbj3JzG/taBGNa2MQ
+ HlBLAwQUAAAACABnnV1RQcF3To8CAACfBAAABwAAAExJQ0VOU0VdU81u4jAQvlfqO4w4tVLUve/N
+ BFOsTeLIMe1yDIkhXoUY2aaob78zSaBqJSTk8Xx/Mw4AQC40ZLYxQzCPD48PWIHUnT+9PXYRnppn
+ yG3jXXCHiHV/dr6O1g0vwPoexqYA3gTjP0z7ciMojT/ZELAPbIDOeLP/hKOvh2jaBA7eGHAHaLra
+ H00C0UE9fMLZ+IAAt4+1HexwhBoaNDIxYnvskIt8XGtvENFCHYJrbI2k0LrmcjJDHM3BwfYmwFPs
+ DCyqGbF4HpVaU/cTpR2AGm73cLWxc5dIaaK3DREl2NT0l5bc3K57e7KzDMGnEUyMSH8JGIhsJ3By
+ rT3QvxlTni/73oYugdYS//4SsRioOM4+oUS/nIdg+tkg0liMMUb/8jk2ktSZhhznsQWqXDt3+p7J
+ zs4OFz+guBmBrcMxjtr/TBOpQpiD63t3paSNG1pLAcPv20I1NtR792HGbNPbGFxE65MbWs35a+nz
+ VehqfCR7M08R1XHm9c94npyEiI/D1j3gAxulf8a+vy294VDJtX5nioOooFTyTaz4ChaswvMigXeh
+ N3KrATsUK/QO5BpYsYM/olglwP+WilcVSDXxibzMBMcLUaTZdiWKV1giuJD4WQj8OJBZy1F15hO8
+ Isacq3SDR7YUmdC7ZGJbC10Q+1oqYFAypUW6zZiCcqtKWXE0skLuQhRrhVI854V+QWmsAX/DA1Qb
+ lmWkNxGyLYZRZBdSWe6UeN1o2MhsxbG45OiRLTM+6WHGNGMiT2DFcvbKR5REqjkq9U5m4X3DqU7K
+ DH+pFrKgVKkstMJjgqGVvuPfRcUTYEpUNJ+1kvmcl+aMMDkyIbjgExXt4PuqsIXO24rfWWHFWYaE
+ FYHviW+Ix4f/UEsDBBQAAAAIAGedXVG/IIiLswEAAH4DAAAJAAAAUkVBRE1FLm1klZJBb9swDIXv
+ BvwfiOaSAHN892lBgJw2bEV3C4pBlelYqyUqEr0t+/Uj7dRri6LAAB8EieR776OrqiqLaE74nS8R
+ G8jGxwHLosVsk4vsKDRwswPvgvNmuL6DiRG4NwzWBHhAGDO2wAQtegqZk2GUcxzo4sIJDoPJj9qT
+ tWb3Z0wIO5lwh+mnswgU4JML4+/tTVkMJpxG8ZObsqggXrinIA4TtaPl+dLogOVQydwqz5PkUvOU
+ xQq+Tp1X6avrjtIb6utJe6Nt33qXQT6z5F2sv4g7R5sjvxNHRx5E0ykSsS8ws76mMQTlYkL7jBL3
+ CJZa/AAZEY63o7OPmU3iBvYJlah5SqV+XHhH+n7dM8fc1HVLNm+9s4kydby15OsJW/0MW31etKqZ
+ +GbyvlrBngIn9zCyOFwIyTZ+oGXojaBqKbKSEPfHz0868CVigDsak5jaSyigTmfpEv95IynKU80r
+ h4qBOjvX15stKEVPEtYFWaI3inLCNMm+EoDD7va/RTpzrjcgMnLBRoYctVFrPr5ou1974wam5u3n
+ Dfxy3MtmL0KmdepT/qLziPm6fRXwHgNnQfwXUEsDBBQAAAAIAGedXVFwKD1JFAAAABQAAAAQAAAA
+ cmVxdWlyZW1lbnRzLnR4dHPLSSzOtrM11DPQsQGShnpGvFwAUEsDBBQAAAAIAGedXVHzjpxMdQAA
+ AIkAAAANAAAALmF6dXJlL2NvbmZpZzXMQQoCMQyF4X0gd5gLDIy69gYuXLkRKTGTGYulDU0zenyL
+ IrzVx8+7zrKQp2Y3hLUW1+E4MKUt5rGJtbGuCPb0rufdZY9AqiZ1iyyaKP9iflAg03CK2d+BJbdK
+ yS1MCKkwtVi+4d8RXnLvQDYvfYep3yJ8AFBLAQIUABQAAAAIAGedXVFbwg3ocwIAAJoEAAAKAAAA
+ AAAAAAAAAAC2gQAAAAAuZ2l0aWdub3JlUEsBAhQAFAAAAAgAZ51dUYxqS4FgAAAAbQAAAAYAAAAA
+ AAAAAAAAALaBmwIAAGFwcC5weVBLAQIUABQAAAAIAGedXVFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAA
+ AAC2gR8DAABMSUNFTlNFUEsBAhQAFAAAAAgAZ51dUb8giIuzAQAAfgMAAAkAAAAAAAAAAAAAALaB
+ 0wUAAFJFQURNRS5tZFBLAQIUABQAAAAIAGedXVFwKD1JFAAAABQAAAAQAAAAAAAAAAAAAAC2ga0H
+ AAByZXF1aXJlbWVudHMudHh0UEsBAhQAFAAAAAgAZ51dUfOOnEx1AAAAiQAAAA0AAAAAAAAAAAAA
+ ALaB7wcAAC5henVyZS9jb25maWdQSwUGAAAAAAYABgBRAQAAjwgAAAAA
headers:
Accept:
- '*/*'
@@ -2360,11 +1541,11 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '47968'
+ - '2550'
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-name-exists-app000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -2374,13 +1555,14 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:13:29 GMT
+ - Fri, 30 Oct 2020 02:44:46 GMT
location:
- - https://up-name-exists-app000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-13-30Z
+ - https://up-name-exists-app000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-44-46Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=5012ff7e7a54a3f7bb618b24e05ea65d33636e03570f823daa8a04ac21e81dcb;Path=/;HttpOnly;Domain=up-name-exists-appmtxaouwvbqd7wz4osjluo6.scm.azurewebsites.net
+ - ARRAffinity=12294b2e6f4d4f4a22d10b0dcc5d414e0d16ab6c85f1b08034605c6d1bacde0d;Path=/;HttpOnly;Secure;Domain=up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.scm.azurewebsites.net
+ - ARRAffinitySameSite=12294b2e6f4d4f4a22d10b0dcc5d414e0d16ab6c85f1b08034605c6d1bacde0d;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -2398,27 +1580,26 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"36a96d7752924f70b19452869abb0a24","status":0,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Preparing deployment for commit id ''36a96d7752''.","received_time":"2020-10-30T02:44:49.4527735Z","start_time":"2020-10-30T02:44:49.4527735Z","end_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'
+ - '520'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:13:33 GMT
+ - Fri, 30 Oct 2020 02:44:50 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
+ - ARRAffinity=12294b2e6f4d4f4a22d10b0dcc5d414e0d16ab6c85f1b08034605c6d1bacde0d;Path=/;HttpOnly;Domain=up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2440,24 +1621,25 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"36a96d7752924f70b19452869abb0a24","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-30T02:44:49.4527735Z","start_time":"2020-10-30T02:44:49.8754825Z","end_time":"2020-10-30T02:44:52.5047329Z","last_success_end_time":"2020-10-30T02:44:52.5047329Z","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'
+ - '708'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:13:35 GMT
+ - Fri, 30 Oct 2020 02:44:53 GMT
server:
- Kestrel
set-cookie:
- - ARRAffinity=5012ff7e7a54a3f7bb618b24e05ea65d33636e03570f823daa8a04ac21e81dcb;Path=/;HttpOnly;Domain=up-name-exists-appmtxaouwvbqd7wz4osjluo6.scm.azurewebsites.net
+ - ARRAffinity=12294b2e6f4d4f4a22d10b0dcc5d414e0d16ab6c85f1b08034605c6d1bacde0d;Path=/;HttpOnly;Secure;Domain=up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.scm.azurewebsites.net
+ - ARRAffinitySameSite=12294b2e6f4d4f4a22d10b0dcc5d414e0d16ab6c85f1b08034605c6d1bacde0d;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-name-exists-appfnoj5o7bas7lxqj3ppjgpj.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2480,7 +1662,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2488,18 +1670,18 @@ interactions:
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}}'
+ 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-073.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-30T02:43:31.16","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-app000003\\$up-name-exists-app000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","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'
+ - '5830'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:13:36 GMT
+ - Fri, 30 Oct 2020 02:44:54 GMT
etag:
- - '"1D6A2BA2CB1ACAB"'
+ - '"1D6AE6674177580"'
expires:
- '-1'
pragma:
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 b2a2686f157..0bb82055a20 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -35,7 +35,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:37 GMT
+ - Fri, 30 Oct 2020 02:42:16 GMT
expires:
- '-1'
pragma:
@@ -72,116 +72,108 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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/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
+ 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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaup6oppcdf4whsyot/providers/Microsoft.Web/sites/up-nodeappbquuywo42pjuzo","name":"up-nodeappbquuywo42pjuzo","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbquuywo42pjuzo","state":"Running","hostNames":["up-nodeappbquuywo42pjuzo.azurewebsites.net"],"webSpace":"clitestaup6oppcdf4whsyot-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestaup6oppcdf4whsyot-CentralUSwebspace/sites/up-nodeappbquuywo42pjuzo","repositorySiteName":"up-nodeappbquuywo42pjuzo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbquuywo42pjuzo.azurewebsites.net","up-nodeappbquuywo42pjuzo.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-nodeappbquuywo42pjuzo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbquuywo42pjuzo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaup6oppcdf4whsyot/providers/Microsoft.Web/serverfarms/up-nodeplant5zykz2msgxv6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:33.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappbquuywo42pjuzo","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeappbquuywo42pjuzo\\$up-nodeappbquuywo42pjuzo","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestaup6oppcdf4whsyot","defaultHostName":"up-nodeappbquuywo42pjuzo.azurewebsites.net","slotSwapStatus":null,"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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"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-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":"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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":"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/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/sites/up-nodeapp6wjlg76g65ruht","name":"up-nodeapp6wjlg76g65ruht","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp6wjlg76g65ruht","state":"Running","hostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net"],"webSpace":"clitestfmkfvpjtnqimkcuns-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestfmkfvpjtnqimkcuns-CentralUSwebspace/sites/up-nodeapp6wjlg76g65ruht","repositorySiteName":"up-nodeapp6wjlg76g65ruht","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net","up-nodeapp6wjlg76g65ruht.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-nodeapp6wjlg76g65ruht.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/serverfarms/up-nodeplanyzjydyzusvae6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6wjlg76g65ruht","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-nodeapp6wjlg76g65ruht\\$up-nodeapp6wjlg76g65ruht","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":"clitestfmkfvpjtnqimkcuns","defaultHostName":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","slotSwapStatus":null,"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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/sites/up-nodeapplpdfzfrwj6r7p3","name":"up-nodeapplpdfzfrwj6r7p3","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapplpdfzfrwj6r7p3","state":"Running","hostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net"],"webSpace":"clitesttb2x34sdpupxs4z6p-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttb2x34sdpupxs4z6p-CentralUSwebspace/sites/up-nodeapplpdfzfrwj6r7p3","repositorySiteName":"up-nodeapplpdfzfrwj6r7p3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","up-nodeapplpdfzfrwj6r7p3.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-nodeapplpdfzfrwj6r7p3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/serverfarms/up-nodeplanoahghpyhvvcf7","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapplpdfzfrwj6r7p3","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-nodeapplpdfzfrwj6r7p3\\$up-nodeapplpdfzfrwj6r7p3","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":"clitesttb2x34sdpupxs4z6p","defaultHostName":"up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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":"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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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","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/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/sites/up-nodeapp773sruovjgj5go","name":"up-nodeapp773sruovjgj5go","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp773sruovjgj5go","state":"Running","hostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net"],"webSpace":"clitestpfvhm5kzbcebdfssu-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestpfvhm5kzbcebdfssu-CentralUSwebspace/sites/up-nodeapp773sruovjgj5go","repositorySiteName":"up-nodeapp773sruovjgj5go","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net","up-nodeapp773sruovjgj5go.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-nodeapp773sruovjgj5go.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp773sruovjgj5go.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/serverfarms/up-nodeplani6inxawfrpcxz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:56.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":"up-nodeapp773sruovjgj5go","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-nodeapp773sruovjgj5go\\$up-nodeapp773sruovjgj5go","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":"clitestpfvhm5kzbcebdfssu","defaultHostName":"up-nodeapp773sruovjgj5go.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","slotSwapStatus":null,"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:
- - '491835'
+ - '461506'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:40 GMT
+ - Fri, 30 Oct 2020 02:42:19 GMT
expires:
- '-1'
pragma:
@@ -193,11 +185,12 @@ interactions:
x-content-type-options:
- nosniff
x-ms-original-request-ids:
- - 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
+ - 5bf77128-a491-4286-b92a-79ad7a32b572
+ - 659276d4-a6a8-4c7f-9c6e-0702f64b55d6
+ - 3254383b-9e2d-49ed-9567-dc588ff230cb
+ - 6aa9db0b-52b2-42bc-a6f8-05507be29920
+ - f3cb6cfb-0908-4e92-96ee-d6c5e03cb593
+ - aa044b1e-df9e-4a4e-8ec5-bad6cb74574d
status:
code: 200
message: OK
@@ -220,7 +213,7 @@ interactions:
- -n
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.0
accept-language:
- en-US
method: POST
@@ -237,7 +230,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:40 GMT
+ - Fri, 30 Oct 2020 02:42:19 GMT
expires:
- '-1'
pragma:
@@ -274,116 +267,108 @@ interactions:
- -n
User-Agent:
- python/3.6.7 (Windows-10-10.0.19041-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.14.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/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
+ 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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/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/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaup6oppcdf4whsyot/providers/Microsoft.Web/sites/up-nodeappbquuywo42pjuzo","name":"up-nodeappbquuywo42pjuzo","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbquuywo42pjuzo","state":"Running","hostNames":["up-nodeappbquuywo42pjuzo.azurewebsites.net"],"webSpace":"clitestaup6oppcdf4whsyot-CentralUSwebspace","selfLink":"https://waws-prod-dm1-145.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestaup6oppcdf4whsyot-CentralUSwebspace/sites/up-nodeappbquuywo42pjuzo","repositorySiteName":"up-nodeappbquuywo42pjuzo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbquuywo42pjuzo.azurewebsites.net","up-nodeappbquuywo42pjuzo.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-nodeappbquuywo42pjuzo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbquuywo42pjuzo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaup6oppcdf4whsyot/providers/Microsoft.Web/serverfarms/up-nodeplant5zykz2msgxv6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:33.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappbquuywo42pjuzo","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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.149.254","possibleInboundIpAddresses":"52.173.149.254","ftpUsername":"up-nodeappbquuywo42pjuzo\\$up-nodeappbquuywo42pjuzo","ftpsHostName":"ftps://waws-prod-dm1-145.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","possibleOutboundIpAddresses":"52.173.149.254,40.78.145.43,40.122.200.61,40.77.22.57,40.122.200.161,40.77.19.89,40.77.101.75,40.77.101.182,40.122.206.112,40.77.98.66","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-145","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestaup6oppcdf4whsyot","defaultHostName":"up-nodeappbquuywo42pjuzo.azurewebsites.net","slotSwapStatus":null,"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/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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/sites/up-nodeapplpdfzfrwj6r7p3","name":"up-nodeapplpdfzfrwj6r7p3","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapplpdfzfrwj6r7p3","state":"Running","hostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net"],"webSpace":"clitesttb2x34sdpupxs4z6p-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttb2x34sdpupxs4z6p-CentralUSwebspace/sites/up-nodeapplpdfzfrwj6r7p3","repositorySiteName":"up-nodeapplpdfzfrwj6r7p3","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","up-nodeapplpdfzfrwj6r7p3.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-nodeapplpdfzfrwj6r7p3.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapplpdfzfrwj6r7p3.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttb2x34sdpupxs4z6p/providers/Microsoft.Web/serverfarms/up-nodeplanoahghpyhvvcf7","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:21.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapplpdfzfrwj6r7p3","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-nodeapplpdfzfrwj6r7p3\\$up-nodeapplpdfzfrwj6r7p3","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":"clitesttb2x34sdpupxs4z6p","defaultHostName":"up-nodeapplpdfzfrwj6r7p3.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/sites/up-nodeapp6wjlg76g65ruht","name":"up-nodeapp6wjlg76g65ruht","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp6wjlg76g65ruht","state":"Running","hostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net"],"webSpace":"clitestfmkfvpjtnqimkcuns-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestfmkfvpjtnqimkcuns-CentralUSwebspace/sites/up-nodeapp6wjlg76g65ruht","repositorySiteName":"up-nodeapp6wjlg76g65ruht","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6wjlg76g65ruht.azurewebsites.net","up-nodeapp6wjlg76g65ruht.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-nodeapp6wjlg76g65ruht.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6wjlg76g65ruht.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfmkfvpjtnqimkcuns/providers/Microsoft.Web/serverfarms/up-nodeplanyzjydyzusvae6","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:44.9233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6wjlg76g65ruht","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-nodeapp6wjlg76g65ruht\\$up-nodeapp6wjlg76g65ruht","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":"clitestfmkfvpjtnqimkcuns","defaultHostName":"up-nodeapp6wjlg76g65ruht.azurewebsites.net","slotSwapStatus":null,"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-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":"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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":"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/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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","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/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/sites/up-nodeapp773sruovjgj5go","name":"up-nodeapp773sruovjgj5go","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp773sruovjgj5go","state":"Running","hostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net"],"webSpace":"clitestpfvhm5kzbcebdfssu-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestpfvhm5kzbcebdfssu-CentralUSwebspace/sites/up-nodeapp773sruovjgj5go","repositorySiteName":"up-nodeapp773sruovjgj5go","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp773sruovjgj5go.azurewebsites.net","up-nodeapp773sruovjgj5go.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-nodeapp773sruovjgj5go.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp773sruovjgj5go.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpfvhm5kzbcebdfssu/providers/Microsoft.Web/serverfarms/up-nodeplani6inxawfrpcxz","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:41:56.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":"up-nodeapp773sruovjgj5go","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-nodeapp773sruovjgj5go\\$up-nodeapp773sruovjgj5go","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":"clitestpfvhm5kzbcebdfssu","defaultHostName":"up-nodeapp773sruovjgj5go.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","slotSwapStatus":null,"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:
- - '491835'
+ - '461506'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:54 GMT
+ - Fri, 30 Oct 2020 02:42:22 GMT
expires:
- '-1'
pragma:
@@ -395,11 +380,12 @@ interactions:
x-content-type-options:
- nosniff
x-ms-original-request-ids:
- - 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
+ - b29dc0f7-101a-4c60-9158-dc366c573f0b
+ - a5735eb7-92e8-470b-8b80-942cb794db0d
+ - 21cf7d9e-a8f3-4175-8c13-09c5afa94c7d
+ - d16fe390-79c6-4250-94f1-a75bd4f7fc36
+ - 7fed7d6e-4edc-4b7c-ae69-b2918abc3b8e
+ - b8a617ca-c68c-4257-9f31-22726cefcb00
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
index 78ff1252ce1..f87bb06d6e2 100644
--- 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:42 GMT
+ - Fri, 30 Oct 2020 02:42:29 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:41 GMT
+ - Fri, 30 Oct 2020 02:42:29 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:42 GMT
+ - Fri, 30 Oct 2020 02:42:29 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -273,16 +273,16 @@ interactions:
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}'
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":13,"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'
+ - '1438'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:42 GMT
+ - Fri, 30 Oct 2020 02:42:30 GMT
expires:
- '-1'
pragma:
@@ -319,7 +319,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -328,16 +328,16 @@ interactions:
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}'
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":13,"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'
+ - '1438'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:31 GMT
expires:
- '-1'
pragma:
@@ -378,7 +378,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -394,7 +394,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:31 GMT
expires:
- '-1'
pragma:
@@ -431,7 +431,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -503,7 +503,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -542,11 +542,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:31 GMT
expires:
- '-1'
pragma:
@@ -583,7 +583,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -597,7 +597,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:43 GMT
+ - Fri, 30 Oct 2020 02:42:31 GMT
expires:
- '-1'
pragma:
@@ -624,7 +624,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -640,7 +640,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:32 GMT
expires:
- '-1'
pragma:
@@ -669,7 +669,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -683,7 +683,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:45 GMT
+ - Fri, 30 Oct 2020 02:42:32 GMT
expires:
- '-1'
pragma:
@@ -710,7 +710,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -726,7 +726,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:44 GMT
+ - Fri, 30 Oct 2020 02:42:32 GMT
expires:
- '-1'
pragma:
@@ -761,7 +761,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -769,8 +769,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":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}}'
+ US","properties":{"serverFarmId":28749,"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_28749","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
@@ -779,7 +779,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:57 GMT
+ - Fri, 30 Oct 2020 02:42:59 GMT
expires:
- '-1'
pragma:
@@ -818,7 +818,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -826,8 +826,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":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}}'
+ US","properties":{"serverFarmId":28749,"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_28749","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
@@ -836,7 +836,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:57 GMT
+ - Fri, 30 Oct 2020 02:42:59 GMT
expires:
- '-1'
pragma:
@@ -877,7 +877,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -893,7 +893,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:57 GMT
+ - Fri, 30 Oct 2020 02:43:00 GMT
expires:
- '-1'
pragma:
@@ -918,7 +918,7 @@ interactions:
- 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",
+ "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:
@@ -938,7 +938,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -946,20 +946,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-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
+ 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-30T02:43:04.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-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}}'
+ 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:
- - '5677'
+ - '5676'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:18 GMT
+ - Fri, 30 Oct 2020 02:43:20 GMT
etag:
- - '"1D6A2B9F68B92C0"'
+ - '"1D6AE6664D5B7B5"'
expires:
- '-1'
pragma:
@@ -1002,7 +1002,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1010,18 +1010,18 @@ interactions:
response:
body:
string:
@@ -1029,11 +1029,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:18 GMT
+ - Fri, 30 Oct 2020 02:43:21 GMT
expires:
- '-1'
pragma:
@@ -1068,7 +1068,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1076,18 +1076,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-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}}'
+ 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-30T02:43:05.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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:
- - '5471'
+ - '5481'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:19 GMT
+ - Fri, 30 Oct 2020 02:43:21 GMT
etag:
- - '"1D6A2B9F68B92C0"'
+ - '"1D6AE6664D5B7B5"'
expires:
- '-1'
pragma:
@@ -1129,7 +1129,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1146,9 +1146,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:21 GMT
+ - Fri, 30 Oct 2020 02:43:23 GMT
etag:
- - '"1D6A2BA007B36A0"'
+ - '"1D6AE666F8C3B0B"'
expires:
- '-1'
pragma:
@@ -1166,7 +1166,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1189,7 +1189,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1197,7 +1197,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":"GdpSP2D5QBFlojEv6lTjbfc1d0wPduETZwkqaHkzzclAmCQi1eH4srQti0LX","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:GdpSP2D5QBFlojEv6lTjbfc1d0wPduETZwkqaHkzzclAmCQi1eH4srQti0LX@up-nodeapp000003.scm.azurewebsites.net"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"gqsdi3ud2csfkE3ehtEExxeqenDuzCtDGwRBqF47sbua9iZbbKmWiLCX7myx","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:gqsdi3ud2csfkE3ehtEExxeqenDuzCtDGwRBqF47sbua9iZbbKmWiLCX7myx@up-nodeapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1206,7 +1206,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:21 GMT
+ - Fri, 30 Oct 2020 02:43:23 GMT
expires:
- '-1'
pragma:
@@ -1245,7 +1245,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1253,18 +1253,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-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}}'
+ 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-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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:
- - '5472'
+ - '5481'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:21 GMT
+ - Fri, 30 Oct 2020 02:43:23 GMT
etag:
- - '"1D6A2BA007B36A0"'
+ - '"1D6AE666F8C3B0B"'
expires:
- '-1'
pragma:
@@ -1305,7 +1305,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1313,18 +1313,18 @@ interactions:
response:
body:
string:
@@ -1332,11 +1332,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:23 GMT
+ - Fri, 30 Oct 2020 02:43:25 GMT
expires:
- '-1'
pragma:
@@ -1358,7 +1358,7 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIAFO5TlHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
+ UEsDBBQAAAAIAE2dXVHSGjqE9gEAAJIDAAAKAAAALmdpdGlnbm9yZWVTwW7bMAy96ysI9NC1gG3s
uuPaYdhQYEO2y06BLDGKElkSRDmZ9/Uj5aTL0ENsk3x8JB+ZO3hJjlSQx2PPLxXz1FkcZyfWo1p0
iW9sLCWV1VZ3sJlj9ROC1VWr7K0w8YufhGhXg8HmKOBnX9DUVBbYpQI+Ui3zhLGiheBHAocRixZz
XOBAJp3YdDh8/fEkn4pBHTuF6ukSA/vKOdOaWFMKxIRHBE9Vx3EO6kolqXExUJEqvDp7dm3TXPNc
@@ -1367,7 +1367,7 @@ interactions:
y7MqPmrm19amSP/KCA8PkYobdPbDGu73dQpcd/bBDhsMqKnJ9vy2Y4+khGM7JTvzmIM6UJ62WZsj
i8Ump/1cMq4dwek9j22CXtuFpoyqS2atVuy3LAEdgO8QjDb7m/XykvL0Hwgp8I5WnOpXazVuUZtP
319g7+nCId0WzGF7dQm2bR7SDu6lsLR/z5db3R+J/uKjhy98DK74urSuVd/+Cf7qFJhNFeMJ+OdL
- inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgAU7lOUTHV79fVAQAAMgQAAAYA
+ inLVcNLF65GHvCRxrG0Pf9f+QNAUhsvZ9eJVfwFQSwMEFAAAAAgATZ1dUTHV79fVAQAAMgQAAAYA
AABhcHAuanOFU8tu2zAQvPsr9kYaUCQf0ksMo6fei/xAwEprialEsktSSeD437uUKZdGjfZG7czO
zj40K4KWUAX8RmQJDkD4K2pCKYYQ3AOmqBfb/WZmJr47Qu9LVg6tDKfCUMLpe8Vaa39q/K7I402h
S/zBLcBKHm3f39ImS70yCV8I2nT4/mxjuGXVDaWYbxZ8VYus7P9BXvCrtHKOWbkzmaJNA7PGN0DT
@@ -1376,7 +1376,7 @@ interactions:
iDzXVoV2gMfdIyjTwdHSm6IOgoXl9GDg6Ih0lTpG0wbN/fMSK96kr8Bwp1s4bWB5yeKcJcsmj+dc
6z+SDCfJv3U5lffGN9nyJCuwZvwAR3bWnTZ9VtUGeF84WjehCZzEGvUlo554oqrHdFRE69f+loN/
/r86OevToaDhC4DD4QCiEBfwNQnBE5zO3Njij9KuCcKA2Y/jErlC2mX0qb38hM9P+LLbbVcLl2Qu
- lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAFW5TlHrIP/GMSMAACN+AAARAAAAcGFja2Fn
+ lzLFOrDJdnHEmi/CUkg/Pdvab34DUEsDBBQAAAAIAE6dXVHrIP/GMSMAACN+AAARAAAAcGFja2Fn
ZS1sb2NrLmpzb27lfdmzqsyy5/v9K77Yj+11M4Pe6HOjRUEFBxDnhy+CSeYZBLxxzt/egLoc2bo8
q586dqxtFeCPyswasrIy0//5j7/++uWKjvrrv/765eRq5odqFIm+/+s/yzt7NYwMzy1vgr+Lf8er
tidbO8NWl193oep6qAaJUXy/uBCHiVpdU1RfdRXVlY3q+v8U14qr/yfOfTUCJFFS7WZV/rp3+1ai
@@ -1535,11 +1535,11 @@ interactions:
V99nfwlYNTnWK4vVS2YXmlhgxeFhROH+PJ7Nc7JFif14vd69/t3Dy8/HIvcH9Pc/mXt2GHk6QV/9
Vkudjvf90XMGLblxKla63ctRFGNbPwFHUdxxUW6ptcLliKUbgb7tte6kd15wa5yAPplkK8iiydVn
8wjyMld5AyNgeqfsSDCejnvufL9faQrdG7Tf+KWdq18JO7vQXonx/EtCR5eguzi6q6ztx6/e3L8d
- m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgAVblOUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
+ m6eBeCv+/yj//vkf/xdQSwMEFAAAAAgATp1dUdtqv02yAAAAMAEAAAwAAABwYWNrYWdlLmpzb25N
j0EOgyAQAO++wnCua7HGxP4GdWNJI2wW1DbGvr2CmjacmMmwy5KkqTBqQHFPxfDGFzE6p4jEJZgJ
2WlrgrzCdnZKrCflQ+J5xIhcy5q829CyXQPwin3ojO0whbzRJp/nWWx2jUWHhKZD02r8y1prnxoz
UuyQQ/6RUEIZ58aoGfuIC6igPvGxdhQlyArkaR7eU4bMlt3xWgW3Uw6We2UOXv8i2mcU4cdZg15J
- GfdO1uQLUEsDBBQAAAAIAFO5TlHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
+ GfdO1uQLUEsDBBQAAAAIAE2dXVHOck/pwQIAAD4GAAAHAAAAYmluL3d3d5VU23LTMBB991dsy4Oc
NmOH4a2ZwDBtBjpTQqYtH6DY60ZTRzKS7DbQ/ju78gWHwgBv1tFezp7V8aujtHY23Sidom5Amxyj
KD05ieAEPpm8LhFyrFDnqDOFLiE8jaJGWpBVBQuw+LVWFmORJCkhYjIPlzlu6rvxdQDEJBa7PT5W
Fp2j6DOHtkHbJ229PyjJZ77r+XxAD5WxHgprdkB0lTV6h9qD1Dk4byyC0rBs64+ohqQFDWd3slTf
@@ -1552,34 +1552,34 @@ interactions:
5DNFzi/3sGO/3qGjTEc32bafJKP/Rc88k45aL9+fny9vxFmACDTamRKTEB6HIU6JSudxB1hiQ/6g
5VrVqBKpCfuvTR4s+qh8/HqAN2Sp+/lBz4uL68vVl5vl3/oqR86i9HzPf4ra4f80y7GQden7Fi82
9e8vZ/DgH1/P4Mv4p3lknvNvpfMyn4hvHJi+fCFt8G9eSNW/EI7oX0jVvxAGk94d4acdi4EL/5g4
- iDtN2Ck/AFBLAwQUAAAACABVuU5RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
+ iDtN2Ck/AFBLAwQUAAAACABOnV1RDLILL2sAAABvAAAAHAAAAHB1YmxpYy9zdHlsZXNoZWV0cy9z
dHlsZS5jc3NLyk+pVKjmUlAoSExJycxLt1IwNSiosAYKpOXnlVgpGJoUVCgo+ZQmZ6YkKrgXJeal
pCrpKHik5pSllmQmJ+ooOBZlJuboKBQn5hXrFqcWZaZZc9VycSWCzUzOz8kvslJQNjBwMndzA0kA
- AFBLAwQUAAAACABVuU5RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
+ AFBLAwQUAAAACABOnV1RxJD7nZYAAADNAAAADwAAAHJvdXRlcy9pbmRleC5qcy2OsQ6DMAxE93zF
bQkIhb2oI+pe9QdQcWkkSKiTICTUf6+hDJbl89nvlo5B68wUI65g+mTHZPQp6aJRizg45EQshlO3
90MwslZ1iVv7wDtMhLkbyKKs1f/ADpSMrnWFV/bP5II3QqgEEyt4WlOBTWEfLZPv5aF20lY52JBc
- GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACABVuU5Ryvs205UAAADLAAAADwAAAHJv
+ GukC3Z5R8BXaXmoKfR7JSpbA6Yh90Br1A1BLAwQUAAAACABOnV1Ryvs205UAAADLAAAADwAAAHJv
dXRlcy91c2Vycy5qcy2OTQ6CMBCF9z3F7FoIKQcgLo174wUIjNgEW5yZIonx7k6R3byfyffWngC3
hZAZTkD4yoHQ2cOyVWdWbVDKgqSFw/fX3XAam7aGy/kGmZEY5sAS4uShbs3/yU8ozra2gXuOg4QU
nVIaRXEDETep4GOgSM8YR2f1WlIc4R3kAX0JUqYBy5Rv4T3TmGf0uiSR7KN3Tmd+UEsDBBQAAAAI
- AFW5TlHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
+ AE6dXVHguyoWSgAAAFQAAAAPAAAAdmlld3MvZXJyb3IucHVnS60oSc1LKVbISazMLy3h4krKyU/O
VkjOzwMKl3ApKGQY2irkphYXJ6angnhGtgqpRUX5RXrFJYklpcVAoYKiVAXlarhgcnYtFwBQSwME
- FAAAAAgAVblOUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
- SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACABV
- uU5Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
+ FAAAAAgATp1dUc7opQ8+AAAAQgAAAA8AAAB2aWV3cy9pbmRleC5wdWdLrShJzUspVshJrMwvLeHi
+ SsrJT85WSM7PAwqXcCkoZBjaKpRkluSkAtkFCuGpOcn5uakKJfkKytVg4VouAFBLAwQUAAAACABO
+ nV1Rn1KA7F0AAAB9AAAAEAAAAHZpZXdzL2xheW91dC5wdWdFjDEOgDAMA3dekS0gIXhBHwOtUauG
FpEs/T2oDCw+6yQ7VG/tAkU7ZehBFLGFF0SWTOA+dCGp5PGGOFZrAo2A8UzxxuF4/Z1+ffGqPL3L
- vYbWD3apPpOvxVBseABQSwECFAAUAAAACABTuU5R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
- AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAFO5TlEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
- AABhcHAuanNQSwECFAAUAAAACABVuU5R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
- a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACABVuU5R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
- JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgAU7lOUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
- UygAAGJpbi93d3dQSwECFAAUAAAACABVuU5RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
- cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAFW5TlHEkPudlgAAAM0AAAAP
- AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACABVuU5Ryvs205UAAADL
- AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgAVblOUeC7KhZK
- AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAFW5TlHO
- 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACABV
- uU5Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
+ vYbWD3apPpOvxVBseABQSwECFAAUAAAACABNnV1R0ho6hPYBAACSAwAACgAAAAAAAAAAAAAAtoEA
+ AAAALmdpdGlnbm9yZVBLAQIUABQAAAAIAE2dXVEx1e/X1QEAADIEAAAGAAAAAAAAAAAAAAC2gR4C
+ AABhcHAuanNQSwECFAAUAAAACABOnV1R6yD/xjEjAAAjfgAAEQAAAAAAAAAAAAAAtoEXBAAAcGFj
+ a2FnZS1sb2NrLmpzb25QSwECFAAUAAAACABOnV1R22q/TbIAAAAwAQAADAAAAAAAAAAAAAAAtoF3
+ JwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgATZ1dUc5yT+nBAgAAPgYAAAcAAAAAAAAAAAAAALaB
+ UygAAGJpbi93d3dQSwECFAAUAAAACABOnV1RDLILL2sAAABvAAAAHAAAAAAAAAAAAAAAtoE5KwAA
+ cHVibGljL3N0eWxlc2hlZXRzL3N0eWxlLmNzc1BLAQIUABQAAAAIAE6dXVHEkPudlgAAAM0AAAAP
+ AAAAAAAAAAAAAAC2gd4rAAByb3V0ZXMvaW5kZXguanNQSwECFAAUAAAACABOnV1Ryvs205UAAADL
+ AAAADwAAAAAAAAAAAAAAtoGhLAAAcm91dGVzL3VzZXJzLmpzUEsBAhQAFAAAAAgATp1dUeC7KhZK
+ AAAAVAAAAA8AAAAAAAAAAAAAALaBYy0AAHZpZXdzL2Vycm9yLnB1Z1BLAQIUABQAAAAIAE6dXVHO
+ 6KUPPgAAAEIAAAAPAAAAAAAAAAAAAAC2gdotAAB2aWV3cy9pbmRleC5wdWdQSwECFAAUAAAACABO
+ nV1Rn1KA7F0AAAB9AAAAEAAAAAAAAAAAAAAAtoFFLgAAdmlld3MvbGF5b3V0LnB1Z1BLBQYAAAAA
CwALAJYCAADQLgAAAAA=
headers:
Accept:
@@ -1595,7 +1595,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -1605,13 +1605,14 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:11:34 GMT
+ - Fri, 30 Oct 2020 02:43:40 GMT
location:
- - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-11-34Z
+ - https://up-nodeapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-43-39Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -1629,27 +1630,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","status":1,"status_text":"Building
+ and Deploying ''57c4c1b78f194027a5b38942e5adc0ee''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_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
+ - Fri, 30 Oct 2020 02:43: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
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1671,27 +1673,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","status":1,"status_text":"Building
+ and Deploying ''57c4c1b78f194027a5b38942e5adc0ee''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_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
+ - Fri, 30 Oct 2020 02:43:46 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
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1713,27 +1716,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","status":1,"status_text":"Building
+ and Deploying ''57c4c1b78f194027a5b38942e5adc0ee''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_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
+ - Fri, 30 Oct 2020 02:43:50 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
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1755,27 +1759,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","status":1,"status_text":"Building
+ and Deploying ''57c4c1b78f194027a5b38942e5adc0ee''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_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
+ - Fri, 30 Oct 2020 02:43: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
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1797,27 +1802,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","status":1,"status_text":"Building
+ and Deploying ''57c4c1b78f194027a5b38942e5adc0ee''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_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
+ - Fri, 30 Oct 2020 02:43:55 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
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1839,27 +1845,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","status":1,"status_text":"Building
+ and Deploying ''57c4c1b78f194027a5b38942e5adc0ee''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_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
+ - Fri, 30 Oct 2020 02:43:58 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
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1881,24 +1888,25 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"57c4c1b78f194027a5b38942e5adc0ee","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-30T02:43:41.4787774Z","start_time":"2020-10-30T02:43:41.5831952Z","end_time":"2020-10-30T02:43:59.0485096Z","last_success_end_time":"2020-10-30T02:43:59.0485096Z","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
+ - Fri, 30 Oct 2020 02:44:00 GMT
server:
- Kestrel
set-cookie:
- - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Domain=up-nodeappspa7qkednrkx2a.scm.azurewebsites.net
+ - ARRAffinity=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
+ - ARRAffinitySameSite=52450ff2c6c737944b4733cb77dc0f2ab33613505949f4d8c0962ee053711b7e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeapp3ngwpwaky6to4q.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -1921,7 +1929,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1929,18 +1937,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-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}}'
+ 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-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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:
- - '5472'
+ - '5481'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:57 GMT
+ - Fri, 30 Oct 2020 02:44:01 GMT
etag:
- - '"1D6A2BA007B36A0"'
+ - '"1D6AE666F8C3B0B"'
expires:
- '-1'
pragma:
@@ -1975,7 +1983,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.14.0
accept-language:
- en-US
method: GET
@@ -1983,18 +1991,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-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}}'
+ 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-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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:
- - '5472'
+ - '5481'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:57 GMT
+ - Fri, 30 Oct 2020 02:44:01 GMT
etag:
- - '"1D6A2BA007B36A0"'
+ - '"1D6AE666F8C3B0B"'
expires:
- '-1'
pragma:
@@ -2029,7 +2037,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.14.0
accept-language:
- en-US
method: GET
@@ -2037,18 +2045,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-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}}'
+ 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-30T02:43:23.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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:
- - '5472'
+ - '5481'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:58 GMT
+ - Fri, 30 Oct 2020 02:44:03 GMT
etag:
- - '"1D6A2BA007B36A0"'
+ - '"1D6AE666F8C3B0B"'
expires:
- '-1'
pragma:
@@ -2087,7 +2095,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.14.0
accept-language:
- en-US
method: POST
@@ -2095,18 +2103,18 @@ interactions:
response:
body:
string:
@@ -2114,11 +2122,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1733'
+ - '1738'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:58 GMT
+ - Fri, 30 Oct 2020 02:44:03 GMT
expires:
- '-1'
pragma:
@@ -2132,7 +2140,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -2151,7 +2159,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.14.0
accept-language:
- en-US
method: GET
@@ -2159,7 +2167,7 @@ interactions:
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
+ US","properties":{"numberOfWorkers":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:
@@ -2170,7 +2178,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:59 GMT
+ - Fri, 30 Oct 2020 02:44:04 GMT
expires:
- '-1'
pragma:
@@ -2207,7 +2215,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.14.0
accept-language:
- en-US
method: POST
@@ -2224,7 +2232,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:58 GMT
+ - Fri, 30 Oct 2020 02:44:05 GMT
expires:
- '-1'
pragma:
@@ -2261,7 +2269,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.14.0
accept-language:
- en-US
method: GET
@@ -2278,7 +2286,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:59 GMT
+ - Fri, 30 Oct 2020 02:44:04 GMT
expires:
- '-1'
pragma:
@@ -2313,7 +2321,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.14.0
accept-language:
- en-US
method: GET
@@ -2321,8 +2329,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":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}}'
+ US","properties":{"serverFarmId":28749,"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_28749","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
@@ -2331,7 +2339,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:00 GMT
+ - Fri, 30 Oct 2020 02:44:06 GMT
expires:
- '-1'
pragma:
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
index 23f8cce2f23..a9791ce7db4 100644
--- 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:05 GMT
+ - Fri, 30 Oct 2020 02:44:09 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:06 GMT
+ - Fri, 30 Oct 2020 02:44:10 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:12:06 GMT
+ - Fri, 30 Oct 2020 02:44:09 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -273,16 +273,16 @@ interactions:
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}'
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":13,"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'
+ - '1438'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:07 GMT
+ - Fri, 30 Oct 2020 02:44:10 GMT
expires:
- '-1'
pragma:
@@ -319,7 +319,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -328,16 +328,16 @@ interactions:
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}'
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":13,"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'
+ - '1438'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:07 GMT
+ - Fri, 30 Oct 2020 02:44:10 GMT
expires:
- '-1'
pragma:
@@ -378,7 +378,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -394,7 +394,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:08 GMT
+ - Fri, 30 Oct 2020 02:44:11 GMT
expires:
- '-1'
pragma:
@@ -431,7 +431,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -503,7 +503,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -542,11 +542,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:08 GMT
+ - Fri, 30 Oct 2020 02:44:12 GMT
expires:
- '-1'
pragma:
@@ -583,7 +583,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -597,7 +597,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:12:08 GMT
+ - Fri, 30 Oct 2020 02:44:12 GMT
expires:
- '-1'
pragma:
@@ -624,7 +624,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -640,7 +640,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:12:08 GMT
+ - Fri, 30 Oct 2020 02:44:12 GMT
expires:
- '-1'
pragma:
@@ -669,7 +669,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -683,7 +683,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:12:08 GMT
+ - Fri, 30 Oct 2020 02:44:12 GMT
expires:
- '-1'
pragma:
@@ -710,7 +710,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -726,7 +726,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:12:09 GMT
+ - Fri, 30 Oct 2020 02:44:12 GMT
expires:
- '-1'
pragma:
@@ -761,7 +761,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -769,8 +769,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":4075,"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_4075","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
@@ -779,7 +779,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:20 GMT
+ - Fri, 30 Oct 2020 02:44:37 GMT
expires:
- '-1'
pragma:
@@ -797,7 +797,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -818,7 +818,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -826,8 +826,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":4075,"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_4075","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
@@ -836,7 +836,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:21 GMT
+ - Fri, 30 Oct 2020 02:44:39 GMT
expires:
- '-1'
pragma:
@@ -877,7 +877,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -893,7 +893,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:21 GMT
+ - Fri, 30 Oct 2020 02:44:39 GMT
expires:
- '-1'
pragma:
@@ -918,7 +918,7 @@ interactions:
- 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",
+ "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:
@@ -938,7 +938,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -946,7 +946,7 @@ interactions:
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
+ 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-30T02:44:42.8466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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:
@@ -957,9 +957,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:42 GMT
+ - Fri, 30 Oct 2020 02:44:59 GMT
etag:
- - '"1D6A2BA27621DCB"'
+ - '"1D6AE669F129260"'
expires:
- '-1'
pragma:
@@ -1002,7 +1002,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1010,13 +1010,13 @@ interactions:
response:
body:
string:
@@ -1024,11 +1024,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1152'
+ - '1157'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:12:42 GMT
+ - Fri, 30 Oct 2020 02:45:00 GMT
expires:
- '-1'
pragma:
@@ -1063,7 +1063,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1071,18 +1071,18 @@ interactions:
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}}'
+ 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-30T02:44:43.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-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'
+ - '5571'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:42 GMT
+ - Fri, 30 Oct 2020 02:45:00 GMT
etag:
- - '"1D6A2BA27621DCB"'
+ - '"1D6AE669F129260"'
expires:
- '-1'
pragma:
@@ -1124,7 +1124,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1141,9 +1141,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:44 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
etag:
- - '"1D6A2BA323DC255"'
+ - '"1D6AE66AA53F095"'
expires:
- '-1'
pragma:
@@ -1161,7 +1161,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1184,7 +1184,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1192,7 +1192,7 @@ interactions:
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"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-pythonapp000003","publishingPassword":"DcT7RCjyhTXvbakMNCf7M7Bic6cDscCyR4fHBsLz5ol6rx90JkMEgwXocA3r","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-pythonapp000003:DcT7RCjyhTXvbakMNCf7M7Bic6cDscCyR4fHBsLz5ol6rx90JkMEgwXocA3r@up-pythonapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1201,7 +1201,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:45 GMT
+ - Fri, 30 Oct 2020 02:45:02 GMT
expires:
- '-1'
pragma:
@@ -1240,7 +1240,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1248,7 +1248,7 @@ interactions:
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}}'
+ 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-30T02:45:02.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-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
@@ -1257,9 +1257,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:12:45 GMT
+ - Fri, 30 Oct 2020 02:45:02 GMT
etag:
- - '"1D6A2BA323DC255"'
+ - '"1D6AE66AA53F095"'
expires:
- '-1'
pragma:
@@ -1300,7 +1300,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1308,13 +1308,13 @@ interactions:
response:
body:
string:
@@ -1322,11 +1322,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1152'
+ - '1157'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:12:45 GMT
+ - Fri, 30 Oct 2020 02:45:03 GMT
expires:
- '-1'
pragma:
@@ -1340,7 +1340,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1348,848 +1348,51 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIAIK5TlGu1e8oXQIAAG4EAAAKAAAALmdpdGlnbm9yZW1TPW/cMAzdDfg/CEinIPYt
- RYeOaVogQBAEbdOlKAxZpm3lbFGQeJdTf31JyXfJ0MUS+R4pfjxfqdtE0BhcvV1gUDuFnuxq/+b7
- 3cODGtkf66rrfDLazNB1u7q6bn36bXD4w9cPPrVm0ZFJdXWlvig4Ebho0UUhRiz+Oxsp2P5ADHBq
- r81eT9ZNddU+JZrR1RW4I+fuD3YZ+BzgCAv6BqYpisnxcuCrW1AP4tqQdjsX25fvp498eh1IvHEL
- POqQC2dyY92IEmhdJL1w360Zpw0s1T6l+w0LYqrneGAjKZohQpmJ0gHUa7DE3ao+Ka187kNFE6wn
- NQZc2Umw+kUT5DQ9jMhR77Kr3G6UxDw4uFERlWYTlXUvYEgNHLtDhoOSsiN/BaRW6l21syNEyoP2
- YErxb8kXnHgJ3vqGby2dqBgDLMBbp9nGZrCBn8GQCizxz84S1x2J92TwCEFPoAJ45InW1Uzrwl6Z
- H+FJjjPn3bW9FkP0UlcOI0i22J7Wpa4ulGxd32Sb2XPy0ma0sjUp42fQLvLozkpaMQsPtyrvXrSb
- UEU6jONnQbhFXj8avXT8ILG2Isu0kL+xQPcXbt67MyDFv0LP2gWKzVau0H+YoH268NuY7Q3zs3Un
- NaA5rOAo1ye6NHHXnbVbJHQrlvRGOkxAm/++yF09IkGPuBcd+uT6jl83e4+83+1X8on/CIaLrhoe
- U8xvCWZ4hSGxoDSx4GYYDkvRJQ84Q4I0Z6TEDPxiTpi/4jnaQCzsbB/L7/f18dfu3Gji6pUPmIV4
- nqmMIyMbUMjf0cP/qIH9F+I/UEsDBBQAAAAIAIK5TlEstqWhXQAAAGoAAAAOAAAAYXBwbGljYXRp
- b24ucHkliUEKgCAQAO+Cf9g86aXuQdAp+kFHEVopUlc2/X9Kc5sZzxTBB/c+cMdMXGDrIoXLGZZf
- tLXJRbTWSCHF2s7IVAtqNamWTvRwYQikzSwFNBhL5QRq7xUO4nAO6gNQSwMEFAAAAAgAgrlOUUHB
- d06PAgAAnwQAAAcAAABMSUNFTlNFXVPNbuIwEL5X6juMOLVS1L3vzQRTrE3iyDHtcgyJIV6FGNmm
- qG+/M0mgaiUk5PF8fzMOAEAuNGS2MUMwjw+PD1iB1J0/vT12EZ6aZ8ht411wh4h1f3a+jtYNL8D6
- HsamAN4E4z9M+3IjKI0/2RCwD2yAzniz/4Sjr4do2gQO3hhwB2i62h9NAtFBPXzC2fiAALePtR3s
- cIQaGjQyMWJ77JCLfFxrbxDRQh2Ca2yNpNC65nIyQxzNwcH2JsBT7AwsqhmxeB6VWlP3E6UdgBpu
- 93C1sXOXSGmitw0RJdjU9JeW3Nyue3uyswzBpxFMjEh/CRiIbCdwcq090L8ZU54v+96GLoHWEv/+
- ErEYqDjOPqFEv5yHYPrZINJYjDFG//I5NpLUmYYc57EFqlw7d/qeyc7ODhc/oLgZga3DMY7a/0wT
- qUKYg+t7d6WkjRtaSwHD79tCNTbUe/dhxmzT2xhcROuTG1rN+Wvp81XoanwkezNPEdVx5vXPeJ6c
- hIiPw9Y94AMbpX/Gvr8tveFQybV+Z4qDqKBU8k2s+AoWrMLzIoF3oTdyqwE7FCv0DuQaWLGDP6JY
- JcD/lopXFUg18Ym8zATHC1Gk2XYlildYIriQ+FkI/DiQWctRdeYTvCLGnKt0g0e2FJnQu2RiWwtd
- EPtaKmBQMqVFus2YgnKrSllxNLJC7kIUa4VSPOeFfkFprAF/wwNUG5ZlpDcRsi2GUWQXUlnulHjd
- aNjIbMWxuOTokS0zPulhxjRjIk9gxXL2ykeURKo5KvVOZuF9w6lOygx/qRayoFSpLLTCY4Khlb7j
- 30XFE2BKVDSftZL5nJfmjDA5MiG44BMV7eD7qrCFztuK31lhxVmGhBWB74lviMeH/1BLAwQUAAAA
- CACCuU5RSG68PI8BAACIAwAACQAAAFJFQURNRS5tZMVSPW/bMBDdBeg/HOLFAipr11QjgKcWbZFu
- QVCw1MliI/Jo3imJ8+tzlNw4Cbx0KsCBOL2ve1Rd12URzR5/yTFiC2x8HLEsOmSbXBRHoYWrn4Nj
- 0GPAu+C8GU84MDGCDEagQ0+BJRlBhoEeQQjSFJTx/SgDBdiNhu8zfnTWZFnQs32eEsJWRW4wPTiL
- efjFhelpc1UWown7SaNxWxY1xFlHwybqJivL0GSB10ut8jUvSjrMq5XF6n2CU/Ce0gX39exdZdp/
- WDnb7jSXJ0W4oBH9TPsE6msYgRHVGuH2ZJDl3ggdJmfvWUySu/UgErltmo4sb7yziZh62VjyzVxV
- 86aqxlIQ4wImbs4a9VJ4NcdareBaQcn9nsSF/WtB+hh/0AoMRpvqKAp2S8Kvfy3hW8QANzQlTXhN
- ne7bZ638hueYpCCeMR/CWmVQbxd8U23gUkHnYj4YwG77459NenNoKlCbuRYVuc3EjPn8jna39saN
- Qu3lzxU8OhnAhKM207mcU3+iw4Scr7wYeI9BWCt+AVBLAwQUAAAACACCuU5Rmm/OA1cAAABdAAAA
- EAAAAHJlcXVpcmVtZW50cy50eHRLzslMzra1NdMz5+Vyy0ksBrIN9Qz0jHi5MkuKUxLz0lOL8kuL
- bW2BQia8XF6ZeVmJRra2RnqGBrxcvolF2aUFwYlpqWBNvFzhqUXZVaml6SDlhiZ6hgBQSwMEFAAA
- AAgAgrlOUaOoHCbRAAAAPwEAAAsAAAAuZ2l0L2NvbmZpZ02QsW6EMBBEa/wViPIi4tQnXZFvSIlS
- GFiwlbUX7a4TcV9/G1CUK0fzNDOaYSKGT9cwbCRJifeFOAf9BpZEpb21b65ZEkKmGUwtAQVcMwZ+
- UkhrQGRY6jYHBTFHuZohe8ZUvuQfTWuxwikI/EEDW7ZC2xGnNZXOxlRGc6PqJlfv16Sxjq8TZf9+
- rwz9R8gbgvht10iln2mSPgIi9T/EONte0ClawotNEh8hzOIv10OcZeLPMn9xw8ihGN3lIArcHV8c
- g27tCbkmA6+/+inupN0DUEsDBBQAAAAIAIK5TlE3iwcfPwAAAEkAAAAQAAAALmdpdC9kZXNjcmlw
- dGlvbgvNy0vMTU1RKEotyC/OLMkvqrRWSE3JLFEoycgsVkjLzElVUE9JLU4uyiwoyczPU1coyVcA
- 6QDKpyJp0uMCAFBLAwQUAAAACACCuU5RK2lzpxkAAAAXAAAACQAAAC5naXQvSEVBRCtKTbNSKEpN
- K9bPSE1MKdbPTSwuSS3iAgBQSwMEFAAAAAgAgrlOUax80NgkAQAAwQEAAAoAAAAuZ2l0L2luZGV4
- c/EMcmZgYGACYtbYdzseM2YdNoDRDHDQuATBZskrMvOf+c/7x1U13c8bZxsLaL1aPvEpA5deemZJ
- ZnpeflEqTCXYnCqOCTAah3nzvaWuSuvz/TH73LXYZNZ8g983FUvdGdh9PJ1d/YJdiTaHucNe0S3u
- 27s/NvIV6vFTDqZyh72/vJeBM8jV0cXXVS83BWJOp4cIjMZuDkPWiuxXy26zvC77JXlnc0/6waNM
- uvqvGfgSCwpyMpMTSzLz8/QKKuH+I2xerIOvzcfvMxJPySvx3qr/eVlrm4VCKoNAUWphaWZRam5q
- XkmxXklFCQNDSJAryLuSDKYKBlz9WVz+c2fe6tt8e+vl+pxPsf/W3LggwPT3nHlqTEi20ILXl4qr
- Y5geei8CAFBLAwQUAAAACACCuU5RG7aRBOoAAAC/AQAAEAAAAC5naXQvcGFja2VkLXJlZnOdj0tu
- xCAQRPc+haWsPUAD3ZDb8GkcNJ6xhbFGyenjfJazSTZVqkU9Vb2MW0jXqXHZx0ftb6/jxrxwHsux
- LO/Tb9jX1k8bkpFcYjzVkZIogclnciq5aIxOilwBIJvGL55ofFs772Jtda53EY+69KneB3IG0Jis
- LbIH0JYwADvIbB3HIsl7KAb0U0rmje85xLWLrW7iwe36wcc8yYuyFz0UZZ1mF0KRziYCaU3wpELx
- GWI2EClLLVN8yr6FvXMbULNGTIWjhuITn6/O47rgGVNISF6aCD78MHqYd4GEaP5bxD+u/i565Z0c
- PgFQSwMEFAAAAAgAgrlOUYVP+AkXAQAA3gEAACAAAAAuZ2l0L2hvb2tzL2FwcGx5cGF0Y2gtbXNn
- LnNhbXBsZVWQXU4DMQyE33MKk64qEKQVr0hIcAcukG69m6j5U+ylLYi747RsW17H42/GXtytNz6t
- yamFWsB7AjzYWAKCy3kH1FdfGDhD77DfATuEPsfoGUIeISKRHRHY7jDB5igEW0o4Fsu9g6HmCFaI
- JlofZvPqFPTh5gSXp7CVVEHuPTtIOZkvrBmILU8EdmCs4Ikmn0bBnTNqLtVbxksFP0Aj2MTU6hLn
- ctN2BddETw0RQt7jtllxK4s3h83EwYe5rJiS3chT2Hk6UZ6gihT/lGZtKH293kQa9UqpFYyeDTlD
- yFNR5wyZveruXiaC+TTFVkIwpjll2Z0SaH32NtCDVozEYA6guwtCw3Ipj8P+v9h9Pz/q7k3/qBf1
- C1BLAwQUAAAACACCuU5R6fjKEPcBAACAAwAAHAAAAC5naXQvaG9va3MvY29tbWl0LW1zZy5zYW1w
- bGV9kl9v0zAUxZ+bT3FIK9JWTaPyiLRKgyLYC5NY90Tp5CY3ibXEzmyH8ad8d64dqhUm8RJF1/f+
- zj3HHr/IDlJlto7G0RiXCvRNtF1DqLW+h82N7BycRl5Tfg9XE3LdttKh0RVaslZUtOTJt6JpqMDh
- O+KKT4emGI/S1dCKIEzVt6TcIjCUaAm6DP+lbIgBrhYOtbDnGic+sK1PG9W6bwreko8DXGmV/iCj
- GWGdcL2FKB0ZSGt7qSoIBdF1RndGCkcnJGQJTxDKWW/POt15ZaYM2ueakplNox/ZH7dSwYPPlww+
- liHFLTcpceAQXc2znrGAoWA6VHyrR8UDIm1tFS8jnrxVvsIxBYEDsajvE0UBgRtZKSpSXZYpx9xI
- FRi+8eweNtqbDiqSnT8ZwEEUkAUJX69IkRHNAod+kOoMdcJQ+rQQs06zrTYETtMNAXA4webN9ZuL
- ydTf9ldh8P5qe3d5u/1w/enuavPu4xZHWO5PFRKb7XfT5Xy9my3nk+wvG6+xW2VdMmNcxSsgfbCI
- 9xNGx4gnqxjHIyivOaqhtl6Hss9q6z2eXmsuHL9Qi6LvGpn7i36eluWIHVmHOMYFY6ZBMdn/s1Dy
- RzgawWrj2Eev5APS/OSIkGT7zxh9ma/8NyuSWdjzZzQKq65fvsLm/3uMwvtdRb+i31BLAwQUAAAA
- CACCuU5RFmK2zx8GAAD/DAAAJAAAAC5naXQvaG9va3MvZnNtb25pdG9yLXdhdGNobWFuLnNhbXBs
- ZZVXbU8bORD+nPyK6YKUpCJZ2vtySgrXqr32eqoA9eV6UqHI2XUSl117sb2EiKa//Z6xNy9AT3fw
- ARLbM/PMPDOPzc6jtHY2HSudVtIW7XbtJDlvVeZH4fNcWK301MVvb09eDofHldRPR+32Dr3QJK9F
- WRWSZsZckMusqjx5Q0p7ObXCS/osfDYrhcbx7sz7yg3TdCIyOYbBYKr8rB4PlEnnzbG0R3MsEnbY
- j6ukzKmuKJdeZh5I4EfLOQmdU2lyNVHYn6hCukF7B3sfZw0W5agSzmFX0JW0ThlN3ay2VmpfLOhJ
- L7gQ5FUpAZe00MbJzOjcwc3E2FJ4z9YOh7giehosTO2r2rsAzuf4RqIoIgLyM+FpJq4kjaXkjNcI
- ndKZxL5EYldSh6gDOhF+5qisnYcBWVkIj112zSetMZ7MBG7429zYC8bgrZQBiJOV4ArnNF4wRGyC
- h6NP75pCGJJajAuOilpwTfYQQouyWWHIHCq5rKVd9FcEJI1zDx8dZgElmagp/lg5mLjSaOWNJaYu
- ZacuvW3fQfRyQd3dpuh7tMvJ9uiAnr94/+av0DgvZzK7CGlFrtAtlptixVS7rSYbF3RwwHzdtFs7
- jAarfpuuQEXDXCsEQyy4jIEppSf7q59Re0myQCPDV64kJZ+0q6vKWC5jzGOTYoC2gtBZgekMTlGj
- QbtF+Eleg3xmZSw4H+DIhOZ5GQz4GMK1uRi7KNY5E3jO7I1icl+P6eAHdUq3cB36/p1WC9liOle6
- E/K9bYi0Piv9y9Ph8I30L+d5tze6f+QHOiQ9PU1P03Q7Wysva2UlwewnRrw8HGbRZYPZSm8X2HoC
- xgpR62x2vuKYT7VdPaY76wjUbrFtpXJYGhaK7unjl3+8e3V+/OnjHjWf3x7tUWdt1P9G/b42/QoR
- /aLTi6UFAYGh6KRHE4F+zYe0++gh9eeWeatDpwV6oVcI4wKlY1mYOc1lB2URLgwXxp54Qhzmbmum
- Q+PNhJ6uJzm21hjTP5cw15hUb4V2CupCXeDOrAyzKSZobbbfWGhDhYEvCzDK+R5y2eETmFiRZQZy
- qtwszOheg652YfKRRBLCJzSVWmL4ARdJszJjk31YmUmdLdD+ubyOg1FANwllyVXOeqxNjqx4xhMo
- U5G7hI8VqmTBjU6ixPFy0IimILpYDFhe9X1Qm6LCmbQlTNnPpLbYtjyzEFChIg84WRferbPGUgZg
- UwN2UPVNGbc0dc4XkY43y1RDiXBJQHWD1IrADpebSc0Kg07oZuFvj68KAIAPHQk493QlijoqaPAh
- CmeYv+BlfT0EZgZNN8fOOaBnz5LW70ev0Fat1pcom8keJbeHCSsYt1arYWoY4+6FpabgQ/qScFGT
- s7i8Vb6wZTycfEnQ2mYSPkVXjZIiYswO5uvTSQDskrOzM7hc4heAAn5lWQiboWsyAXzYo2ea5VHM
- EhAqEMVqkBu6QQRR0G46omer+T1c8kCFqVzd6kOQW5ZcTAxvbTU6Hu0dG+gBQklQxA0AeUkJF/m/
- IikNLtXqSh5uPDwgcK3RZG47+x+Ufj29SUcN+d+c0efVxRR4JMIFcldi+ueH46Ph8O8P3BDrg6hf
- stoIrQIBbS2DnpmfWJ+c/Iv1yQlbL1c4DHbWp/qHaOz+Ye0nv/YPc9x9ueyuU2BxboUrJkr4Ie2H
- dt81/cMbaa2xy3vfkXWZ1s17wfCMmuKqeYIMHkOJISyeJ7Q7eNzjtxUrXlBwmafhqmpa7cPHV7+/
- f0/JizznqnduD0eHna9fCi5+hPg4H+UahQiY+33+fHm9fhY2J+/OWsrHQpu8DtcDuy/FhaQ7dndh
- rFrzf/fmb/TogPa5sJCJz2vnUUDmYuGartx6DJoodxNl8byLEuJMsG+Ohl2BzUTibbGA4AMDSoti
- +0VCk0JMGQ2/wZiu3ER93gYQ3X7jBySflJ5w2MBbfERr3G9QN1ZPPFw8HsSLYM+RMwMjSHLz0C74
- sYN3thQoF24PdaXyWsRcBmt2k/R0P9AUR+Hu/Y9rehl2r+F0n7v3vl5sdd1DBWJjyUTgfxY8ryV3
- XHhbJEMeB0bXSNcez1LEG9E/vwkuAj3LJT90/gFQSwMEFAAAAAgAgrlOUZoM98CKAAAAvQAAAB0A
- AAAuZ2l0L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZS3NURKCMAwE0P+eYoVfgTN4By8QIJUO0nSS
- 4ODtrejn7s68bS/DmPJgS2hDi1sGH7SVJ2MRWWGTpuJwQVEupAxCoWnlGTWLJRd9I4piN4a8WCsy
- 79sIV8pWRN36U74LONNYYV+Snfq1Gpm2fxPTdxM0lfVuLzM5N30IfPCER3L8qs5Y602XcpTwAVBL
- AwQUAAAACACCuU5Rz8BMAgkBAACoAQAAIAAAAC5naXQvaG9va3MvcHJlLWFwcGx5cGF0Y2guc2Ft
- cGxlVZBbTgMxDEX/s4pLOqpAkFb8VkKCPbCBzNTTREwmUezpA8Te8fQB4vfaPsf24m7dxnHNwSzM
- Am8j6OhTGQgh5w9wV2MRSMaeauxPOAQviAzf5umct4QupxRFaKuA9gRfynAqXrqAvuYEr0yXfByQ
- iNnvaHVWvYebI+Rp2Ko3Cg5RAsY8uk+qGSxeJnX1QlWlPMVxpzgdVkfNpUYvdKMi9pgJfhSeF2PJ
- BRJu612lGTT6Vs+ToFfM/idUjdI16eNcy7Clkvu7xK6MWWEXxXFwTDIVow0X8ott7rWimL0rvjLB
- ublTB8PZwOsZdml+sEaIBe4I2/wiLJZLfQB1/8Pm6/nRNq/222zMD1BLAwQUAAAACACCuU5REh1n
- KokDAABmBgAAHAAAAC5naXQvaG9va3MvcHJlLWNvbW1pdC5zYW1wbGVtVGFv2zYQ/Wz9iqsTJA1g
- 2kk/Zk0Aw8uwAEEHrAH2oS0GWjxZnCVSJSk7Lor99r2jZHcB+k0Uj3fvvXt3Z28Wa+sWsS7OijNa
- OuIX3XYNU+39lmIZbJcoedpxsNWB9rVOZCPpte/z/zVT6dvWpsRmjgwr3TRsaH2g6cam8W5Ke5tq
- cp502PQtuxTnRM/1sUrt+8bgMb/gyRjq1DcOnmLSqUe9KnFA4dhbtyHtSHdd8F2wOjG1HKPeMNkK
- OSSDRgEBF5PvKNVHiPPM8dkTO70GxVSDiSCYUcCvdvxTWbnzNO0Cq5HAvChsRcIo8E51OkQmpUZR
- fn9Y/kr3C8O7heubht7dX9wUKOuKid5o62K6k5CCm8jF5IwenU1WNyOqWzK2qmiMFG7cdulAKTCT
- X//DZfqR5/ytYKh1rNVwRSoNkafyV0VlC/B8rOjg+yyGsEFf/D7ruvy4enzMLIVzpMhpIL7T0HM9
- kE+h53mRH+GNjqW1Y/HSu8puwH7tfZPli/NXcVdS/U82Ngg++KQbrBKT4RDmBb9wSTf3F+8kbhV8
- jNQ1OlU+tISmCit0j53JsHfemp/B/gWxvIOVkARat1QF38KO2R/GcH4tvQ/c+WiTD4c5/cXwWNd4
- m/JVpUv50PmEPPCTS1mBoB0MBfMFYBnuKXa6hJVqHfAMbtRACJRxcGyyjYFicMknmp6/EmRKb+5o
- KopO6QtdXIgHPvjEp9LUw06+ojUyb1kqBt8ju0YbRihoDyal5sAzemvTZZQkwh/8vvaQ2swIClLn
- AxjYxoqDPH30DZoa6eb6MtKijyFPewpXM4rWldmOmdvXXgc+AsD4JhijxpChANJU4EPW5VDD0W4c
- 5s4M0ObFBMGJBndkLytV6rJGgFLSK+Vdc8C33Ck0EOLdLUl9o/Oj6b8XE6Kn1d/Lp6e7lZBWhi4/
- kfr3y+frS/pO+5JUeSUyXo+DVUK59+8/P/zxW/EQgg+3tMQKaodlhf5Du9emIUGCMX4Wp5eYslKL
- 6jAc+t1GLI9X47L3YTs0tmMv+9A78igdTl6NkiwvwEFzxNhhN5qdjcc5Oi0WzijwZpzLrcM45nUq
- JxHfePGunASeOebIeGsut3AJAm6Lguh/c/iTAczDW4g0k7xRb35sBGHAudq+tmhbtjSLgHE22D9D
- 9VUFZwuck3Qx+73Sthkn+NhtZZ3hF+l5Bnnq/am5ShX/AVBLAwQUAAAACACCuU5RRD/zXv8AAACg
- AQAAIgAAAC5naXQvaG9va3MvcHJlLW1lcmdlLWNvbW1pdC5zYW1wbGV9j09PhDAQxe/9FE8wexK4
- ezOamL0a7qbAQBuhbTqDy/rpHXbxao/T93t/yoem86FhZ0pT4iWANrukmeBi/AL32SeBRHxT9uMV
- F2cFnmG7uN7uHaGPy+JFaKjV4dXOMw3origmL1goT1Tg4sUhRNg8rQsF4Rpo3V+Ii+s8KEubEoc0
- VD+UI1isrBo3CmXN5dWHCTbAppRjyt4KaQaznUjbqAfLQFmlI3Yvq1F7S5aYII7ufY7G9W1yG0HB
- drpYnA7bGz0h62k5LqPf/yKKlKm68dWdL2pjaujKil3FJGsyQiyoNhSP7+f28+380ex+3OzoAeF0
- MjgebdT/pzXP5hdQSwMEFAAAAAgAgrlOUQTYj7GdAgAARAUAABoAAAAuZ2l0L2hvb2tzL3ByZS1w
- dXNoLnNhbXBsZY1UYWvbMBD9HP2KmxPWDZq0KftUlsIojBVGGWNlH8a2yvY5EpUlT5Lrtr9+d5Kd
- pGOwFUJl6e7de+9Omr84KbU9CUqIObyzgA+y7QyCcu4OQuV1FyE6uEevm0cYlIygA8jS9Wm/ROj6
- oLBeAVxKY7CG8hGKrY4ExycFyCaiBx1ByQCVwuqOgqJC8Ni6iBCijH04hpIQS2ycR5D2MSpttyml
- RLQjWCpz1VA2cRjJ4YOOAQYdFUiwzi6f0LsRlL4zzqCNOeAq5gT4hUGSTPpfZe4Jhrk1zhg3cGon
- vWyRJITzlLZYw3IJ17QHrjnUQW4MSlc5nwsxbomMUTuLnHrGqTefP/47lqJJJ59k+lGx4X3gL5JJ
- 1etdXeUCWea3fYs2WZG14q9emiz1ypKtrYza2al1VLdybZu8S0wk+Z4ZZJOYUei7zmhaUxuMthiI
- OMFxMhlsa+kpzHaEp+1om2+zTQBvjSNXiWVzMa2Dkmv6GInnk2kK+Gjfl5CnMCg3cJMGdqzzeE8K
- s1/k/Z4/ekzljdtCiyHIbSLoYyC81NPi69WnAl4Nzt8x1867rafA1yshMoFNsVgXoveGFmeFEE9v
- Tjen//knBFloWJCsISn9SdrGFQkbO5U2xyXtitqJmW7gGxSLXWgBG1hQbfguZqTIitlsDh/IaoKv
- 0dAc0s65mKEJvBrT96CH+RMAIVzjAKWXtlLH6YZTL4EmfrKQg+h0yy7sqdDuWIYQbrpa5iGnCxci
- z8mfgJaK/AVwT261eo7eaJH0XfKjwLMD1KURgg7yYnNLjwnZdr80VBeWFvgCUvc6OPpB8Uesn0sV
- t5MhFFMscnbxzAislIOLl2dQvHe9rQ/K8VAsdq075odjun1FyqRXBtaZM//SLRVp91T8BlBLAwQU
- AAAACACCuU5RhOxYUd8HAAAiEwAAHAAAAC5naXQvaG9va3MvcHJlLXJlYmFzZS5zYW1wbGWdWGtv
- 20YW/Sz+iltFraWsHrY+FNu4juHYQZvtbgJkjRaLxLFH5FBiTXK4M8Moauz/3nNnhiItK+liBcjm
- 477vuY/Rk29mi6ycmVX0JHpC56ra6Gy5sjSMRzQ/PPx+zH//Tv+oy0zROf0sClEqR3u5ktSvtJxo
- uRBG9mml1C1lhnRd0u+1sbSQqdIgWmaWGiJjhbaGEpWVSwjJcP27WoxJlAnFoiQI/ChLSxbSY1UU
- /DzVqmCpJXhosSH5KbN8uc4szKZSlZM/pFYs29ZmurWuMSgWeS4TR+7kpirP1ZolVEKLQlqpzTPH
- NTiiycTR1JWxWorC3RipM2loLQx49a30Jk2ZYd4wLLQo4xV8Zrne24SGSpMsKruh9UqW/jG/d97V
- WrOnnnHUmA17jSiqHFpXam3gxJqsauOiqiwOPDDJroQlgSCLHNYmG4gopF5CNXgOSvnJHjSWuSgu
- pbUdA8ewNxa1Yf4QksxCxlrVeQIiU+eWso7hQQ1V9SLPzAp6YLBVejONovDshLVGLN4rPukPjvpR
- lpKVwER/8KRPJzSPEIIy6jl3Tvpapma2gmQzG8z7kcyNbN7dMHrMplioPIuBtZR+fnl2cUN3d1GP
- gUCHdAyDJSAFJLC1SKeuK9sanUgrYraVOaM0i6IY1sEUp6EPlqhjwOnp7Oko6h0fR/zv6yoUvNBA
- HFNLI+IIsXuNhIGWk5JIkTdAJfEgdw+BAjZV8ntSKRXCQP6U6JVBNujNL5xLT4j7U9ZxoVzuZRCJ
- nOS5qwuD9y5ggI0L1uS/rZ93d/QZHsUrRc+/m1P/NUqmZlO8RYEs+HwU3bMm2OB1pDWraMHlrTyN
- EJDrrLz2tz5bgOoESLAoDcDW2s2JKiUCIemDJ9uadLPFxeQPPHwgqx8g0trrmbii9xtzjKBaFq9l
- oT5ysKZbb0IGYwdsB3a8Bvxr12qQK0gtUWboS3bqMNLxHaWnO9oY4KdIT0pG0UbVHG0Wy9hYyBZ3
- 0B+pMt9cM8P10U5wtrH40ORn8DmU0D3dQbS2Nx32+RfY288e9rbqOnZw/XUfzJtIh/B36m6rrTXS
- q72Jevsy1yDIy9ubuqaD1BWHMhFW+vJokt77vxLW8y0jlGvUQwL9k2AYO/qX4OwEsAVob1Yb7WZk
- JXVOE0kH0FNsQrkgloOztz/9+u7w6jg8L8ySI/y0oVhhbPAo41nXeN+CyalsusKz92U/iBl+2zF9
- BIGFqLh8e73Zh+G7w8kPYpJe/W1EM6bvDTG5Tp7T0Yjv7slUeWaHs/flbBzMO7pyrzC+iG2UuSxo
- uBW5I3M4fToaeMG9d17yYO782yt7fjUaeTnAxPAb14YMDTr2f3YKJ88RpftA6mg5Vs19r9JIJf37
- 8uLl27cuit6AXl0maGTtg/voEXWfGgVHVyGEjgzfg7b/9bsm9R/3m6bxcfX/+OP7izfn1y9fX0RR
- dyi7ncKIVC5roROzdx6vBJrPQqIE2jHppm/T8zFey2TKggF+LBQpo1sYUxc8UD24n0URPaU3ZSx3
- JwevIMYL7AfTx9srVxbcryJ0hIAyBErxJBFLgVk+lBkXECWZlrFFGwUksrK5wx7yJb3bvhsjBhDL
- q1lXw9YYVg11oE+QFSuTqWuW3ClL6VG/qDOUdTvzMt5sIFizFcwvhc4z7rrAkriVBhsimNePLIpR
- T9DAayHHxe0oToCbjpkTzpeNcTDFpdN1D8xJqzMXhFLG0hihN67FBA8K1swXEg0dxsDEWykr9kQ3
- iw+ZjIHhw/Yb+p4bFl1fXZdEkAMYPHe8EuWSAaO8S6yxQdHYh5XtLkJoPWI9QQCOiXVWcUd0oMLq
- LD85iI6BP53EKgkrQqM2xKzEwhtxBmSQ6nuqzxei8TETuR+ptzxBkZMyzZa1FgugHy+jwU+vLq8v
- Xr2d+TewlX3JDPbh6De/YkNSA+uxC4XfJ9fCLbB0W6o14D08GtF0OiU0gh2kccd0YeQi6vRKbzBS
- +B8U0JJDtlt/fIRw5WdsXWXJFj4dK7Rg+DvmOJegxyQKJ5UQKsTTH0gsX3aL2k94FDbtVJdbBB+a
- gQAzbICt5jTAc055cJFIUyCdM+dZK6kYRUQvkAzF1eczsu0gnUA6AWxKE1B0FFSw2zei4fxrUXUB
- 3d2etrXhBF/ySYV1sRO+gFky0b84RAA7NgvozTfjnd3Hce8pbByQuj4CWZvtHAwe+Gy4kmiCrmXu
- CpsLZLvowoNKWBdi18xQWFxNjr3thdjKsk67SWvt1IeSG4fIhl0xKOfm0VE0xLBficq0h0b0f+mK
- Z4Tc4WQUDlR45XHoW00byuif0h4YynleCOuLIlQosN/rgUdNJpO//AbQO45Z2PSa/4+umYofCHDy
- d0Fne4lmO8/20HSe8jeGtO2XXjymnHW+7ef9I8Iu3cKZeP6AMtDN6OsiZy7q/0sA20A2cz6KzsZw
- gSv83J3THjYR38rPXL1gN6Q0+4QmH0qSfwMIleM32NCTHM8Lx5NmpatYnnr2C1UXeJuhzaaEbsx+
- 8S3/kOJKxPfqZpI6PedOKneA3d7IUMOyzK1Y7nRdv0OfB3nbHwBwSOTz/5nveLLEwq3FUkYvHim+
- 5AFdVDX6AVo3g3jvgeSDj6b7FWA/Rfg4Cn+OQNS5L6Cyx9QuzR0Hsbcweete15j5Y2PCGXrqZ2tQ
- 4se++z2maQJfboVRs/79CVBLAwQUAAAACACCuU5RksT4lkkBAAAgAgAAHQAAAC5naXQvaG9va3Mv
- cHJlLXJlY2VpdmUuc2FtcGxldVDLTsMwEDzHXzG4EX1AW8qRKkiIA/TSViK9IVVuupFNEzuK3QdC
- /Dt2yqMIcdnVemfGM9s6G66UHlrJWqyFOw06iLIqCNKYDWxWq8rBGZRiQ9hagslRba2EqZwy2g48
- K5X0TbPKt1dQJg1ZiKL4hYaTwsE6UTvslZNoB+BKZJuk7YWEXqOmF8rcD9Wr7CVpzyTw45KfakLZ
- 4Gs9aAKkBqTFyhtx0i9CiEsvqUX5+ZKrsDPgVU39mjJSO+IDxlQOR9ahr8Hjh0m6nC+eHpezeTqZ
- TZf3s8U05cxb0CxSyRWL9rLRCQweK45+4f7nRWvDooh2ogD3ZUvJ8x+oF/GYTPgL87gBcSgdaF8H
- 6nX91IzgTc1rUzZnOYnSD4lvEL81Eq1e8s5xe34dmOOxr8cDHpUOymEUfrAi800lcaejcIFRtxss
- a2K5Yh9QSwMEFAAAAAgAgrlOUe0TNjDoAgAA1AUAACQAAAAuZ2l0L2hvb2tzL3ByZXBhcmUtY29t
- bWl0LW1zZy5zYW1wbGWFVNFS2zAQfG6+4nAyhJDILu1bmXSGUkozU0qHpG8ZgmKfYxVbciUZCsPH
- 9yQ5aaCZNpMHR/bu7e1u3N1LlkImpuh0O104kYC/eFWXCIVSt2BSLWoLVkGtseYawRYIqaoqYaFU
- K6jQGL7CmLCnvCwxg+UDRCu6Gx6K4F7YwqMkrxBU7q9zUToqbqHgxp0QvmVtGUeQq7JU94HRYTIM
- aoSSa5oAIWwL6hswqtEpxgCzIuxAZ3Wja2UQhHGbYEZTdqG9KkJOArk3IOeiNGEHDlJJ9ohagbHc
- NmZE0C07iJ0vlbaYxd7LGY2SfOkXpXuObgQavQ3+JJigIGq9ZYGIVWYVxR3HsMaBkGnZkAEE1Ijr
- jEzst8yFNhaURGKv1B2uDY268K1EToujtKi3ta5ji+MICizrrRz9XASDqZLZ9mAKr7F1Y535PuFM
- 5Dkw5hZiwRFgOiK8kLSVA2yy/NGQwiXmqm2QxwdM1NI6452JbROcZIoeU9645GiaQiP7rlc1hkAY
- o8mkUenw2/xsuCkw23TJ/FmHDNfZpts8yygsmIqVxIypPGfUsVJIH8cz4b6jKZdEY6woS1LkC0Qh
- Q8iHvprCKx+IcKUUWZYhp/hOLy8uJrPFxfR88Wny5WzcO1ofTS+/X53SwZvO9PPJ0bj3ttNJGqP9
- /7BGXQIT8ZLfAiM9/VqTm9BIStscVMl1/L9Mkzimx7q9ZNCHqPdCReRqlTr45lZQM+o5LRFFRw/A
- 6MkiGcUtjgbuN8BugZREP9ynT1AazWUEMdxsFSTlKaXyV1NuCPkKRA6kNoH9fej5Ig+HMB7D613i
- 4fjYTTschAs0PHX7TC8/jHsHbuAd13BOiACcnV0tJh/Pvs7giepMAiT0TXI9P4gP388H8WEveVaA
- dzA/Suq+W9hxCecv/TMts5peAqhJMxOSkS0p0mV7SjJpfrTL6q5bziI1nz2+9DsK7w7v9j/M3fKU
- uPaCQwvX1OFwZ7xdeht0fgNQSwMEFAAAAAgAgrlOURohRCV1BAAAGg4AABgAAAAuZ2l0L2hvb2tz
- L3VwZGF0ZS5zYW1wbGWtV1FvIjcQfmZ/xdyCwoFgSdK35Eh1TdTqHipVbe6pOkVm8bJuFpuuTbi9
- tv+9n+1d2F04SJSgSDG2Z+abmW9mTPfdZCbkRKdBN+jSR0n8K1uuMk6pUo+k41ysDBlFs0zFj7SW
- TEplmOFzMmyhKcnVkrg0PBdyEUHDLcsyHM4KChfCUM5jLp74eMXix5A2wqTE8sV6CRF9hdNEsiUn
- nbKLscrmfiH5xoG5V9DMZsBiUqEdoBFEnITbSYQ9UxSuV3NACiMndqtkIhZYjN0HCyupIwBTm5oD
- OCC6t3pmSmWcSdLcaNqk3KQ833d1I7KMZpycHmwKCdO46vTkfKW0MCovIqKfCprzhK0zY88L2ijZ
- NxCNmljmPOOGQ/cJJO4ewvs9GK8CsVRzkRSnQTBrnZassLadkIBxliDzFOecGaFkVDPq1IEAR32f
- 5UzG6XPd97f5W4ZgzmXh0D8PSs6XyvCsKD0+hAkaRcktD+sIJJjBX+mFJa8nLRi8XDI5p0xIHpQ1
- Mg17F2GAGsn5E9aXYYAy8esfwkrwD5ZwA3Qpjx8DkdCfNP5GYe+XT/cPd59+D+nLtUUkgw6PU5TN
- nYtHvpYeS1nsrqQt8LgGIwrp5uyyEqT3UF6oNW2YNCO3itXa1u96tUJ4SoPOmNXfFKbeOX2AWzf0
- wfuDhXfmZlDd/ArqXASJCGpulJEIaaz8hpfeffdK9txca7bgV0es7hut8uA6SbtxTHvvbWuL3Sku
- Wqp8p8cMgj22n5Ku3x0EbYIekW5fbdhG8T7PMC6WgtvOcEpwe3FgA+fIR4nKSSpw3ZMKzSFY5eov
- Hhu7BY0adTvm1L/4u79j6KR2PxwEMdMchzXBEEUVhJ+l5cG8VlnhkP6lECJlyofDIf3mxeoY/MRI
- mfZ9gLvybma/c30dcM3iLQecO6ZYcY0dkLFkma3cc3yiKLL/Ruh1fdSyKxrhJqaPJ7ZAuij4xnM1
- Dc+f+Qk97XeUnmJtVdTI7Y8eLLSptxXwTPPmQZk6ZsbO9bGp8A8cz8sIV5U1qgw6YRfsDs70xE6e
- yXDknUOUO13Mx3FjQGJTpyo3D1XD6v1TrrrdnY7/cK10rV0rIb2DlyZf85qTnVpC79GT2lZH1GtY
- Hdm84Lw5G7BX44rPd13zZ0ShbwNlZxy6DQObxpq+9B2P3ditup3NLAi5YgtAiHa6SvZ0ENWO5VAj
- bj49Pm4lLXzE6qHY1t/JQNxVE9EP5Rd4fBSlq2ALsZ3XOsptsTdQ0tkZ+efeE556OcJZcYpuCFX9
- NJFrzMfLmzNr/UBq4Ua/EunDFfSxeYG3qNBGRwcy9quD8YIYnExVCottjpePgm0EqoGzq0ZQJey1
- O6+7cCR/t9XrgZUWXp/CCv0BprWd2JsyL+HbW+H1L6l2vE2Onwm7Z9VhgUPFtCf3Fr62tL7K6aHH
- +1EWkIFK26nxitIWQY4hUd//0d6tNSf348YN3Cv0v0epNtINJFIJ+V8+tikhSruiw4m70WznHt0W
- XGvS/Syk0Cneru7CefA/UEsDBBQAAAAIAIK5TlF3Pc0hrQAAAPAAAAARAAAALmdpdC9pbmZvL2V4
- Y2x1ZGUtjUEKwjAURPeeYqCLqth2L7gSXHkDcRHbnzaS5Jfkh9iNZzeV7obHvJkKoxHY2GhjKaJp
- WCYKa6BPb9NAjQ7sLm1pdcZr7ja8q3A3vhgyKUEUFQTZyIS6qqECoWfnyEtsS/PGAQpz4Df1AsdR
- 7ALjcT0VnaDZWs7Gj8ic7IAXlfbIPCCSgHVZ2F4xKxEKPmKf/PawTjgYjYUTsloBI0X688O5yMf2
- weq5hu/uB1BLAwQUAAAACACCuU5RKkssdJkAAADTAAAADgAAAC5naXQvbG9ncy9IRUFEjctbCsIw
- EEDRb11FNhAzfYSkRUR3IHQFk5cppJ2SpIiuXnQF3s8DF+C/WGik7rxGDKClVS3IHgfVYBhca1zf
- GuWgA2vYNJc5I7vjaiM+1j0hO5efbddltpkKhXqytFxYI5UcWjloxThogINNtPqRhUwLi7VuZRTi
- Mde4m+8gbu89ez7hsiVfxPaqkVbuyBYefUrEn5STO34AUEsDBBQAAAAIAIK5TlEqSyx0mQAAANMA
- AAAbAAAALmdpdC9sb2dzL3JlZnMvaGVhZHMvbWFzdGVyjctbCsIwEEDRb11FNhAzfYSkRUR3IHQF
- k5cppJ2SpIiuXnQF3s8DF+C/WGik7rxGDKClVS3IHgfVYBhca1zfGuWgA2vYNJc5I7vjaiM+1j0h
- O5efbddltpkKhXqytFxYI5UcWjloxThogINNtPqRhUwLi7VuZRTiMde4m+8gbu89ez7hsiVfxPaq
- kVbuyBYefUrEn5STO34AUEsDBBQAAAAIAIK5TlEqSyx0mQAAANMAAAAiAAAALmdpdC9sb2dzL3Jl
- ZnMvcmVtb3Rlcy9vcmlnaW4vSEVBRI3LWwrCMBBA0W9dRTYQM32EpEVEdyB0BZOXKaSdkqSIrl50
- Bd7PAxfgv1hopO68RgygpVUtyB4H1WAYXGtc3xrloANr2DSXOSO742ojPtY9ITuXn23XZbaZCoV6
- srRcWCOVHFo5aMU4aICDTbT6kYVMC4u1bmUU4jHXuJvvIG7vPXs+4bIlX8T2qpFW7sgWHn1KxJ+U
- kzt+AFBLAwQUAAAACACCuU5RpjpRHVIEAABNBAAANgAAAC5naXQvb2JqZWN0cy8xMC9kN2FmOTY1
- NzMzMzYzYjZmNmUyNDc2YmM0NzI0ODIyMjdmMWZjNgFNBLL7eAHdVt9v2zgMvuf8FUSAwDLmM3rb
- W4E8BLugCxD0gC3Xe8gCQYnlRJhtBZLSdP/9kbLkH21vt74uKBqFIiny4ydS+0rv4cMf729+U/VZ
- GweFcNKpWk7Cb23jyn7vls6Ig9yLw7fJRJWAG/mjNFbphqum1NubHczn8OF2AvgpZAlOc+sMexTV
- RaatmLaMdBfTgBfnhTzoQjJydpSuVJXEpZO1bFCumiNL00nnUD7JA6mws3CnDI6Yhah4oQ5u4H46
- nS5R7+IkCCBtFHgPdPZVuRPos2yCi8QkKQgLZR8eqVFMMIcyN1IULO3Mg5y+cOtcIR4s+Wq+NkkG
- Cf5P4Z3/7gwoYkbq42gnsrLybUB5QP4PKEK90kfmniIimPxaHzFB4UQF0hhtLBYGoUE9Dw9gLf/5
- crfi67/uQDaPWBgDylIFVSOLiB6qc0ITYdE2Rz1ldEM1Y0m0Tlqg0F9U7lEtyY5wj1sImHgXLAhy
- Z7732iQo86tRDvGd2VuY2QRmwCJN827R6CtLM6CE+zJh4KKqXvg7VNpKrOaEYMLI+dUeFT+Jpqik
- YeGbN6KObMVMGu1guNPHaISyEpZPB3l2eAcCDIv1hj+sPm/+XqyX9w/80+L+z/Xyc4drfbEO9hKs
- dJi7p0k4RFnVWCcaZNTwvAzwCg3YPdxDSMMVG0qD21oXl0r6bDLgGRwQEbEPErQcmuTmLIxTbRp5
- KIo96UtVcLJD9ZE5lr+wdJVYwtKgPlJ4brC9/f39jog2dEp3YOzX40H480ohTnPYspFbBKMPKt15
- 9ZAHKt/rRnpRJazjbo+iJGkxvp6IuQNI+jK+4F3vkPO2G3LOBqYZlEbXFOB828WKzQ//dj0FicGj
- OEgQP6U2QKajfEA1Xuhz7+OLNn1YyFzhsK8GSeatxieT0Rjtlw5Jp3caVoNeR/t77H/fPKb0S3qu
- w8qPjCW1krHXEUivUG6w/yrj6Az6DIr8nEivMa81wqb9jOGj329hYHTYVTfHqymNYzcZ/IiQ4xr0
- 2HbEjI4HxLiFBGdGN1lzpEYtHEeoqVGRAdYxusKuTL561Nse9EAD1teDJdOZneL4wpvrWxe2mpbD
- sggtNPgKjSFEEodsGM1BZzIRB6ce8WnA3QnP9p0f2YfN//Vut/i4WT0sNku++bT6gn0htLaRlzb4
- n2qeI3c0kqgZh84ZWziOIXcRFYbUNfLQLXHQsGTRJoAPCeg121fAzOLAxqEyiq4tYffOGO1lQC8N
- xv0Y5Hw+2owI+lPvpHN0ZKxbPAoH54/gC8MiCZMsWs9fzqq3OWpj6gcZjlN6smDu4Yg26+fF7yD+
- GXBRp4WVsLs4mjQgHM7t/wQ5vDQtznjPc3oCDozn48J4FY3zCNV4+/wjA1ohL+Myg+2uvTXkNq+F
- auI1iiqDu5yE0UXtGNVr6sDDI/p7hkT2CkRAVIq+egW6qFGaizM+dApGFuEO/zqs+Bc0xcBlUEsD
- BBQAAAAIAIK5TlH7famKzAIAAMcCAAA2AAAALmdpdC9vYmplY3RzLzE1LzUyYjdmZDE1N2MzYjA4
- ZmMwMDk2ZjE4ZTRhZDVlZjQyOGJjMTJiAccCOP14AY1VXW/aMBTd86T9B8tPXR+S9UObVCWrIgoF
- qe0oCZ0moUUmuQSriZ3aDhR1+++7+aKB0Wm85co+Pveccy/zVM7JyefT83fO5XOWkhUozaVw6Yn1
- iV5+/fDeiaRY8KRQzGAdC4Q4LM99MIaLRFeFshTH5BE2Lv3uX49C7yYIH0aTYOrd9O8ewqF3d3XT
- n1CyYmkBLs0YFxaCUGL/132vF4wevKAfBsORT0sKza/Bu7qYLWUGM80NzNbrtZLSzECsZn6keG70
- LN+YpRQWPMObT7Yc/0bPzUqHK65MwVIEDXMlnzdWAiZclZ9LJuIU1NHHQ9DjH8Hw293YC4bb5g+R
- ba869r60jt5oA5m1hnkrVSSznKeVHSSGeZG41KgCOzNMIauBYhmspXp06Tl62Ejs2HtAHWAfFNre
- wmcyLlLQRBXCS9NbJlgC8W1dHEiFtQk8FaCNbt/dmthI0YYCY6EgkysgAim5dFy5cPoFxWThgGnT
- ux61/EpDD50+O3/zdBm5LjBpITsWEpIzs3Rpw8xaRAnvBoiUgZ+79Hi32Gjg0goy4XX7u2d0la2x
- khFoLZVL0di6w7PzTuB+dcttHtcL7B6pWPlmF1SBloWKINjkKNhU6BwivuAQ7x97KrgCLyrfdmkN
- +yqlY+85gcquFQ5H43Epdenx9rMpNHL6BsMVkQHHI5RoI/OmSxz4xvPOTbyLKyLm5XroIlaOlh5x
- kRemzQraYUDhflmwVHemsR5oxz4I5dgl3c6bFf2Gba/ZT0Bq9f+LccZMtCSFSl16ZB3j6PJESAU9
- plH2w9QOMttv8mXSv5/2/SCcTka/aRm+utuftq5Eta3j3bfqyRWQMIMv11/tPP1TE5SdRaXmxFRZ
- mdQO07qpbt7tl8nFCZLB1QIivi9AbXyjXr3cLuGqmV2pa+VbW/Grk6PuStmukMrBnf+LPxnm5ERQ
- SwMEFAAAAAgAgrlOUYm/exHMAAAAxwAAADYAAAAuZ2l0L29iamVjdHMvMTYvY2E5NDliOTZkYTdh
- 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/
- Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCkNL+8oT+zcYxz5Ocvm9KeOE9sOywltQRYkFBTmZyYkl
- mfl5egWVDCuyXy27zfK67Jfknc096QePMunqv4aqLEotLM0sSs1NzSsp1iupKGFw8LX5+H1G4il5
- Jd5b9T8va22zUEgFAIoUUlZQSwMEFAAAAAgAgrlOUUDzmqU1AQAAMAEAADYAAAAuZ2l0L29iamVj
- dHMvNGIvMTQyNjBhODZjYWExMmYzYzQzYjk2N2Y0MzMwNTJiNDM1ZDI3ODYBMAHP/ngBKylKTVUw
- NjJlMDQwMDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVp
- fb4/Zp+7FpvMmm/w+6ZiqTtUSZCro4uvq15uCsP9yR4JryWTRReEhF9/1cQa4XRL3h+qKDcxM0+v
- oJJhYWdNA//ea1+URNvO3XxeOZ9JOvQkVElBSVlxfFlmUUlpYk5qXll8QVF+RSVIz5IlQjOYd76b
- Jff4l4F0WHrPqnaVSVA9RamFpZlFqbmpeSXFeiUVJQxZ76ec+rbrg3hakP2NgleirHqybv1QteWp
- SXpGeuZ6yfl5aZnpDBNm5ef5zLZ4qF5twRjKfWT7tbwrM5BUGuuZwFSKBm3/K1pjzfGHYdrHPq+r
- 7526D2oDAGpFgGtQSwMEFAAAAAgAgrlOUQOlUni0AgAArwIAADYAAAAuZ2l0L29iamVjdHMvNGIv
- MWFkNTFiMmYwZWZjMzZmMzhhYTMzNDlhOWYzMGZiZDkyMTc1NDcBrwJQ/XgBXVNLb6MwEN5zpf6H
- UU6thLqq9rLamwNOYy1gZJxmc+ThBK8IjmzTqP9+x0BadSOkiPHM9xpT96aG5+efP74B/jImIdWN
- Gpy6v7u/C6XYXN6tPnUeHppHyHRjjTNHj3V7Mbby2gxPQPoepiYHVjll31T7dAMolD1r57APtINO
- WVW/w8lWg1dtBEerFJgjNF1lTyoCb6Aa3uGirMMBU/tKD3o4QQUNCpklYbvvECvouFZW4UQLlXOm
- 0RWCQmua8awGP4mDo+6VgwffKViVy8TqcWJqVdXPkHpASAW3c7hq35nRBzfe6ia4jEAPTT+2Qc3t
- uNdnvdCE8TmCGRGNjA4NBdkRnE2rj+FfTS4vY91r10XQ6oBfjx47XShO2UfB0Xdjwal+EYgwGm1M
- 1j91To0hM8wLlSyxuVC5dub81ZN2s7LjaAckx6CwrTUY48T9VzU+VIKRo+l7cw1OGzO0Oth3v24L
- ldhQ1eZNTd7muzEYj9KnRUyrmfTMS1+OXFfhJanVkiKyY+ZYmjXd7KHlsXYeL4euesALNlH/b/vj
- bskthZJv5J4ICqyEQvBXltAEVqTE91UEeya3fCcBOwTJ5QH4Bkh+gN8sTyKgfwpByxK4mGWwrEgZ
- xQOWx+kuYfkLrHE45/hZMPw4EFlyCKwLHqM4vIGMiniL8GTNUiYP0Yy2YTIP6BsugEBBhGTxLiUC
- ip0oeElRSILYOcs3AqloRnP5hNRYA/qKL1BuSZoGvhmQ7NCMCHIh5sVBsJethC1PE4rFNUWNZJ3S
- mQ89xilhWQQJychL0CmAI9RiNfTOYmG/paEemAk+sWQ8D65inkuBrxGaFvJjfs9KGgERrAz5bATP
- Fr8hZxxDHkTC4ZzOUGEHU2gfq8KWEOIOM7ipgoSSFAFxb/mn49vE/d0/uIRrF1BLAwQUAAAACACC
- uU5RObGiejcCAAAyAgAANgAAAC5naXQvb2JqZWN0cy81Ni82NGI2MmYyYjRmYzQ1NDM3MzRjMGQx
- YTI1NDBjMTViMGFmNWVkMwEyAs39eAF9ksmOm0AARHPmK/qOYqDpZpFmogDGGBiDAS9jbg00iz1g
- zGYzXx9PkmOUOpVKelJJVem1rqsByAL+NnSUApQICEo8UaSUEAHmYorERJXkHIkij2GCRJxBWZGY
- lnS0GQCW1JRmElElFYuyDIkkE6RKmOKE5rnC80jNIC/xDBmH8toBg7Yl6cFb1YCX9Mt/VM3Psadd
- v2iuHW0/5kVRDeWYLNJr/QMIWIBIhoLMA5YXeJ55ps++A+2AVQ3rMQEvf7Gf/8WKtuirAnz/km5a
- tge21hZEtuVpu31o/s4ZwIB7r6e6pumGpgV64BCnwTcj1F25PCN/Ejv7rmnZ2rY1F+K150U1tyvN
- 2iveqj1GnLtiQBe+ry4je47meNc4ipJr8sytfJrpKLnMPhHf95gt+9jxB0GqhtaZA7Q87khKg2i1
- STcM8NaVdWKF7Ye+62+0bNWJi72lYQ77NJ67PPAPQTE1KFHC/XxQp5XDXfFlVocyKlr2rD07XDvo
- H0JqDJdlbKPJCuqVHs6i9SkaTulbn745F0uuhgHf0zeW8ILrxCymY13vwuNpShmwPTSWuoFwaW+i
- TTZqfsxDWQjj42Pcl7Zu+NVkOvfsADeqZudBMyvuTaNV+mgFd7ltMwYcBe6dNUe5b1zpvJLDdcTK
- xNq66sVNTgY3h25EuSPfXm4TfXSq+FBOEg7Unf6wkodevDLgdRNUa+bPZqa3/PdizL7NyEDBnSYL
- cYGer2nyqvgF01Hb81BLAwQUAAAACACCuU5RQiaqbzQCAAAvAgAANgAAAC5naXQvb2JqZWN0cy81
- Ni85Y2VkNmE5Njk1Mzc3MmE2N2E0OTY1ZTViZWZmODAwNDlkMjA2MAEvAtD9eAF9UsuOokAA3DNf
- 0XezagPdDcnMZnmJiKIiInprugFxEJDHoH79OpM9brZOlUoqqVQVq67XvAMEoh9dkyQgxWqKxWlK
- MCMYyZQSSDli6EUhVROcqlRSEyYJNW2SsgMSlbFCYIxiIsYyjxHnFCYcSgqWRQWxNGUYy4wItO/O
- VQOMpD7TFizzEryxL17k5e++TZp2XFZNUhePcZZ35z4es+r6C0AERZmIEMlgNIXTqfBSX3m7pAF2
- 3s37GLz9tf3+ry2rszbPwM8v6JbteGBjb8DOsT0t2PvWty4AAQytznRN0w1N2+rbBV2UiBq+7pLz
- RV5/So0zaBqfO46mDc+eoCA6Y55BtZgEuSanH08B4HZ2sSsz0DSSKeZkSCPjuFHRnWtlu24HZOXL
- mvWX1erksGU8eY52KFyoBHW9sgl4EQqA8dp0SI7zuL0tH1Hs39eP53ObFKi6quppxU+FfLiHtXa8
- keVetB670DFPvm0e4b7oLUMAN8Lz+bpq7vN6ZHiZGErWfX/V3QuMqB4cV+WhSfv9afg8tBntDhEp
- Fiu25F7UNwc10IkAZmHlYRYHhJQx23j2ZaaG0XamuBL2FzsDtaEiL7T1dDXRWfthH6PZrLYN/yjZ
- oVoqu+mrB8+0atJhuHmOYC+2/GpU4tQgKifn8AaDbH+PXdH9sPwkXlShn9LWXaqXeze44dx03gXw
- 7vDgVej3NpZn/nsxYV9z2iVgSOKxOCav15Rpnv0BAaje8lBLAwQUAAAACACCuU5RdMQ+9MAAAAC7
- AAAANgAAAC5naXQvb2JqZWN0cy81YS81OThlMjg4M2E3MGRlYzI5MGE0ODFjYWEyMzg2ZjRjOWJi
- NTljMgG7AET/eAG1zzGOwjAQheGtc4q5ANHYmcSOhBAtBdqCE9jj8WKJxJHjFNyeaBFHoP2K/+lx
- nqZUQY/2pxYRcKP3ismbGMgh9nowfeRog+sGH7zwaJQV1TWLKzJXsNIRkQ80KGusCYQdo6fARGxw
- cKhRS5DYuK3ec4Fr4pLXHCv8LjLDLW+FBY7Th/Ou6z+et1XK2s65yPJ4tn+p3jffcp5OoGhUiEqr
- Hg5oEJtd9xdVvtVvLnOqyT3gPfQCM3VltlBLAwQUAAAACACCuU5R2mwDGS4BAAApAQAANgAAAC5n
- aXQvb2JqZWN0cy81ZS8zMTE5N2M3NzM2OTcxMzEyMWNmNjQ4ODVlYjY4YjhhZDE4NTRlNQEpAdb+
- eAErKUpNVTA2MmAwNDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8bZxsLaL1aPvEpVJWPp7Or
- X7Arg7fUVWl9vj9mn7sWm8yab/D7pmKpO1RJkKuji6+rXm4Kw/3JHgmvJZNFF4SEX3/VxBrhdEve
- H6ooNzEzT6+gkmFhZ00D/95rX5RE287dfF45n0k69CRUSVFqYWlmUWpual5JsV5JRQlD1vspp77t
- +iCeFmR/o+CVKKuerFs/VG1ZZlFJaWJOal5ZfEFRfkUlyGiB6+unhRubWefnqZTtcVdpUqqXPwZV
- Xp6apGekZ66XnJ+XlpnOoNHxxmaWo6Fgz/8PJ13q11gENZnMQlJprGcCUznjq3thXf28Jhflbtt+
- Nd2QitkafwAhDnunUEsDBBQAAAAIAIK5TlEW1O/tQwIAAD4CAAA2AAAALmdpdC9vYmplY3RzLzYz
- L2UzNjZjZmViMzJmOWNlNzhmYzQwM2Y2MzJmY2FjNjc5MDRiMjlhAT4Cwf14AX2RSZOiQBSE58yv
- qONMGK1sBVUR3RNTLCKoiCJie2MpkJYS2RT71w+zHCcmjxnxxXuZmVSMFR1QRfSlaygFchQJFEWS
- jBQ54VGc0kTheUTFBKmKIEMkpFDK1Ji7RQ29diCVJQyxokIaqSLOeDEaWT6FIhaxAFGspHwUxxnm
- or47Vw0w6BV8XRdJU7VV1n0Dr5I0wirEk5ReU1oWL6zNuh99S5t2eq0aeiuf07zozn08TSr2HQhQ
- GQ9IvIjBC6/yPDe6Y4KONsAqukUfg9e/2I//Yvktb4scvPySZlq2CzzLA75tuWQf7MzfPgc48Gi1
- RCNE0wnZalsnXSnrg77Tlur5Q97cpcZ+EJIubJuY95VVqPdLGPazlZ90p3BWJg7PgcuFrRbvD+vw
- 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
- YTRmOWQ5OWRhOGViM2RiYjVkMzdmNmNmMjVkZmVhY2Q4ZDABxgA5/3gBKylKTVUwtDRjMDQwMDMx
- UdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKVSVj6ezq1+wK4O31FVpfb4/Zp+7FpvM
- mm/w+6ZiqTtUSZCro4uvq15uCoO9olvct3d/bOQr1OOnHEzlDnt/eS9UUWJBQU5mcmJJZn6eXkEl
- w4rsV8tus7wu+yV5Z3NP+sGjTLr6r6Eqi1ILSzOLUnNT80qK9UoqShgcfG0+fp+ReEpeifdW/c/L
- WtssFFIB0M9Qf1BLAwQUAAAACACCuU5RISfNXdUCAADQAgAANgAAAC5naXQvb2JqZWN0cy85MC85
- 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/u25UEsDBBQAAAAIAIK5TlEJVBWefAIAAHcCAAA2AAAALmdpdC9v
- 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
- UEsDBBQAAAAIAIK5TlHwqBwKzAAAAMcAAAA2AAAALmdpdC9vYmplY3RzLzk1LzQ1M2RiZWQwOTMx
- 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
- Wu2UocV53F2Mwi+pcdHmREB1rdcMdR1gg9sga0UUPP4qTBMUc7IhM6tx+op71obeefcxIFBLAwQU
- AAAACACCuU5Ro0IPgeMFAADeBQAANgAAAC5naXQvb2JqZWN0cy9hNC9hNDEyOTgwM2I5ZWU5YTFl
- ZTNmYTMwMWI1NjY3OGNhYTg3MjQ5MgHeBSH6eAHdV21v2zYQ3mf/ikOKQDKqCV1XYEAAA/NaowuQ
- dUPjZRjSQKAlytYqiQZJJ/W/33Mk9eYUawr004wglsi7491zD+/Om1pt6NUPP7367hk9+4afGT3D
- H71W+6OutjtLcT6n36pcK6NKi3W9V1rYSrUpBdn1rjJk1EHnknJVSOLXw+YfmVuyiqzUjSHRFths
- i4pVDamS7E7Sci9yfF1VuWyNTOhGaoN9epm+SGnJB0Bpf+zEay9HuWhpI6lUB1itWmcq2Eh3tqmp
- rGpJAsfDuFbKegPwq6iM1dXm4AO4LN0RR3Vgky3kapULK7/kW0L7WgojyUg4AGdkI6qag2WP783+
- aHeq/bnpYEtz1aT0y5EOpmq3sH4KWAsjRyqF2SH6hNghoRHBVkvpNBTHu3Hx8hGbo3PRQ/sELEOm
- /obd5mAscahaNuqeQ4UzeAe0CSntHFHATSdUatV0zpb2AR6lwdC3JNysakApSwWAt1Uju3dluidz
- 7B+tFrnciPzjbFaVhI303lMmq9pS3b64o8WCfryYET6FBMlUhoTH96I+yLlf5i0t7UG35JbTQjJr
- Yza2lZapg0crG9liHejH8/msNyg/yZxF4r2wu4S2uIaizooqtyPzZ2dnK8gdwCThuIgFZ4HPfqjs
- jtRetsFEpKM5CUPl4B6LuZu0oDLVUhTxvFcP6/yFrX0NPOLog/7QRglF+D+n5+67V2CPYxafejuT
- tZFfB5QD5EtAMeq12sb2U4cIgr9SWwQorKhJaq204bsiWM5fVeTyr+u3l9nV729JtvdIjOYqAltV
- K4sOPYhn7mYvSJkUcpVGGULO4qjTjjxQsNcJD6iWBD3GvdsCYOJ50GDIrT4O0rxQpg+6ssD33FzQ
- uYnonOKOpmn/0KqHeJ4QBzykCY6Lun5kL6+VkcjmbG/vTZEZmYOK7JfjHkIKofyxvrl+k12vXr9f
- reEh4hkreC8RRhytWrGpuUS4fUrTlDngkj8JJ1wyJ9VTYyLBAbttIAubMhPWojrH44OH+FjaOeDP
- 9SrFcDjvy0+53NsLFMXRZ1CangN64FoVvfdemS5dcVgxaYbcOBuOSOTj6gHwDsyYhOBF9mC2VbZD
- 76mljsN31oqmqwXAlUvheGc4RYsKJX7lgkBZDplZXq2zm8v36z+XV6t3N9mvy3dvrlbve9a68opa
- baRFGlzk4ZAKtd9Y0eK+js9LCAVqVDvGeyBGKGDj1WC2UcUBWeJoEsoSdLC6dnnjFWiOVVK9F9q6
- 3htHaeCH2alDXWSsB/GJOlJTGC5UcRTPg/hE4FTh9uL7l3eESMdGucJM7To82L+sRiOGkdt4YhZg
- DE7N75x4iAPC71Qr3VItjM3sBktR5DF+2HHHH0EypPERyQeDWebpk2XxSNU3PnZwcdv7itaCv7uT
- CzD2Y8RxTCaafGJG8fCk0tsb/Ov0BrfAXNy9nrCJ05qezEpTtB8bZJnBaHgadRLe36C7fHSY8tt/
- 3Tnen4D0GcqN9j/LOLbBnzEoT2CeV0JLPGH45P1rGNgZ7LOR4mpKbeMXCebd8SlTQk5zMGDbE7Mz
- PCLoBUXoyP3ckoIajbAZoOY2wArIY2cKPY9tDbn0NeiGxxdXA+Po7NycYTjAzXWlC6XGc1gWoUEF
- W6EwBE+6ESYMPkFmNhO5re4xeGVuDHzch06q3fL1+vJmuV5l618vr1EXQmmbWPHOP6l4Tsxxw+di
- HCpnV8LR5O1B1GiNfSEP1dJ1gaUPgBvAIOlnrHODZoKWPfHOp7Cf4iZ7CX4e5DbO3JCRZYvJZoeg
- O/WttJaP7PLWHXXaxk/gC80iCnNCp7143Ku+zpD3aWhkGFZ4IETs4Qgf9Wnye4ifAi5kPKyM3cFy
- p+FfWF3kU6w8r/1cbzBBuXcesEfKi2linIhCP4JY5odrVuAn1PnuMaHbO39r2GyKn11td406kdFd
- jkLr4nIM8YYr8PiI4Z6ByE6ACQihztYgwBe1W03FHmNkEbNGuMP/G1b8C0ph9XZQSwMEFAAAAAgA
- grlOUbIY8KNvAAAAagAAADYAAAAuZ2l0L29iamVjdHMvYTgvNmJlYWE2ZGIwNGViNzZmYTE5ZGNi
- MzhjNjdjMWM1MDIyZDJmZWIBagCV/3gBS8rJT1IwNDBkSCvKz1VIy0kszlbIzC3ILypRcANxuBIL
- ChRsIWyN+Pi8xNzU+HhNLi4HoLheUX5pSaqGkr6SJldKappCRmpOTr6GphWXAhAUpZaUFuUpKHmA
- BBXC84tyUhSVAK3eIqNQSwMEFAAAAAgAgrlOUaPpH3FbAAAAVgAAADYAAAAuZ2l0L29iamVjdHMv
- YTkvYmIxYzRiN2ZkNGEwMDUyNjc1ZmNmOGRhMzZiZGJlYzk3MThlMTMBVgCp/3gBKylKTVUwN2Yw
- NDAwMzFR0EvPLMlMz8svSmUoMvOf+c/7x1U13c8bZxsLaL1aPvEpVJWPp7OrX7Arg7fUVWl9vj9m
- n7sWm8yab/D7pmKpOwCWBR6wUEsDBBQAAAAIAIK5TlGB+pbtzwIAAMoCAAA2AAAALmdpdC9vYmpl
- Y3RzL2FiL2NjNjIwNjY3MGEzNjhmOWE5MDYwMzA4NDVlYzljZWZmMTc3ODI2AcoCNf14AY1VXW/a
- MBTd86T9B8tPXR+S9UOdVCWrIgoFqWWUhE6T0CKTXILVJE5thxR1+++7+aKB0ak84Sv7+Nxzjm8W
- sViQk4vTiw/W1XMSkzVIxUVq0xPjC7369umjFYh0yaNcMo11LBBisSxzQWueRqoqlKUwJI+wsekP
- 92bkO7ee/zCaejPntj9+8IfO+Pq2P6VkzeIcbIrnjUJF3Mc/lJjvwnB63ujB8fq+Nxy5tKTR/BrM
- 68v5SiQwV1zDvCgKKYSeQ7qeu4HkmVbzbKNXIjXgGd68suX5L3qm18pfc6lzFiOon0nxvDEi0P66
- XK5YGsYgjz4fgp789IbfxxPHG24FOES2PWqZ+/JaaqM0JEYBi1aqQCQZjytLSAiLPLKpljl2pplE
- VgPJEiiEfLTpOfrYSGyZe0AdYBckWt/CJyLMY1BE5qkTx3csZRGEd3VxICTWpvCUg9KqvXdrYiNF
- GwyMhoRErIGkSMmmk8qF068oJvMHTOnezajlVxp6aPfZ+Zu7y9h1gUkL2bGQkIzplU0bZsYyiHg3
- QKQM/cKmx7vFRgObVpARr9vf3aOqbE2kCEApIW2KxtYdnp13Ave7W27zWCyxe6RiZJtdUAlK5DIA
- b5OhYLNUZRDwJYdwf9tTziU4QXm3TWvYVyktc88JVLaQ+Dgaj0upS4+3y6bQyOlqDFdABhy3UKK0
- yJou8dE3nndO4lkcEyEvR0QXsXK09IinWa7brKAdGiTOmCWLVec11g/aMg9CWWZJt3NnRb9h22tm
- FJBa/XcxTpgOViSXsU2PjGN8ujxKhYQeUyj7YWoHme03+TLt38/6rufPpqM/tAxf3e0vU1Wimsbx
- 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
- A1ML9xYoxhiNUx25Aj6XV5IWGkpjdPX2DdyAs5OT8/VlXVNjqOCuVSJm5CgxOArcoBAjIaF0iHJy
- IJTmASQXznDoNlspn8YgjFVE2iBow5WGKSpltYgKuFVBkJ5cJPunN2IEBxMBOAWeo3AI0QrvhPSI
- wWpvuPTAO3u0uVT2Rttsd/aeMnvyN7yk/LImX8teYnvwZX1mQuKolTDI2T0HzruTPU81+qe9+6B6
- JeaqzX5ml9XuZ9SFlcjm1rb9cRiuqc2Hu7UPrz9Hpf7TrttC+7B9n6tzH4rf+5mWpfRfpS6BpdwK
- c0daQp9y9wsoSXPZUEsDBBQAAAAIAIK5TlHubrWMPAAAADcAAAA2AAAALmdpdC9vYmplY3RzL2M5
- L2FkMjFkMDNjNmQyMTY5NzA0NDI3MDQ4N2I4NmZiMjcwMDAxMTYwATcAyP94ASspSk1VMLZgMDQw
- MDMxUdBLzyzJTM/LL0plKDLzn/nP+8dVNd3PG2cbC2i9Wj7xKQBjLRItUEsDBBQAAAAIAIK5TlEp
- o4PWsAEAAKsBAAA2AAAALmdpdC9vYmplY3RzL2QxL2FiOTIyYmVhYzczMzhiMTUxZTUwODY1NDNi
- OGVkNTAxMGViODgxAasBVP54AcWTwW7bMAyGdzaQdyC6SwzU9q71qUGBnDZsQ3crikGR6VitJToi
- tS57+lF2t7RFLjsNEGCBon7+/CjvRtrB1Yerd1VVrYrJ7PG7HCdsgY2fRlwVHbKNbhJHoYWLb4Nj
- 0GXAu+C8GZ/zwEwTyGAEOvQUWKIRZBjoCYQgpqA3vhxloADb0fBjzh+dNVkWdG1+pYiwUZFbjD+c
- xRz86EL6WV+sitGEfVJr3K6KCqZZR81G6pKVJWiyQD6dN5XKV7woaTC3tirev3awNAg9xTPV13Pt
- Ml/7Dy3nslv15UmhuKAW/UzqEnQkhhEYUWkj3D0zzQRfsDskZx9ZTJT79SAycds0HVmuvbORmHqp
- LfkGQ5W4mYE1L4A1loIYFzByc1KqFuxlvaC80Zzodklc2P+lpBN5QCswGH0hHU2C3WLz05+68HnC
- ALeUoo74hjqdc6/fkAd58kqaxHPOG8dWb1Cv/nJ+U9ZwjtKJzpsCsN18/ecivTk0JegwZira3F12
- l41cv6J5v/bGjULt+eMSnpwMYMJRyXQuv3v9eQ4JOW95KeA9BmEl/Btm10OrUEsDBBQAAAAIAIK5
- TlEOqnjxqAEAAKMBAAA2AAAALmdpdC9vYmplY3RzL2QyLzhlNzhkMjNmYjg4YjcyYjcyNjcyZDZi
- Yjc1MjBiMWJhNjhjMmMyAaMBXP54AZ2STWvcMBCGexb4PwzksoZ4Teml7KlLYE8tbUmhh5CDVh6v
- lVgar2bUNP31Hdldtvm4tKCDkUczj55X+5H28P7d2zdN01RGaPJuA18eZaAIu9HyPbAN04jQU4Lt
- r5wQttME15h+eIew+uhj/llXZrTxkO0BeVMZgAamuUVlpkRddnLaftFhqV62v+O+NOfKzDCVufgf
- ksp8GzyDLgvBRx/seLqDVXIZrECHgSJLsoIMAz2AEKQc9cSTq2v96J0VrzJ0vYAvm7OAdWUqs1ND
- gVSQjyorzMcuQd1ZRmBEHY1w82dAafeXx2P27p7FJrldDSITb9q2I8fr4F0ipl7WjkKLscnc2hJD
- q3ANLzG0jqJYHzFxe+7ULBnUM9wFXGlN8vssPh4K7mxJ47lDJzBY1dXRJNgtmJ9Oc+HzhBGuKSeN
- +4o6BOpLr5LqmZW0iOeaZ8ROT1CvfKW+rdfwmqWznWcDYLf9+s9Dentsa9AwZit6uZtCV0A+PLF5
- uwrWj0Kb13/X8OBlABsf1UznyyPQl3TMyOWTlwEhYBRWw78BLsIlEVBLAwQUAAAACACCuU5Rfbco
- kkICAAA9AgAANgAAAC5naXQvb2JqZWN0cy9kNC8zOTU5Njc1ZWE3MjlmMDJhYTM0MGQ1MjkyOTE1
- OGI2ZDBhYmJmOQE9AsL9eAF9kUGPmkAAhXvmV8yxDVkFRhhIdpuFEQFFUBSt3BgYkBUEBxDx13e7
- 6bHpO37Je8nLl9RVVXQASeq3jlEKVEioAkU11iRRFAlNJComMc1SkUgpyugMykmMZIlrYkavHaBi
- TDKVoBiSRJIVkknCTJ5lkhSLoqYKKpklKCZU4+K+O9cMzOkVfF8XCavbOut+gFcIFSQjWeNTek1p
- WbxUbda99y1l7eRaM9qU4yQvunNPJkld/QSirMCZIGmqCl4EJAjcJ/180FEGrKKzewJe/9be/1vL
- m7wtcvDyJ4ZpOR7YWBuwcyxP34eB+cU5wIGhNRJD1w2s61tju0xdxW1xYKzQ+WPm3yFzBl1PbcfR
- sXub25vjA0c+vOEp5i/RbpCeHBCxO/S9TUmTa+Gebr1Z6ClepLhZLi9jGa+UY6Mleblq1Eq7bS/P
- KjuesWMejr0WLk8nDvjsYTW2fDBhoIzBtqVNHS3zy2G6WxTOvPbhY7lahunHKayce2ctLfMG9/eU
- ndGRV/xA5oAZypcM06fTu2VyP7OuhMxHdn6cWpdYLSKa2N26nEJibHPHIl4enKDG8+UN44UkwBsH
- pBbNx63NX5oUX8QFGmA03xgfDIa7m3vFQ8+PxBU/ol01OOlKFcdsM9rITXTv4C0esccBtIcwzbKn
- 56wFKDVxFbHRe+BfT3Qdw8QhZuKPJ8O8Stc2CPihNAvGL1YCSzPsT9vTGwferAp9Dn25Mb35v41x
- YZPGHQWBqc/X5qRKfwP/EeMBUEsDBBQAAAAIAIK5TlFZTf/5igEAAIUBAAA2AAAALmdpdC9vYmpl
- Y3RzL2RmLzkzNDg2MGViMTk2MzE1YTA1NDU3ZDdlYTgyMDU1ODQyZGExZjRmAYUBev54AZWST0vk
- QBDFPQt+hwIvDmwmeBDB0w7C3GRXXPAgHiqdimlNd7VdlR3ip7c649/RPSzkkKKr6v3e624GbuD0
- 5HjvEH5P2nOE9YDyAJgSWLF6GjPByooryn+9I7im5mD/YP9P7wXsQwg++oADCIY00DyoPSq0FDiK
- ZlQS6HkDypDHaBO7QoN3qN7U/iW4fFPMlFi8cp7AYYTWZ3I6TNCQ6aWBJ2qLzhfsecOaMwQ2Pz52
- nMOs+QMMGoVAiEB7gpsXusLywfbl6N2DKGYzxk5uj3rVJGd1Xapl8C6zcKdLx6GmWI1SY4muthwr
- 2UZXbajZras70mpeS22V5gtYzKyHcM5Rs29G9fHuzX/KfG+OoUeLvuWkxW+hvnglgF+JIlzxmO2y
- zrkl4K7saken79RsTTL37LA7m+DObfvrxRK+C+09rB0BWK8u/1ukw8d6AXY3pqpo5m4KXQH5+SnX
- 26OAflA++/54ARuvPWCcLJnWlwdlr/JxJCm/shUIgaKKJfwMt9UPDVBLAwQUAAAACACCuU5RY2Y+
- ijECAAAsAgAANgAAAC5naXQvb2JqZWN0cy9lMS9hYmY4YjdhM2JjMjU2YmYyMDQ1NGYyMmExMTk4
- MDhiNGM3YWJlOQEsAtP9eAF9kV9vokAAxO+ZT7Hv5pQ/CwtJe+miQhGFCrS2vLHLiiAIwiLIp297
- d4+Xm6fJJL/JJEPrqso5QJL4g7eMAUmjiQENYmhpghKWqOpRRSk0UqSqmi6SowTFFBmq0CQtu3DA
- DJloMmFISolGiJ6oVPsqO2pMUTSqqIlOdElDSEh6fqpbsGTNKenANr+AB/rty/zy1Hes7eaXumVN
- eZ9nOT/1ZE7r6heQVBUiKIsQgpkoi6LwlX7t5awFds6fewIe/mJP/8WyJuvyDPz8lrm2HQ+82C8g
- dGwPR6/B+ncuAAEMnUlNjM0lxntzv6FXpaPLwHTRqYD+TWmdAeP02XGwm8xii9sHWlkhMa+uMbrh
- 4MgCMJiRp1czfMWLzegvBz/heisGHLXH08ZkQwAdC+IIrQ0VMZ3FkUz2jPZXx1WnsrorArAOA53y
- qDY96/1qX7CYrra6M0bWeVjEvJi2beW6XeXWWpPFTrXPDEeGnT3GidshinsBrLnb7Fdn1Tncw3Ka
- OFQsyFdj5HnR6O6CrRoW5ZnfS0itVXgWldmiZEWzi/LY0/l7WgigWhZDA8WYvMDREKfMjsTdYNX3
- swaRyU97tH8ugo9NrCxvK0j8kZ1vH6Iv3couPfHzmy8AaHf0TSOLAkmHuzbb9rLJN/3h2Ic+ykJP
- 9+l06HNJwv5i6RzNazfdmhvZvVeLw1sY148CeMTQiIU/n6291b8fE16bNOEMBGu82q3nVfoJwdje
- uVBLAwQUAAAACACCuU5Rr7THA3ACAABrAgAANgAAAC5naXQvb2JqZWN0cy9lOS8yYjYyYmU3MWRi
- NmJiOGE1YzY3MTBmNmUzMzZjMzVhOGI4MTY3NwFrApT9eAF9Ucluo0AUnDNf0dIco8S9gAEpGQWw
- WYzteMOxfaObNsZuwCztha8fZ5bbaN7hqVSqkl69YmWeZy0wIP7W1pwDU1M1klCeQJMgpHLCiUYJ
- 0QyKUV+HCdYgoibEyjmuedECE6mYYoNjTPuYQYIowfsYMYo0RkgS68yEGsPwr56pkO8pfWxDR7AP
- MdfNRDcQM6iqEoZ0Y4+xrjEllu2hrIHDz4e4AeOsAK/sC4useJcNr5uXoqz5Wdxf0qw9SPrCyvwH
- QBrpawY2VR08QQyh8mAf+VpeAy9rfUnB6x/b+39t6TltshQ8f4099IIpmHkzsAy8qbWKFsNfvAIU
- cG1sZluW7VjW3J6PqMijo7OwQ/1wVD8upA6ulpX4QWB5Qa962lWymXtLtXPqC+NJuFkrYLh9qF08
- CN0BDaIBT8X6ynRYxjtvOcxNKwmRJNLeLaUX+JvVXPg5SkKee9o2Sp1jooByvG00vCN0TsZ5uXAd
- 2R0brk+2l8ugBwU2S2ysosHwLhbdBl+kVgk9xHrPlTNZTC+xAtyR/jFpOq1YduYUnpO1Nscn0XhF
- 5Zz8TXFdR5/weNxwviCX0ekj726fFaHEmTmJ2O1b53HDQt+XqWhvNYvC603sl0ORF111uoW4Wps4
- vOywB+/dKCfS55NNXppDmNVHH58wU527AlCpo8MC9z+Pjfc0NerHX5YbEbgzX+62T0E9G0UnlJ2M
- JOpW9nZlrpNxWg1cumv8yXl8fVPAmxu7M+V3Z8Pp4N+NKRNepxycpRCg5pXkTQu+IwL2dZkDq5M1
- f17G+VnwpkdlJtrnrFAU+wuBrPgJX6T7HVBLAwQUAAAACACCuU5REBcGajYCAAAxAgAANgAAAC5n
- aXQvb2JqZWN0cy9mMS81ODNlOGFhZjA4NWM3MjA1NGE5NzFhZjlkMmJkNDJiN2QwMzBjYgExAs79
- eAF9UUuTmkAYzJlfMXdrFeQxULWbWlBBBARRdhduAzPDQxAcwNevj5vkmErfur+vu7qqs7ZpygFA
- Af4YGCFApQrikUQ1rGkYqSQVcZrKWIRUyehcxpSgDKuY5zrEyGkAikhE5Xl6Ps6plhGo0kziRao8
- aYYyBWq8lM41xKFxKFoGcJv14FUUFShDWZt805eOtXjMhvexJ6yfnlpGuvo+zcuhGNNp1jY/gSBD
- QYCqpEDwwkOe557qs/ZAGLDKYT2m4PWv7f2/trzL+zIHL98wVpa9BYEVgL1tbfVDFK5+6xzgwLU3
- MkPXjYWu74zdBndHWi1Cw4FFJfkXkdlXXcdr29bN8hZ3wb42LZWvIHYKGiV7ZnCApo+N13VR7MKc
- F9Bk66PKP44wDatb60/cx72b585j0zidJpt8H5gH5+TsnLt1cc164nHAilJVXNTRp+1UdXtxY38m
- DY/Dfrav1TG+9nKI9zTR6TheS6VarxP7IexgcamaI3PtesaBYZJce3LwLOxu7kyj/NdomEGlOLaP
- 56WBlq7OLwS7/Siqs7oM9eb46ScSygP34U3IvXkmaF8kH6XrnXk9H8+re3/12MqOl7OtTC9LIUFU
- Tft6rdbGZR4H2leDmL/t92HgMSadbA7E2P0Uovgs3KLaxEkJA+2inSPVCSwszE6Bt3GK2hJ7qkji
- 7JyH5i5LivBGbudmrertGwfeoiD94P5sttou/70YF3UYDQSEK33praYN/gU0mOM/UEsDBBQAAAAI
- 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==
+ UEsDBBQAAAAIAISdXVFbwg3ocwIAAJoEAAAKAAAALmdpdGlnbm9yZW1UTWvcMBC9G/wfBOkpxN5L
+ 6aHHNC0EQghNk0spiyyPbWVtjZBmnVV/fWckb5pCL5Zm3nzPky/UdSJoDC7eztCrnUJPdrG/8/3m
+ 7k4NrI91td/7ZLSZYL/f1dVl69NPg/0vvn7wqTWzjmxUVxfqi4ITgYsWXRTDiEV/YyMF2x2JAQ7t
+ tTno0bqxrtqHRBO6ugK3cuzuaOeezx5WmNE3MI5RRPaXA1/djLoX1Ya02znbrnw/feTT60CijZvj
+ qkMunI0b6wYUR+si6Zn7bs0wbmCp9iHdblgQUT3FIwtJ0QQRykyUDqBegyXuVnVJaeVzHyqaYD2p
+ IeDCSoLFz5ogh+lgQPZ6F13ldqME5sHBlYqoNIuorHsBQ6pn3x0yHJSUHfkrILVS76KdHSBSHrQH
+ U4r/G3zGkZfgrW/41tKJitDDDLx1mmxsehs4DYZUYPF/cpa47ki8J4MrBD2CCuCRJ1pXEy0za2V+
+ hCc5zjbvru2lCMKXunIYQaLF9rTMdfVmkqXLqyyz9ZS8tBmtbE3K+BG0izy6M5MWzMTDrcqbF+1G
+ VJGOw/BZEG6R149Gz3tOSMytyDQtxt+YoIc327x3Z0CKf4WOuQsUm61cMX80Qfv0Zt/GLG+Yn6w7
+ qR7NcQFHuT7hpYm7/Zm7hULXIklvpMMItOlvC93VPRJ0iAfhoU+u23N2c/DI+92ekk/8IhguvGp4
+ TDHnEszwCkNiQmliwk3QH+fCSx5whgRpzkjx6TljDpi/olltICZ2ltfy/L7eP8tYNqk0nLgL5QNm
+ Qp5nK2PJyAYU4+/o4X+mgfX/GD5beVLqkY69RfUFe6HPGvmnAjnvH1BLAwQUAAAACACEnV1RjGpL
+ gWAAAABtAAAABgAAAGFwcC5weSWJsQqFMAwA90D+IXaqILoLwpse/oFjKZii2JoS6/9b8ba7CyqJ
+ QvTXQXvKooX+ryD4nGn6xDp3+sTOtQgIv3p6lbuwNYOpaeVAG8coth0RqKJcbj3JzG/taBGNa2MQ
+ HlBLAwQUAAAACACEnV1RQcF3To8CAACfBAAABwAAAExJQ0VOU0VdU81u4jAQvlfqO4w4tVLUve/N
+ BFOsTeLIMe1yDIkhXoUY2aaob78zSaBqJSTk8Xx/Mw4AQC40ZLYxQzCPD48PWIHUnT+9PXYRnppn
+ yG3jXXCHiHV/dr6O1g0vwPoexqYA3gTjP0z7ciMojT/ZELAPbIDOeLP/hKOvh2jaBA7eGHAHaLra
+ H00C0UE9fMLZ+IAAt4+1HexwhBoaNDIxYnvskIt8XGtvENFCHYJrbI2k0LrmcjJDHM3BwfYmwFPs
+ DCyqGbF4HpVaU/cTpR2AGm73cLWxc5dIaaK3DREl2NT0l5bc3K57e7KzDMGnEUyMSH8JGIhsJ3By
+ rT3QvxlTni/73oYugdYS//4SsRioOM4+oUS/nIdg+tkg0liMMUb/8jk2ktSZhhznsQWqXDt3+p7J
+ zs4OFz+guBmBrcMxjtr/TBOpQpiD63t3paSNG1pLAcPv20I1NtR792HGbNPbGFxE65MbWs35a+nz
+ VehqfCR7M08R1XHm9c94npyEiI/D1j3gAxulf8a+vy294VDJtX5nioOooFTyTaz4ChaswvMigXeh
+ N3KrATsUK/QO5BpYsYM/olglwP+WilcVSDXxibzMBMcLUaTZdiWKV1giuJD4WQj8OJBZy1F15hO8
+ Isacq3SDR7YUmdC7ZGJbC10Q+1oqYFAypUW6zZiCcqtKWXE0skLuQhRrhVI854V+QWmsAX/DA1Qb
+ lmWkNxGyLYZRZBdSWe6UeN1o2MhsxbG45OiRLTM+6WHGNGMiT2DFcvbKR5REqjkq9U5m4X3DqU7K
+ DH+pFrKgVKkstMJjgqGVvuPfRcUTYEpUNJ+1kvmcl+aMMDkyIbjgExXt4PuqsIXO24rfWWHFWYaE
+ FYHviW+Ix4f/UEsDBBQAAAAIAISdXVG/IIiLswEAAH4DAAAJAAAAUkVBRE1FLm1klZJBb9swDIXv
+ BvwfiOaSAHN892lBgJw2bEV3C4pBlelYqyUqEr0t+/Uj7dRri6LAAB8EieR776OrqiqLaE74nS8R
+ G8jGxwHLosVsk4vsKDRwswPvgvNmuL6DiRG4NwzWBHhAGDO2wAQtegqZk2GUcxzo4sIJDoPJj9qT
+ tWb3Z0wIO5lwh+mnswgU4JML4+/tTVkMJpxG8ZObsqggXrinIA4TtaPl+dLogOVQydwqz5PkUvOU
+ xQq+Tp1X6avrjtIb6utJe6Nt33qXQT6z5F2sv4g7R5sjvxNHRx5E0ykSsS8ws76mMQTlYkL7jBL3
+ CJZa/AAZEY63o7OPmU3iBvYJlah5SqV+XHhH+n7dM8fc1HVLNm+9s4kydby15OsJW/0MW31etKqZ
+ +GbyvlrBngIn9zCyOFwIyTZ+oGXojaBqKbKSEPfHz0868CVigDsak5jaSyigTmfpEv95IynKU80r
+ h4qBOjvX15stKEVPEtYFWaI3inLCNMm+EoDD7va/RTpzrjcgMnLBRoYctVFrPr5ou1974wam5u3n
+ Dfxy3MtmL0KmdepT/qLziPm6fRXwHgNnQfwXUEsDBBQAAAAIAISdXVFwKD1JFAAAABQAAAAQAAAA
+ cmVxdWlyZW1lbnRzLnR4dHPLSSzOtrM11DPQsQGShnpGvFwAUEsDBBQAAAAIAISdXVHzjpxMdQAA
+ AIkAAAANAAAALmF6dXJlL2NvbmZpZzXMQQoCMQyF4X0gd5gLDIy69gYuXLkRKTGTGYulDU0zenyL
+ IrzVx8+7zrKQp2Y3hLUW1+E4MKUt5rGJtbGuCPb0rufdZY9AqiZ1iyyaKP9iflAg03CK2d+BJbdK
+ yS1MCKkwtVi+4d8RXnLvQDYvfYep3yJ8AFBLAQIUABQAAAAIAISdXVFbwg3ocwIAAJoEAAAKAAAA
+ AAAAAAAAAAC2gQAAAAAuZ2l0aWdub3JlUEsBAhQAFAAAAAgAhJ1dUYxqS4FgAAAAbQAAAAYAAAAA
+ AAAAAAAAALaBmwIAAGFwcC5weVBLAQIUABQAAAAIAISdXVFBwXdOjwIAAJ8EAAAHAAAAAAAAAAAA
+ AAC2gR8DAABMSUNFTlNFUEsBAhQAFAAAAAgAhJ1dUb8giIuzAQAAfgMAAAkAAAAAAAAAAAAAALaB
+ 0wUAAFJFQURNRS5tZFBLAQIUABQAAAAIAISdXVFwKD1JFAAAABQAAAAQAAAAAAAAAAAAAAC2ga0H
+ AAByZXF1aXJlbWVudHMudHh0UEsBAhQAFAAAAAgAhJ1dUfOOnEx1AAAAiQAAAA0AAAAAAAAAAAAA
+ ALaB7wcAAC5henVyZS9jb25maWdQSwUGAAAAAAYABgBRAQAAjwgAAAAA
headers:
Accept:
- '*/*'
@@ -2200,11 +1403,11 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '47968'
+ - '2550'
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-pythonapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -2214,13 +1417,14 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:13:38 GMT
+ - Fri, 30 Oct 2020 02:45:50 GMT
location:
- - https://up-pythonapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-15_06-13-38Z
+ - https://up-pythonapp000003.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2020-10-30_02-45-50Z
server:
- Kestrel
set-cookie:
- - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
status:
code: 202
message: Accepted
@@ -2238,26 +1442,70 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":0,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Preparing deployment for commit id ''526d63046c''.","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:52.8168904Z","end_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:
- - '473'
+ - '504'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 30 Oct 2020 02:45:52 GMT
+ location:
+ - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.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.14.0
+ method: GET
+ uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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:40 GMT
+ - Fri, 30 Oct 2020 02:45:56 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2279,27 +1527,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:45:59 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2321,27 +1570,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:02 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2363,27 +1613,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2405,27 +1656,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:09 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2447,27 +1699,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2489,27 +1742,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2531,27 +1785,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:17 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2573,27 +1828,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:20 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2615,27 +1871,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2657,27 +1914,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:27 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2699,27 +1957,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:28 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2741,27 +2000,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2783,27 +2043,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:35 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2825,27 +2086,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:38 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2867,27 +2129,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2909,27 +2172,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:43 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2951,27 +2215,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46:45 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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -2993,27 +2258,28 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Running oryx build...","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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
+ - Fri, 30 Oct 2020 02:46: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
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -3035,24 +2301,68 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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"}'
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","status":1,"status_text":"Building
+ and Deploying ''526d63046c5141ff8e395baac8f47e8f''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created
+ via a push deployment","progress":"Triggering recycle (preview mode disabled).","received_time":"2020-10-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_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:
+ - '557'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 30 Oct 2020 02:46:51 GMT
+ location:
+ - http://up-pythonapp000003.scm.azurewebsites.net:80/api/deployments/latest
+ server:
+ - Kestrel
+ set-cookie:
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.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.14.0
+ method: GET
+ uri: https://up-pythonapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"526d63046c5141ff8e395baac8f47e8f","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-30T02:45:52.8168904Z","start_time":"2020-10-30T02:45:53.1944185Z","end_time":"2020-10-30T02:46:52.2098364Z","last_success_end_time":"2020-10-30T02:46:52.2098364Z","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
+ - Fri, 30 Oct 2020 02:46:53 GMT
server:
- Kestrel
set-cookie:
- - ARRAffinity=baf0a037314cc2bea3f1b93162c29a0f2ab486dd6cc60bfb01a944d37ba816dd;Path=/;HttpOnly;Domain=up-pythonappb5rja76sonzm.scm.azurewebsites.net
+ - ARRAffinity=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
+ - ARRAffinitySameSite=40b45f0624d0dbfccd23ea62135551a8ccc3170eb13646b7781105e7501c4119;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-pythonappo527ox4wtvvl.scm.azurewebsites.net
transfer-encoding:
- chunked
vary:
@@ -3075,7 +2385,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -3083,7 +2393,7 @@ interactions:
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}}'
+ 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-30T02:45:02.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-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
@@ -3092,9 +2402,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:35 GMT
+ - Fri, 30 Oct 2020 02:46:55 GMT
etag:
- - '"1D6A2BA323DC255"'
+ - '"1D6AE66AA53F095"'
expires:
- '-1'
pragma:
@@ -3129,7 +2439,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.14.0
accept-language:
- en-US
method: GET
@@ -3137,7 +2447,7 @@ interactions:
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}}'
+ 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-30T02:45:02.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-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
@@ -3146,9 +2456,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:36 GMT
+ - Fri, 30 Oct 2020 02:46:55 GMT
etag:
- - '"1D6A2BA323DC255"'
+ - '"1D6AE66AA53F095"'
expires:
- '-1'
pragma:
@@ -3183,7 +2493,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.14.0
accept-language:
- en-US
method: GET
@@ -3191,7 +2501,7 @@ interactions:
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}}'
+ 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-30T02:45:02.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-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
@@ -3200,9 +2510,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:36 GMT
+ - Fri, 30 Oct 2020 02:46:55 GMT
etag:
- - '"1D6A2BA323DC255"'
+ - '"1D6AE66AA53F095"'
expires:
- '-1'
pragma:
@@ -3241,7 +2551,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.14.0
accept-language:
- en-US
method: POST
@@ -3249,13 +2559,13 @@ interactions:
response:
body:
string:
@@ -3263,11 +2573,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1152'
+ - '1157'
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:14:36 GMT
+ - Fri, 30 Oct 2020 02:46:55 GMT
expires:
- '-1'
pragma:
@@ -3281,7 +2591,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -3300,7 +2610,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.14.0
accept-language:
- en-US
method: GET
@@ -3308,7 +2618,7 @@ interactions:
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
+ US","properties":{"numberOfWorkers":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:
@@ -3319,7 +2629,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:36 GMT
+ - Fri, 30 Oct 2020 02:46:56 GMT
expires:
- '-1'
pragma:
@@ -3356,7 +2666,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.14.0
accept-language:
- en-US
method: POST
@@ -3373,7 +2683,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:37 GMT
+ - Fri, 30 Oct 2020 02:46:56 GMT
expires:
- '-1'
pragma:
@@ -3391,7 +2701,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -3410,7 +2720,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.14.0
accept-language:
- en-US
method: GET
@@ -3427,7 +2737,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:37 GMT
+ - Fri, 30 Oct 2020 02:46:57 GMT
expires:
- '-1'
pragma:
@@ -3462,7 +2772,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.14.0
accept-language:
- en-US
method: GET
@@ -3470,8 +2780,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":4075,"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_4075","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
@@ -3480,7 +2790,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:14:38 GMT
+ - Fri, 30 Oct 2020 02:46:57 GMT
expires:
- '-1'
pragma:
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
index e24b3cf3222..22086ab19bc 100644
--- 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
@@ -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.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:56 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,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.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:56 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:56 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,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.14.0
accept-language:
- en-US
method: GET
@@ -280,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:56 GMT
+ - Fri, 30 Oct 2020 02:45:00 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -323,7 +323,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:56 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
expires:
- '-1'
pragma:
@@ -350,7 +350,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.14.0
accept-language:
- en-US
method: GET
@@ -366,7 +366,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:57 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
expires:
- '-1'
pragma:
@@ -399,7 +399,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.14.0
accept-language:
- en-US
method: POST
@@ -415,7 +415,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:58 GMT
+ - Fri, 30 Oct 2020 02:45:01 GMT
expires:
- '-1'
pragma:
@@ -452,7 +452,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.14.0
accept-language:
- en-US
method: GET
@@ -524,7 +524,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -563,11 +563,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:10:57 GMT
+ - Fri, 30 Oct 2020 02:45:02 GMT
expires:
- '-1'
pragma:
@@ -604,7 +604,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -618,7 +618,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:58 GMT
+ - Fri, 30 Oct 2020 02:45:02 GMT
expires:
- '-1'
pragma:
@@ -645,7 +645,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.14.0
accept-language:
- en-US
method: GET
@@ -661,7 +661,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:58 GMT
+ - Fri, 30 Oct 2020 02:45:03 GMT
expires:
- '-1'
pragma:
@@ -690,7 +690,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -704,7 +704,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:10:58 GMT
+ - Fri, 30 Oct 2020 02:45:03 GMT
expires:
- '-1'
pragma:
@@ -731,7 +731,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.14.0
accept-language:
- en-US
method: GET
@@ -747,7 +747,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:10:58 GMT
+ - Fri, 30 Oct 2020 02:45:02 GMT
expires:
- '-1'
pragma:
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
index 3c6eac63403..33a2c5b2e3c 100644
--- 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
@@ -18,7 +18,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:03 GMT
+ - Fri, 30 Oct 2020 02:46:26 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -143,7 +143,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -182,11 +182,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:04 GMT
+ - Fri, 30 Oct 2020 02:46:26 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -237,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:11:04 GMT
+ - Fri, 30 Oct 2020 02:46:27 GMT
expires:
- '-1'
pragma:
@@ -264,7 +264,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -280,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:04 GMT
+ - Fri, 30 Oct 2020 02:46:27 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -325,7 +325,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:04 GMT
+ - Fri, 30 Oct 2020 02:46:27 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -374,7 +374,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:05 GMT
+ - Fri, 30 Oct 2020 02:46:27 GMT
expires:
- '-1'
pragma:
@@ -411,7 +411,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -483,7 +483,7 @@ interactions:
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
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"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
@@ -522,11 +522,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '17003'
+ - '17011'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:05 GMT
+ - Fri, 30 Oct 2020 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -563,7 +563,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -577,7 +577,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:11:05 GMT
+ - Fri, 30 Oct 2020 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -604,7 +604,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -620,7 +620,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:06 GMT
+ - Fri, 30 Oct 2020 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -649,7 +649,7 @@ interactions:
- -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
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -663,7 +663,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:11:05 GMT
+ - Fri, 30 Oct 2020 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -690,7 +690,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -706,7 +706,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:05 GMT
+ - Fri, 30 Oct 2020 02:46:29 GMT
expires:
- '-1'
pragma:
@@ -740,7 +740,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -748,8 +748,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":65910,"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-153_65910","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
@@ -758,7 +758,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:14 GMT
+ - Fri, 30 Oct 2020 02:46:37 GMT
expires:
- '-1'
pragma:
@@ -776,7 +776,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -797,7 +797,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -805,8 +805,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":65910,"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-153_65910","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
@@ -815,7 +815,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:14 GMT
+ - Fri, 30 Oct 2020 02:46:38 GMT
expires:
- '-1'
pragma:
@@ -856,7 +856,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -872,7 +872,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:14 GMT
+ - Fri, 30 Oct 2020 02:46:38 GMT
expires:
- '-1'
pragma:
@@ -897,7 +897,7 @@ interactions:
- 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"},
+ "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"},
{"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", "value": "True"}], "localMySqlEnabled":
false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": true}}'
headers:
@@ -910,14 +910,14 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '552'
+ - '554'
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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -925,20 +925,20 @@ interactions:
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
+ US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.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-30T02:46:47.4433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":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}}'
+ 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":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","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'
+ - '5606'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:37 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
etag:
- - '"1D6A2BA00D641EB"'
+ - '"1D6AE66E97B22AB"'
expires:
- '-1'
pragma:
@@ -981,7 +981,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -990,19 +990,19 @@ interactions:
body:
string:
@@ -1014,7 +1014,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:37 GMT
+ - Fri, 30 Oct 2020 02:47:05 GMT
expires:
- '-1'
pragma:
@@ -1028,7 +1028,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1049,7 +1049,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1057,18 +1057,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.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-30T02:46:48.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":"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":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","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'
+ - '5406'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:38 GMT
+ - Fri, 30 Oct 2020 02:47:06 GMT
etag:
- - '"1D6A2BA00D641EB"'
+ - '"1D6AE66E97B22AB"'
expires:
- '-1'
pragma:
@@ -1110,7 +1110,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -1127,9 +1127,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:39 GMT
+ - Fri, 30 Oct 2020 02:47:08 GMT
etag:
- - '"1D6A2BA0BC4B82B"'
+ - '"1D6AE66F5244360"'
expires:
- '-1'
pragma:
@@ -1147,7 +1147,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -1170,7 +1170,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1178,7 +1178,7 @@ interactions:
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"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-statichtmlapp000003","publishingPassword":"7i7txhXuTbl2pNnKeXi8PlJSKiNaWamrv8nG7lDW5tAm0Bwjxki1wp9295gj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-statichtmlapp000003:7i7txhXuTbl2pNnKeXi8PlJSKiNaWamrv8nG7lDW5tAm0Bwjxki1wp9295gj@up-statichtmlapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1187,7 +1187,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:41 GMT
+ - Fri, 30 Oct 2020 02:47:07 GMT
expires:
- '-1'
pragma:
@@ -1226,7 +1226,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1234,18 +1234,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.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-30T02:47:07.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","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'
+ - '5401'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:41 GMT
+ - Fri, 30 Oct 2020 02:47:09 GMT
etag:
- - '"1D6A2BA0BC4B82B"'
+ - '"1D6AE66F5244360"'
expires:
- '-1'
pragma:
@@ -1286,7 +1286,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1295,19 +1295,19 @@ interactions:
body:
string:
@@ -1319,7 +1319,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:41 GMT
+ - Fri, 30 Oct 2020 02:47:08 GMT
expires:
- '-1'
pragma:
@@ -1333,7 +1333,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11997'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -1341,7 +1341,7 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIAGK5TlFgPZ8JswcAAGMQAAAKAAAALmdpdGlnbm9yZZVXbXPbNhL+zl+BG3faWLXJ
+ UEsDBBQAAAAIAM2dXVFgPZ8JswcAAGMQAAAKAAAALmdpdGlnbm9yZZVXbXPbNhL+zl+BG3faWLXJ
xm3Tu94nW7aT9CzbtZRLZjIaDUiCIiKQwACgXvqhv/2eBUj5NZ3eTAKBwGKB3X322fXBAXu/bLUV
7L/SdVyxqe9KqZkXjdGW2x2rpBLuiOWdVCWzwnXK45O3ZXJwEDfZUrTCci9Klu+Y0aZT3D7Rx8vy
WLcuTZID9sEJe+yMKGQli6giGaWu0xg77PU/2rmCF7WgPdWmpS6cxyXuKyrYq4lu9blYC6VN9ok3
@@ -1376,7 +1376,7 @@ interactions:
rhEdsFLoqYirn/g3SVu/dgvecrVz0tE7n+fpm76Ri323UcuXRDZD58qGP7z6F+HzufwVoWmKIgyq
j8p13yeMqKmZTa5iVmZ7nO0pJ4qcC7fy2vxfUhP4Qk14Kytq/0I5J6EY3K/q6LefH17crv3iYuup
/sLe0PggYJ7aEXAPYLBjDTy7RIuYGtrJwpiKrUjC7LiKcMTJy9P/XLBjdgkQYCdJK4xh4zfhzywq
- uWN3kprNFCPP+j/aJZ7xP1BLAwQUAAAACABiuU5RFBwZldkDAADxCAAACgAAAGluZGV4Lmh0bWyV
+ uWN3kprNFCPP+j/aJZ7xP1BLAwQUAAAACADNnV1RFBwZldkDAADxCAAACgAAAGluZGV4Lmh0bWyV
VsFu4zYQve9XzOqyCVBKdVoURWEZSJ0F2qKbpnCKbYFeRtJYokORWpKS48X+WQ/9pP5Ch5LsWI67
aAwDHkpvhjPz3pD+56+/569vflne/3H3Fipfq8WrefgBhbpMI9LR4hXAvCIsgsFmTR4hr9A68mnU
+rX4Njp+VXnfCPrQyi6Nfhe/XYulqRv0MlMUQW60J81+P75NqShp4qmxpjTqJG0bY/0ReCsLX6UF
@@ -1394,7 +1394,7 @@ interactions:
BP0G6bkexL1QxVQOJ4L43Dl2crb/hB2u+junh6Qv/jzdDCH63dBxzj9kSizjUecFj0gdSnPmcHKG
CUGeV9Y/n5OHOMMVOOgw3MzuuyTBDT7GpTGsUGyki/kY6J8lSmYu2XxoWSfJLJ7N4q/GVX8fbVy0
mCdDwEn0xVbqwmzjza8BC58+HRKMt5YPjIs3kzTiOOEvTwtPfLJxSceVGftspz/3W725PLvrEGxz
- emueZjlPhiuSJ6X/d/MvUEsDBBQAAAAIAGK5TlFBwXdOjwIAAJ8EAAAHAAAATElDRU5TRV1TzW7i
+ emueZjlPhiuSJ6X/d/MvUEsDBBQAAAAIAM2dXVFBwXdOjwIAAJ8EAAAHAAAATElDRU5TRV1TzW7i
MBC+V+o7jDi1UtS9780EU6xN4sgx7XIMiSFehRjZpqhvvzNJoGolJOTxfH8zDgBALjRktjFDMI8P
jw9YgdSdP709dhGemmfIbeNdcIeIdX92vo7WDS/A+h7GpgDeBOM/TPtyIyiNP9kQsA9sgM54s/+E
o6+HaNoEDt4YcAdoutofTQLRQT18wtn4gAC3j7Ud7HCEGho0MjFie+yQi3xca28Q0UIdgmtsjaTQ
@@ -1406,13 +1406,13 @@ interactions:
kPhZCPw4kFnLUXXmE7wixpyrdINHthSZ0LtkYlsLXRD7WipgUDKlRbrNmIJyq0pZcTSyQu5CFGuF
UjznhX5BaawBf8MDVBuWZaQ3EbIthlFkF1JZ7pR43WjYyGzFsbjk6JEtMz7pYcY0YyJPYMVy9spH
lESqOSr1TmbhfcOpTsoMf6kWsqBUqSy0wmOCoZW+499FxRNgSlQ0n7WS+ZyX5owwOTIhuOATFe3g
- +6qwhc7bit9ZYcVZhoQVge+Jb4jHh/9QSwMEFAAAAAgAYrlOUTqh1TM8AQAAYAIAAAkAAABSRUFE
+ +6qwhc7bit9ZYcVZhoQVge+Jb4jHh/9QSwMEFAAAAAgAzZ1dUTqh1TM8AQAAYAIAAAkAAABSRUFE
TUUubWSVkTFrwzAQhXeD/8NBl3iwvXtqKIQMDaUkkCFkUKRzrGLpHOnc0v76nmLSpiFLN3H33n3v
TmVZ5hnTYHUDy83qGZbY9wRbCr3Js17546iOGJs8AyjPijwbAplR86U4/xoDwnwYYI3h3Wq8Lm/x
kFoxz8pEyrOHO5g823Q2QlRu6BEMOvKRg2KMoICt/7yWT34luJYC7K64+1nHPMSmrg3pWDmrA0Vq
udLkapXi1GIr46QuqinOE3kO9jAK5/gTRVZ8Q83QKYlgaGA0wB3CbnUZCi8DeljTGDTKDINAbZqV
LvMbhEQUz5qbOFoc1OpJXxcVLGQZR3Ix62Uvp9iSh4g4YW8AsJi//hvSqlNdgGCkwEqG7JIxaR7/
- 2PYzp2zP1NxvF/BhuQMlv6KMsSmn6uE0YkzPOAGcQ89RLvwNUEsDBBQAAAAIAGK5TlF2WaQYEQsA
+ 2PYzp2zP1NxvF/BhuQMlv6KMsSmn6uE0YkzPOAGcQ89RLvwNUEsDBBQAAAAIAM2dXVF2WaQYEQsA
ABRmAAAXAAAAY3NzL2Jvb3RzdHJhcC10aGVtZS5jc3PtXWuP2zYW/Z5foUVQdCawZVt+T5Fisdmi
CJDsh90ssMCiHyiJ8gi1JUGSMxMU+e/lQ7RFiaQokm4nQEftzJiSzrkkrw4f92oye/O3V94b7x95
Xld1CQrv89Jf+hvv7rGui4fZ7ADrkJ3zo/x0j69+lxdfyvTwWHvBfLGYom9r79NTWtewnHjvs8jH
@@ -1463,7 +1463,7 @@ interactions:
NlrBZWIRlBqH5SBmTUlcxay7Jt82Zk3ZbJyA7Um5mRy0g7UgCSKLfYpxWC5i1YTEWay6Y/KNY9WE
zcYPmt0pN27QDtKGUWTlBqOwXMSoCYmzGHXH5BvHqAmbmRs8wePRLAxNp8FuwtCjsAzD0HQR4CwM
rTDZTRiaTfydhaEFGQn40MnCXAoXm5OBd7y0kjCNob++mr157VX5uYzgR1AUSLb+++8Pby//5Mq0
- foQn6EdV5Z9Agf+pld8BUEsDBBQAAAAIAGK5TlF6ZDGD0xsAAFq6AAAbAAAAY3NzL2Jvb3RzdHJh
+ foQn6EdV5Z9Agf+pld8BUEsDBBQAAAAIAM2dXVF6ZDGD0xsAAFq6AAAbAAAAY3NzL2Jvb3RzdHJh
cC10aGVtZS5jc3MubWFw7T0Jc9s21n8Fnztp7YaSdVg+tzu2ZdlRm6tNupvsZmdCkZDEWiJZkvKR
Tv774uHgCZAgJTXpNys1NQk+vBvv4aT+2LnDQeh47s5p39gJvVVg4XDn9N87E8+Lwigw/VY0x0vc
tsJwx9hZ4DDcZwVwKUqWzoPjhvt32LW9oOUHeOo84FAGMgtM28FuJH0Y4BBHramziHDAnv/H2HHN
@@ -1589,7 +1589,7 @@ interactions:
sldjXwT6kOUc1029oIJlOW8VpcpIntPwKIYvMY3lBNYCGyhNwMigVpt5I7jkhmXCizMSYtVdemL8
DDYezha4JL1XtSpa3+DeqPtWcQ6dvtZ887lue/wK2PrSPH1OzbSwUz+swYu3KCV7s2Gn2qO3Qi5m
28zYPl8y0oqnZBLpDDgQBGMogoQe+vZgmgdFcydkVQmh+GTQeCTe0CRe3JQeaMGqTeYMOnO/xmEp
- /8O8H3bEWYad/3z+L1BLAwQUAAAACABiuU5R42wfaMYKAABxWwAAGwAAAGNzcy9ib290c3RyYXAt
+ /8O8H3bEWYad/3z+L1BLAwQUAAAACADNnV1R42wfaMYKAABxWwAAGwAAAGNzcy9ib290c3RyYXAt
dGhlbWUubWluLmNzc+1cW4/buhF+P79CRRCc3cCWZdleX4IsiqYHBwGSPrQpUKDoAyVRXuHYkiBp
sxsE+98rXuQlpaFEUjZ8HhIhyZqc+TjijD6RnPHO3v3lF+ed87csq8qqQLnzbeEu3Dvn5qGq8t1s
tsdV0PS5YXa8JdIfs/x7kewfKsf35vNp/c/K+fqUVBUuJs6nNHSJ0OckxGmJI+cxjXDhfPn0lYGW
@@ -1638,7 +1638,7 @@ interactions:
p9Mk2y6aTmMjWfmTHDiMdOYp2RQu8SI2Pp3X1h+XSGPg1ok0ybaLJtLYSFbO5AcPI1+er2kmFPuh
8QZWW39kCo2C26fQRNsum0KjI1n5kx1AjHTna4IpCEMLd+rqj0yeUXD75Jlo22WTZ3QkQ3c+4cPB
NEfGVnf2OTJdfYscGVu3jsiRwbadJUfWLFXPkCPrJD3JNVTitOjubSY9BfvKCidTnJdfZu/eOGX2
- WIT4C8rzmin+/c/PH06/zHpaPeAjdo9J6oZl6R5R7ryb/R9QSwMEFAAAAAgAYrlOURs0FGe7AwAA
+ WIT4C8rzmin+/c/PH06/zHpaPeAjdo9J6oZl6R5R7ryb/R9QSwMEFAAAAAgAzZ1dURs0FGe7AwAA
nBUAAB8AAABjc3MvYm9vdHN0cmFwLXRoZW1lLm1pbi5jc3MubWFw7VhNc5swEP0vXE0bit18tCch
JBsT4rqduOPp9OBJCCE2EMB27HT637tIIOQP4rRReujUh51nIT2t3i7Lwg9t6Wd5mMTah7au5cki
u/Jz7cM3bebn+dH81o/8twXUdD4Shaswzo+WfnydZG/uM/8mXPn5vilBNrkO/Xi+92Lm5/78zU04
@@ -1656,7 +1656,7 @@ interactions:
ldP6FDq0O08J7cLrg49tNWQPQJZb5L0atjWwRVD61bAZ3LczNWymV9zw5EgNW4v7NhOZspbejBP5
Ldml6/M+3N6YVM+uMxf9QWsQnI/0B7bqtLLd/Z9fhiQeEBWHDAcigc9p2TKIDmgoPiNcQgnDsdfQ
7wSNh4Ki0/GKWk3ef1KTfp/6BduJGjaDs52pYTOBzYT0U8PW4b7dDpWwHQPbsUXu1LAlw77ukZUa
- snxYpSBuXzz1gS7Yyr3yAXqgWdhdo/38BVBLAwQUAAAACABiuU5RRKe1DENTAACiOgIAEQAAAGNz
+ snxYpSBuXzz1gS7Yyr3yAXqgWdhdo/38BVBLAwQUAAAACADNnV1RRKe1DENTAACiOgIAEQAAAGNz
cy9ib290c3RyYXAuY3Nz7b1rkyPHkSD4vX8F1DQZu0kAjXcVisa+ndOu7chsNB9udWZrRvHOEshE
IUUACSUS/dBc72+/eKdHuHtkJFBsrsakEsmqDHcPD3cPD4+Xx7vvfvdq8N3g/6yq5tLU2XnwYT6e
j1eDN/umOT+9e/dcNBtbNt5Wx7cS+g/V+XNdPu+bwWwynY7Ev5aDP38sm6aoh4M/nrZjCfRv5bY4
@@ -2031,7 +2031,7 @@ interactions:
u2nY09QwXoKpMUjdpnZ4DkyNo5Ruaow07rYpju79xhOnfJ+V0EOxDqWJeASFZPe4XFMLHrzSa0np
V6Ya7KTSq/E0YOhhS2ToOZWd69IcY08IcVtgAr93ryVREzouj9fddxVu0H0j9Jge7KP2myZwMuzX
1wNc0J/vYaGnWyCxX0ga9/sRQNr0DlLRTAd59903g0t1rbfFn7LzuTw9/9//17/9uKmq5iLm++fx
- 9nIZH7Pz4Lt3r/5/UEsDBBQAAAAIAGK5TlG9aVk8fSQBAGvwBQAVAAAAY3NzL2Jvb3RzdHJhcC5j
+ 9nIZH7Pz4Lt3r/5/UEsDBBQAAAAIAM2dXVG9aVk8fSQBAGvwBQAVAAAAY3NzL2Jvb3RzdHJhcC5j
c3MubWFw1L0Ll9s4sib4V3LcZ053X2WmSFFP+0zvpCilUnZm+VHldruqevcwJSZFiSIpPvSaqf3t
CyAAEARAUunue+dsVXdZ5hcRiAgEgMCD4P96s3eT1I/CN2+t6zdplCcLN33z9rc3z1GUpVnixLeL
NH1z/SZw07QdRsnWCfyze4v/yp7GiR9mpSdecIpX/iIK09LjdOG8vETB0g+90vOtf/TDtL13w2WU
@@ -3345,7 +3345,7 @@ interactions:
Qm5MXP2HvTp2Nv9hSdPO5m+39bPV20zA69rIVopxZjwnKTSCqgy1JhOLW1ovGoStWoJkh4J0/8IU
XUxm1wMrYmf57xU2muGr6eVuhlnMifhkv4OPH3bkNnPt7UUEqEFJB27TYieCIJu8q6HuQxxEDbuW
K7tZSYfn1Sxyw/otCxJ4VTb17Noql9HtF5Vt4PPUBDqSvqtlMKsa0Lzm9k5KFRmOG1Wk9yEGUmtN
- ZTlSnG7W99FOEZbsQ0RCXHpKMXibSearMeCvBp/RCmSntotode+v7/8vUEsDBBQAAAAIAGK5TlFu
+ ZTlSnG7W99FOEZbsQ0RCXHpKMXibSearMeCvBp/RCmSntotode+v7/8vUEsDBBQAAAAIAM2dXVFu
6zj1EU0AAKzZAQAVAAAAY3NzL2Jvb3RzdHJhcC5taW4uY3Nz7X1rk+PIjeD3/RVyT0xM97SkpqhX
SRVTt3vejV1HrP3h1hexEeO+C0qkSvRQokxS/Rid9rdfvh9IgKRUNWNfnN1hW5WJRCIBJJAJZiI/
fP+bfxh8P/jvZdnUTZWcBp+m4+l4MXi7b5rT+sOH56zZ6Lrxtjy849C/LU9fq/x53wziaDIZsf+Z
@@ -3692,7 +3692,7 @@ interactions:
LeKHULT4mVl2xB+06xZ/7wHeLv/+qO9QgFuR360BE3FA10FZPPeUtQPYImsIRcuauWNH1kG7blkj
Q7ldqhiSO+RHo7lVUoHtl4uilpXJzfZEYXSsazfGDgVVKJ0Z243S8Ew1dlQANjZsPVX5saHAVBcS
hmjSruM+bIuaI4C0pgtgV9mx1lDffeBeizFs4F0zAkAD1b+hn85Jg8LfP657ZpdCpPStVZeu//Dh
- +28GdXmuttnvk9MpPz7/z//x7z9s2K6zZpuX05jp8Xhb1+NDchp8/+H/AlBLAwQUAAAACABiuU5R
+ +28GdXmuttnvk9MpPz7/z//x7z9s2K6zZpuX05jp8Xhb1+NDchp8/+H/AlBLAwQUAAAACADNnV1R
Ev6C5KtLAACQ1AAAGQAAAGNzcy9ib290c3RyYXAubWluLmNzcy5tYXDVvV2X4jrPKPhf9i21D+E7
nHMV2yFASFF0dXU1PWsu6CoqhPCdhACz5r8fyV8xgera+3nfdWZNX1QHRZZlSZZlW3b+n7+O80MS
bTd//c/Gw1/JNju8zZO//uf/9ddqniTVzfawnq2iy/x/4M+/HgR0d4g2qYL83m7TJD3Mdv/jjf9+
@@ -4033,7 +4033,7 @@ interactions:
qyJ4r13xbkveF03Be9Q0eW8hrgVoYfOW9+uXJd4P1QCzyECqVc67fpnDy1pVGpRd5ZGSehdio6tS
YevwsfxuhyAUSF5+J24r4PLEF03lgkEarRE/yPhidLUZ/pyDOheP11LbAol0aUqtsnj8KYTZLMTm
BAjjwhOSvmhbTgi3QxjNALxqKnc7BytBHzSDPtvg3tt5kywioaQBJbixmCUSWYLrBsajsSwRi6p/
- wZxEkhMl6G4EPh2MYfkoTsZqkdO2+vKH2pd6/uv//d9QSwMEFAAAAAgAYrlOUVjHsZxGTgAAn04A
+ wZxEkhMl6G4EPh2MYfkoTsZqkdO2+vKH2pd6/uv//d9QSwMEFAAAAAgAzZ1dUVjHsZxGTgAAn04A
ACYAAABmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLmVvdIy3Y3AmTvAu+sa2/cZO
3tgb27ZtY5NsbNu2vbFte2NsbGeD+/ufc+vUrXu/3O7qqe6nn+numi8zk68AAAjLAwDg/ykk4H8E
CvC/BQyQAAb4D5NT+r8BcMD/yfxvoUb3ZwD8f4QGIAmQA2gDlABSAGmAKEARoABQBQD/i4wBdgCL
@@ -4386,7 +4386,7 @@ interactions:
eVONzU1XNTJcVMZvUuWlS1aVMMiOrATguxqCjCgKLaAksoCSmgGAlA2kAiE2poSid4jqSKKpDoaj
+fqPRxL5raARTyAgcn4HB+BlfgYv4F3+BbfgVn4FL+BQfgU3oFN6BO+gS/oEl6BGdgQXYDv2A69g
OXYF0SMKSqQa3BenQs1OgiyQ5NfOH8XTrbInsAAAAQMBYAAAFaEn4o8QgmAEXExU/vDZAkEYcBJC
- c4EpcoUh1QriKAoD0gRpgmBQSwMEFAAAAAgAYrlOUXzuxsmvaAAAwqgBACYAAABmb250cy9nbHlw
+ c4EpcoUh1QriKAoD0gRpgmBQSwMEFAAAAAgAzZ1dUXzuxsmvaAAAwqgBACYAAABmb250cy9nbHlw
aGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLnN2Z+29a4/kSJYl9n1/BVUC9EECs2hvM033LKCZxUKA
SlpAKwn6JNR2VbU3wKka7+L6jPLX655zr5H0CHd6ZERUZtao0V3pDNJotMc1s/s89w///l//aR4u
P/7117/88vMfv3Efpm+GX5fvf/7h+/mXn3/84zc///LNv//7f/eH/+Yf/7d/+M//93/6D8Ovlz8P
@@ -4857,7 +4857,7 @@ interactions:
HYczy1E2S8MBuujA25AynWx6eJEw2IhvltOYGInEpfY0WmismgsLU3/5JSmgIh6QYazq9+Oa16VV
VdEFyDO6BtyHP3I/pRUqw3d9SX47h01Jh/D1njnuS6UjON2/Qc6MGfTtktMdIeTl7Hg0Ac0wPfqO
fbRJu5/y998/7XWRVgRou7OOrrqBcngjtUSIgip03HIFcTGzBkgnSwjv1oy+bqKdwQOsGTPZFk1K
- lg3V3yvXOusJdNk0LN/+9MvPC35/+PGnX//+D9/+evnz3w//H1BLAwQUAAAACABiuU5Rmhc8nEZb
+ lg3V3yvXOusJdNk0LN/+9MvPC35/+PGnX//+D9/+evnz3w//H1BLAwQUAAAACADNnV1Rmhc8nEZb
AABcsQAAJgAAAGZvbnRzL2dseXBoaWNvbnMtaGFsZmxpbmdzLXJlZ3VsYXIudHRm7L1pYBvVtQA8
dxaN9tE2kmVbtiXZkuXdkiXFceLsu7NvDksIRBASSGKWhABhC2FfGlpwCPtLCqQhIWEpS0lbCqXo
ldeWUtMWCq2TB3x5LeUBTQsk1uQ7585otRPo69d/nxPNvXPnzj3n7uece84ZhjAMIzHXMhzTN3Xq
@@ -5268,7 +5268,7 @@ interactions:
+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
+ /Zb0W9JvSb8l/Zb0W9JvSb9l1O9wIByOWSXCXiF08FVXWzut1057We23/hNQSwMEFAAAAAgAzZ1d
UeoUe/WCWgAAgFsAACcAAABmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLndvZmZk
dXNwJU6wdbyxbWvjjW1nY2Nj27atjW3b3ti8sTZObmznvv299/33TdWpnj7TM6d7qqbHQ1FSEgwc
7N/QDQRD+c826v2f//8PSUk1BTAwcK1/U8L/YEefviUlLiH5j3P955P8Aym4OBiUoioz2z8u9Z8v
@@ -5676,7 +5676,7 @@ interactions:
+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
+ b2rSbodEp3Rv74q4pQLu+teHjq6r2U+FhvZfUEsDBBQAAAAIAM2dXVF26MNhdkYAAGxGAAAoAAAA
Zm9udHMvZ2x5cGhpY29ucy1oYWxmbGluZ3MtcmVndWxhci53b2ZmMgAmQNm/d09GMgABAAAAAEZs
AA8AAAAAsVwAAEYJAAECTQAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGiAGYACMcggEEQgKgqkk
geVlATYCJAOGdAuEMAAEIAWHIgeVUT93ZWJmBhtljDXsmI+A80Cgwj/+vggK2vaIIBusdPb/n5Sg
@@ -5994,7 +5994,7 @@ interactions:
v7z33PXdMp8dtXN2kO/AzPIdkJnZZVcdqwCJtZHgAgAAAABARERERCQiIiIiYmZmZmbWfQOQWBsJ
DtNPAYQwxhhjRERERESstdZamzZX8jA4QtbnEEkbpQ8AAAAAAAAAAJATAAAAgy4BSKyNBFcIAAAA
AAAACqLfiBPH0DmgAIl1hCqllFIqSl59gB4UxDpNlLQkSZIkSdIORoKLmZmZmXnRn5773vPAX1fN
- xv08Rzz+AwAAUEsDBBQAAAAIAGK5TlEPF/FMgNMAAGzTAAAUAAAAaW1nL2F6dXJlLXBvcnRhbC5w
+ xv08Rzz+AwAAUEsDBBQAAAAIAM2dXVEPF/FMgNMAAGzTAAAUAAAAaW1nL2F6dXJlLXBvcnRhbC5w
bmcAFUDqv4lQTkcNChoKAAAADUlIRFIAAAEsAAAAqQgGAAAAkXcAqgAAABl0RVh0U29mdHdhcmUA
QWRvYmUgSW1hZ2VSZWFkeXHJZTwAANMOSURBVHja7L0HkCTZeR74vcwsX9VV1d5M93RPj5/ZWW+w
i10ssQAOgOhAgkeKF+RRDCnIUMSFLuKMQqELikeJvODFSSfFiTxdIOJIgiHFkZLoQcJqQSywfnd2
@@ -6945,7 +6945,7 @@ interactions:
vcZboj4Qog9/yD2R4B1w7Z9r9Y6vOc+ltYk8FNOrq/OUXtl7FF5xY3DiB4MoUCh0IBTwCvl36ZiD
PsVzyHvkHD9n2oJyx9nJPR2YlTuOV1kDjQ8UZ4K6fcdh5zun4fTmBwpPZeqk7DXeeElUwsn971Ws
C9kSgELoqhc1FDReUTz98fo6uKdCPBvCdbPcPf8/AQYA5ArHvsIrNu0AAAAASUVORK5CYIJQSwME
- FAAAAAgAYrlOUdBfzvrQDwAA0g8AAAsAAABpbWcvY2RuLnBuZ02XdzzV3x/HPy5XMnJtl4yUGddF
+ FAAAAAgAzZ1dUdBfzvrQDwAA0g8AAAsAAABpbWcvY2RuLnBuZ02XdzzV3x/HPy5XMnJtl4yUGddF
MiIje2V3cXGvvSqy+bqIK6OUa1wj84ZI172Rzb1W9ohEJQoZlT0qo363/vqdP845j/M45/14v99n
PV8plhaGbMwCzAAAsBkb6VkDAB0/rZ/BxEir+Q0qpWgNNEQfEWJz2yskHH3HE9DxuO3mKWp8E+3t
ae2J9ogMGvDUAAD2EGM9HduI998Lnc3OTvP0jWF2R9RRyZOXa56nvnp5cbHFPN82HS9zp1zVlySg
@@ -7016,7 +7016,7 @@ interactions:
idCSnsyiR5NTAaIw2lV6YYlUJZZKxJrj2RID9ZLNKDbvaejMLw5D995Ze7GleNjbrV62kE/weBhh
VNy0oSBZTy8iDP5kGZRn/+0WsjXs5sHqa8J/61rkJubontDhlG95Oe1yqLOs8LuwtF5xSXiqflmO
WsGbz1CxSFwMTSZUsatopscioGOr5c9Nif09hhY+TMmdAGH2AqZJ4alFa3Q4P4heOzIjZXxR/LrY
- 0wep0HCTOL7/l7hxS8eucXTAOnWB8nH92ezfIWN9Cz2iLuru/wBQSwMEFAAAAAgAYrlOUfVPJ2ou
+ 0wep0HCTOL7/l7hxS8eucXTAOnWB8nH92ezfIWN9Cz2iLuru/wBQSwMEFAAAAAgAzZ1dUfVPJ2ou
NwAAWg0BAA8AAABqcy9ib290c3RyYXAuanPtfX93G8et6P/6FCNH95IbU5Qct7eJElpHtpRb3edY
epbc3D5VbVfkStqE4rLcpWWlVj/7AzC/gNnZJSk7zr3nWKenMXdmMBgMBgNgMJitL9fX1JfqeVFU
ZTVLp+rt0/7T/n+o7nVVTXe2tq6y6sKW9YfFTYK1XxTTu1l+dV2pr7afPNmE//u9Or3Nqyqb9dTh
@@ -7265,7 +7265,7 @@ interactions:
N9ARgxXaIbsyd/RiqN8z05CNdOgyJyJC4PFP4dCaXuwxIpq5xAsX7O/2u+vYxmf9XCJYiJtEq8Vo
/NbxGZyQv0pshp1D7lEiLvkEMRl6CVinj2YO/hc6mLTJJl1MexoGn+HF8Reyz6VcTVZGLnA2aQza
4i3isRZLRFUQBg8MqnA8NuDRFJY78JeNDB2IX+/f43OZbOZZoVRYE97OZukUwMT6DGCZTTAKq7Ib
- pKxvsarHixCfM86Tbq7/D1BLAwQUAAAACABiuU5ROjrf2hImAAAEkAAAEwAAAGpzL2Jvb3RzdHJh
+ pKxvsarHixCfM86Tbq7/D1BLAwQUAAAACADNnV1ROjrf2hImAAAEkAAAEwAAAGpzL2Jvb3RzdHJh
cC5taW4uanPlPVt728h17/kVJNalgSUIUXauoGF+Xtv56nazu117m69VlWQADEjIFMElIcmOyPz2
njP3GQxIyUnz0heJGMz1zLmfM4Ozr4e/GHw9+KZp2l27JZvB7fPkefLrQbhs2016dragbS7fJUVz
HWHt183m87ZeLNvBs+n5+QT+/Grw4a5uW7qNB+/WRYKVvq0Lut7RcnCzLul20C7p4A/vPgxWvBhq
@@ -7437,31 +7437,31 @@ interactions:
oh2WB80SWwOVRyywbRwu58EkGOPVLhFQkVT48SColkj9H5q5gkZHrw+3WO7S5LfGeYC5XKxJdWGU
ds/hn6ChWqeb1sqaEkuNAzENdMUbiztYBxO8tMWSthaTfFKhbm9qSqyPmf4ptSUuuzz6En9xWmPi
vfU7CI64Avi6Tn4UUH9NIFJZ1pn8sd+D/BccUxR9w6DELiIVyfAcbk6FyGn2Ae9T020wB8x4pTQ9
- FGaWI2L2v1BLAQIUABQAAAAIAGK5TlFgPZ8JswcAAGMQAAAKAAAAAAAAAAAAAAC2gQAAAAAuZ2l0
- aWdub3JlUEsBAhQAFAAAAAgAYrlOURQcGZXZAwAA8QgAAAoAAAAAAAAAAAAAALaB2wcAAGluZGV4
- Lmh0bWxQSwECFAAUAAAACABiuU5RQcF3To8CAACfBAAABwAAAAAAAAAAAAAAtoHcCwAATElDRU5T
- RVBLAQIUABQAAAAIAGK5TlE6odUzPAEAAGACAAAJAAAAAAAAAAAAAAC2gZAOAABSRUFETUUubWRQ
- SwECFAAUAAAACABiuU5RdlmkGBELAAAUZgAAFwAAAAAAAAAAAAAAtoHzDwAAY3NzL2Jvb3RzdHJh
- cC10aGVtZS5jc3NQSwECFAAUAAAACABiuU5RemQxg9MbAABaugAAGwAAAAAAAAAAAAAAtoE5GwAA
- Y3NzL2Jvb3RzdHJhcC10aGVtZS5jc3MubWFwUEsBAhQAFAAAAAgAYrlOUeNsH2jGCgAAcVsAABsA
- AAAAAAAAAAAAALaBRTcAAGNzcy9ib290c3RyYXAtdGhlbWUubWluLmNzc1BLAQIUABQAAAAIAGK5
- TlEbNBRnuwMAAJwVAAAfAAAAAAAAAAAAAAC2gURCAABjc3MvYm9vdHN0cmFwLXRoZW1lLm1pbi5j
- c3MubWFwUEsBAhQAFAAAAAgAYrlOUUSntQxDUwAAojoCABEAAAAAAAAAAAAAALaBPEYAAGNzcy9i
- b290c3RyYXAuY3NzUEsBAhQAFAAAAAgAYrlOUb1pWTx9JAEAa/AFABUAAAAAAAAAAAAAALaBrpkA
- AGNzcy9ib290c3RyYXAuY3NzLm1hcFBLAQIUABQAAAAIAGK5TlFu6zj1EU0AAKzZAQAVAAAAAAAA
- AAAAAAC2gV6+AQBjc3MvYm9vdHN0cmFwLm1pbi5jc3NQSwECFAAUAAAACABiuU5REv6C5KtLAACQ
+ FGaWI2L2v1BLAQIUABQAAAAIAM2dXVFgPZ8JswcAAGMQAAAKAAAAAAAAAAAAAAC2gQAAAAAuZ2l0
+ aWdub3JlUEsBAhQAFAAAAAgAzZ1dURQcGZXZAwAA8QgAAAoAAAAAAAAAAAAAALaB2wcAAGluZGV4
+ Lmh0bWxQSwECFAAUAAAACADNnV1RQcF3To8CAACfBAAABwAAAAAAAAAAAAAAtoHcCwAATElDRU5T
+ RVBLAQIUABQAAAAIAM2dXVE6odUzPAEAAGACAAAJAAAAAAAAAAAAAAC2gZAOAABSRUFETUUubWRQ
+ SwECFAAUAAAACADNnV1RdlmkGBELAAAUZgAAFwAAAAAAAAAAAAAAtoHzDwAAY3NzL2Jvb3RzdHJh
+ cC10aGVtZS5jc3NQSwECFAAUAAAACADNnV1RemQxg9MbAABaugAAGwAAAAAAAAAAAAAAtoE5GwAA
+ Y3NzL2Jvb3RzdHJhcC10aGVtZS5jc3MubWFwUEsBAhQAFAAAAAgAzZ1dUeNsH2jGCgAAcVsAABsA
+ AAAAAAAAAAAAALaBRTcAAGNzcy9ib290c3RyYXAtdGhlbWUubWluLmNzc1BLAQIUABQAAAAIAM2d
+ XVEbNBRnuwMAAJwVAAAfAAAAAAAAAAAAAAC2gURCAABjc3MvYm9vdHN0cmFwLXRoZW1lLm1pbi5j
+ c3MubWFwUEsBAhQAFAAAAAgAzZ1dUUSntQxDUwAAojoCABEAAAAAAAAAAAAAALaBPEYAAGNzcy9i
+ b290c3RyYXAuY3NzUEsBAhQAFAAAAAgAzZ1dUb1pWTx9JAEAa/AFABUAAAAAAAAAAAAAALaBrpkA
+ AGNzcy9ib290c3RyYXAuY3NzLm1hcFBLAQIUABQAAAAIAM2dXVFu6zj1EU0AAKzZAQAVAAAAAAAA
+ AAAAAAC2gV6+AQBjc3MvYm9vdHN0cmFwLm1pbi5jc3NQSwECFAAUAAAACADNnV1REv6C5KtLAACQ
1AAAGQAAAAAAAAAAAAAAtoGiCwIAY3NzL2Jvb3RzdHJhcC5taW4uY3NzLm1hcFBLAQIUABQAAAAI
- AGK5TlFYx7GcRk4AAJ9OAAAmAAAAAAAAAAAAAAC2gYRXAgBmb250cy9nbHlwaGljb25zLWhhbGZs
- aW5ncy1yZWd1bGFyLmVvdFBLAQIUABQAAAAIAGK5TlF87sbJr2gAAMKoAQAmAAAAAAAAAAAAAAC2
- gQ6mAgBmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLnN2Z1BLAQIUABQAAAAIAGK5
- TlGaFzycRlsAAFyxAAAmAAAAAAAAAAAAAAC2gQEPAwBmb250cy9nbHlwaGljb25zLWhhbGZsaW5n
- cy1yZWd1bGFyLnR0ZlBLAQIUABQAAAAIAGK5TlHqFHv1gloAAIBbAAAnAAAAAAAAAAAAAAC2gYtq
- AwBmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLndvZmZQSwECFAAUAAAACABiuU5R
+ AM2dXVFYx7GcRk4AAJ9OAAAmAAAAAAAAAAAAAAC2gYRXAgBmb250cy9nbHlwaGljb25zLWhhbGZs
+ aW5ncy1yZWd1bGFyLmVvdFBLAQIUABQAAAAIAM2dXVF87sbJr2gAAMKoAQAmAAAAAAAAAAAAAAC2
+ gQ6mAgBmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLnN2Z1BLAQIUABQAAAAIAM2d
+ XVGaFzycRlsAAFyxAAAmAAAAAAAAAAAAAAC2gQEPAwBmb250cy9nbHlwaGljb25zLWhhbGZsaW5n
+ cy1yZWd1bGFyLnR0ZlBLAQIUABQAAAAIAM2dXVHqFHv1gloAAIBbAAAnAAAAAAAAAAAAAAC2gYtq
+ AwBmb250cy9nbHlwaGljb25zLWhhbGZsaW5ncy1yZWd1bGFyLndvZmZQSwECFAAUAAAACADNnV1R
dujDYXZGAABsRgAAKAAAAAAAAAAAAAAAtoFSxQMAZm9udHMvZ2x5cGhpY29ucy1oYWxmbGluZ3Mt
- cmVndWxhci53b2ZmMlBLAQIUABQAAAAIAGK5TlEPF/FMgNMAAGzTAAAUAAAAAAAAAAAAAAC2gQ4M
- BABpbWcvYXp1cmUtcG9ydGFsLnBuZ1BLAQIUABQAAAAIAGK5TlHQX8760A8AANIPAAALAAAAAAAA
- AAAAAAC2gcDfBABpbWcvY2RuLnBuZ1BLAQIUABQAAAAIAGK5TlH1TydqLjcAAFoNAQAPAAAAAAAA
- AAAAAAC2gbnvBABqcy9ib290c3RyYXAuanNQSwECFAAUAAAACABiuU5ROjrf2hImAAAEkAAAEwAA
+ cmVndWxhci53b2ZmMlBLAQIUABQAAAAIAM2dXVEPF/FMgNMAAGzTAAAUAAAAAAAAAAAAAAC2gQ4M
+ BABpbWcvYXp1cmUtcG9ydGFsLnBuZ1BLAQIUABQAAAAIAM2dXVHQX8760A8AANIPAAALAAAAAAAA
+ AAAAAAC2gcDfBABpbWcvY2RuLnBuZ1BLAQIUABQAAAAIAM2dXVH1TydqLjcAAFoNAQAPAAAAAAAA
+ AAAAAAC2gbnvBABqcy9ib290c3RyYXAuanNQSwECFAAUAAAACADNnV1ROjrf2hImAAAEkAAAEwAA
AAAAAAAAAAAAtoEUJwUAanMvYm9vdHN0cmFwLm1pbi5qc1BLBQYAAAAAFQAVAKwFAABXTQUAAAA=
headers:
Accept:
@@ -7477,7 +7477,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-statichtmlapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -7489,18 +7489,18 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Oct 2020 06:11:48 GMT
+ - Fri, 30 Oct 2020 02:47:15 GMT
expires:
- '-1'
location:
- - https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-15_06-11-48Z
+ - https://up-statichtmlapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-30_02-47-15Z
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
+ - ARRAffinity=9e5f3094bd196c13904d9e836a48b048684e2b4551551a13bc41c3f7ade383f2;Path=/;HttpOnly;Secure;Domain=up-statichtmlapp4z6y2dr6.scm.azurewebsites.net
+ - ARRAffinitySameSite=9e5f3094bd196c13904d9e836a48b048684e2b4551551a13bc41c3f7ade383f2;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-statichtmlapp4z6y2dr6.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -7522,23 +7522,23 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"d554762e2f104e6ab148398e5d143cc0","status":1,"status_text":"Building
+ and Deploying ''d554762e2f104e6ab148398e5d143cc0''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2020-10-30T02:47:16.3035395Z","start_time":"2020-10-30T02:47:16.4910449Z","end_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'
+ - '564'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:51 GMT
+ - Fri, 30 Oct 2020 02:47:18 GMT
expires:
- '-1'
location:
@@ -7548,8 +7548,8 @@ interactions:
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
+ - ARRAffinity=9e5f3094bd196c13904d9e836a48b048684e2b4551551a13bc41c3f7ade383f2;Path=/;HttpOnly;Secure;Domain=up-statichtmlapp4z6y2dr6.scm.azurewebsites.net
+ - ARRAffinitySameSite=9e5f3094bd196c13904d9e836a48b048684e2b4551551a13bc41c3f7ade383f2;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-statichtmlapp4z6y2dr6.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -7571,22 +7571,22 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"d554762e2f104e6ab148398e5d143cc0","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"","received_time":"2020-10-30T02:47:16.3035395Z","start_time":"2020-10-30T02:47:16.4910449Z","end_time":"2020-10-30T02:47:20.101826Z","last_success_end_time":"2020-10-30T02:47:20.101826Z","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'
+ - '679'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 15 Oct 2020 06:11:53 GMT
+ - Fri, 30 Oct 2020 02:47:21 GMT
expires:
- '-1'
pragma:
@@ -7594,8 +7594,8 @@ interactions:
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
+ - ARRAffinity=9e5f3094bd196c13904d9e836a48b048684e2b4551551a13bc41c3f7ade383f2;Path=/;HttpOnly;Secure;Domain=up-statichtmlapp4z6y2dr6.scm.azurewebsites.net
+ - ARRAffinitySameSite=9e5f3094bd196c13904d9e836a48b048684e2b4551551a13bc41c3f7ade383f2;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-statichtmlapp4z6y2dr6.scm.azurewebsites.net
vary:
- Accept-Encoding
x-aspnet-version:
@@ -7620,7 +7620,7 @@ interactions:
- -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
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -7628,18 +7628,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.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-30T02:47:07.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","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'
+ - '5401'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:53 GMT
+ - Fri, 30 Oct 2020 02:47:22 GMT
etag:
- - '"1D6A2BA0BC4B82B"'
+ - '"1D6AE66F5244360"'
expires:
- '-1'
pragma:
@@ -7674,7 +7674,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.14.0
accept-language:
- en-US
method: GET
@@ -7682,18 +7682,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.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-30T02:47:07.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","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'
+ - '5401'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:54 GMT
+ - Fri, 30 Oct 2020 02:47:22 GMT
etag:
- - '"1D6A2BA0BC4B82B"'
+ - '"1D6AE66F5244360"'
expires:
- '-1'
pragma:
@@ -7728,7 +7728,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.14.0
accept-language:
- en-US
method: GET
@@ -7736,18 +7736,18 @@ interactions:
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}}'
+ US","properties":{"name":"up-statichtmlapp000003","state":"Running","hostNames":["up-statichtmlapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.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-30T02:47:07.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","ftpUsername":"up-statichtmlapp000003\\$up-statichtmlapp000003","ftpsHostName":"ftps://waws-prod-dm1-153.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","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'
+ - '5401'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:55 GMT
+ - Fri, 30 Oct 2020 02:47:22 GMT
etag:
- - '"1D6A2BA0BC4B82B"'
+ - '"1D6AE66F5244360"'
expires:
- '-1'
pragma:
@@ -7786,7 +7786,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.14.0
accept-language:
- en-US
method: POST
@@ -7795,19 +7795,19 @@ interactions:
body:
string:
@@ -7819,7 +7819,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 15 Oct 2020 06:11:55 GMT
+ - Fri, 30 Oct 2020 02:47:22 GMT
expires:
- '-1'
pragma:
@@ -7852,7 +7852,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.14.0
accept-language:
- en-US
method: GET
@@ -7871,7 +7871,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:56 GMT
+ - Fri, 30 Oct 2020 02:47:24 GMT
expires:
- '-1'
pragma:
@@ -7908,7 +7908,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.14.0
accept-language:
- en-US
method: POST
@@ -7916,16 +7916,16 @@ interactions:
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"}}'
+ US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","SCM_DO_BUILD_DURING_DEPLOYMENT":"True","WEBSITE_HTTPLOGGING_RETENTION_DAYS":"3"}}'
headers:
cache-control:
- no-cache
content-length:
- - '390'
+ - '392'
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:56 GMT
+ - Fri, 30 Oct 2020 02:47:24 GMT
expires:
- '-1'
pragma:
@@ -7943,7 +7943,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11997'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -7962,7 +7962,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.14.0
accept-language:
- en-US
method: GET
@@ -7979,7 +7979,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:56 GMT
+ - Fri, 30 Oct 2020 02:47:24 GMT
expires:
- '-1'
pragma:
@@ -8014,7 +8014,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.14.0
accept-language:
- en-US
method: GET
@@ -8022,8 +8022,8 @@ interactions:
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}}'
+ US","properties":{"serverFarmId":65910,"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-153_65910","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
@@ -8032,7 +8032,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 15 Oct 2020 06:11:57 GMT
+ - Fri, 30 Oct 2020 02:47:25 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
index cd467fa876a..2fe9d957321 100644
--- 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
@@ -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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -34,7 +34,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:00 GMT
+ - Fri, 30 Oct 2020 02:47:02 GMT
expires:
- '-1'
pragma:
@@ -71,7 +71,159 @@ 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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.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;DSERIES"}},{"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:
+ - '17011'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:47: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.14.0
accept-language:
- en-US
method: HEAD
@@ -85,7 +237,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:07:00 GMT
+ - Fri, 30 Oct 2020 02:47:03 GMT
expires:
- '-1'
pragma:
@@ -112,7 +264,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -128,7 +280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:07:01 GMT
+ - Fri, 30 Oct 2020 02:47:02 GMT
expires:
- '-1'
pragma:
@@ -157,7 +309,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -171,7 +323,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:07:01 GMT
+ - Fri, 30 Oct 2020 02:47:03 GMT
expires:
- '-1'
pragma:
@@ -198,7 +350,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -214,7 +366,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:07:01 GMT
+ - Fri, 30 Oct 2020 02:47:03 GMT
expires:
- '-1'
pragma:
@@ -247,7 +399,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -263,7 +415,159 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:02 GMT
+ - Fri, 30 Oct 2020 02:47: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 -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.14.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;DSERIES"}},{"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:
+ - '17011'
+ content-type:
+ - application/json
+ date:
+ - Fri, 30 Oct 2020 02:47:03 GMT
expires:
- '-1'
pragma:
@@ -300,7 +604,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -314,7 +618,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:07:02 GMT
+ - Fri, 30 Oct 2020 02:47:04 GMT
expires:
- '-1'
pragma:
@@ -341,7 +645,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -357,7 +661,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:07:02 GMT
+ - Fri, 30 Oct 2020 02:47:04 GMT
expires:
- '-1'
pragma:
@@ -386,7 +690,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-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: HEAD
@@ -400,7 +704,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:07:02 GMT
+ - Fri, 30 Oct 2020 02:47:04 GMT
expires:
- '-1'
pragma:
@@ -427,7 +731,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -443,7 +747,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:07:03 GMT
+ - Fri, 30 Oct 2020 02:47:04 GMT
expires:
- '-1'
pragma:
@@ -477,7 +781,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -485,8 +789,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":"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}}'
+ US","properties":{"serverFarmId":53664,"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-057_53664","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
@@ -495,7 +799,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:15 GMT
+ - Fri, 30 Oct 2020 02:47:15 GMT
expires:
- '-1'
pragma:
@@ -534,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -542,8 +846,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":"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}}'
+ US","properties":{"serverFarmId":53664,"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-057_53664","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
@@ -552,7 +856,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:16 GMT
+ - Fri, 30 Oct 2020 02:47:15 GMT
expires:
- '-1'
pragma:
@@ -593,7 +897,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -609,7 +913,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:16 GMT
+ - Fri, 30 Oct 2020 02:47:15 GMT
expires:
- '-1'
pragma:
@@ -655,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -663,20 +967,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","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
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-057.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-30T02:47:22.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":[{"ipAddress":"Any","action":"Allow","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}}'
+ 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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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'
+ - '5580'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:43 GMT
+ - Fri, 30 Oct 2020 02:47:39 GMT
etag:
- - '"1D6A6643AFF6C4B"'
+ - '"1D6AE66FE1B2F60"'
expires:
- '-1'
pragma:
@@ -717,7 +1021,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -734,7 +1038,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:43 GMT
+ - Fri, 30 Oct 2020 02:47:39 GMT
expires:
- '-1'
pragma:
@@ -777,7 +1081,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -794,9 +1098,9 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:44 GMT
+ - Fri, 30 Oct 2020 02:47:40 GMT
etag:
- - '"1D6A664457F0120"'
+ - '"1D6AE6708DADA75"'
expires:
- '-1'
pragma:
@@ -839,7 +1143,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -848,17 +1152,17 @@ interactions:
body:
string:
@@ -870,7 +1174,7 @@ interactions:
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 22:07:45 GMT
+ - Fri, 30 Oct 2020 02:47:41 GMT
expires:
- '-1'
pragma:
@@ -884,7 +1188,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -905,7 +1209,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -913,18 +1217,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","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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-057.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-30T02:47:40.7433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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'
+ - '5385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:45 GMT
+ - Fri, 30 Oct 2020 02:47:41 GMT
etag:
- - '"1D6A664457F0120"'
+ - '"1D6AE6708DADA75"'
expires:
- '-1'
pragma:
@@ -966,7 +1270,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: PUT
@@ -983,9 +1287,9 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:47 GMT
+ - Fri, 30 Oct 2020 02:47:44 GMT
etag:
- - '"1D6A664476CE16B"'
+ - '"1D6AE670B1D2955"'
expires:
- '-1'
pragma:
@@ -1026,7 +1330,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1034,7 +1338,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":"4werrWbTBolaHu0pQ7ZdYKjR6w9yQnBr79q6bBHxbLS9czSXevMnav8v2u1K","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:4werrWbTBolaHu0pQ7ZdYKjR6w9yQnBr79q6bBHxbLS9czSXevMnav8v2u1K@up-nodeapp000003.scm.azurewebsites.net"}}'
+ US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"yz1mipeKTmJsm98krtHrCEXL434jka8ADc7TwJvCdSvaJjrnwc42CT0gkT20","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:yz1mipeKTmJsm98krtHrCEXL434jka8ADc7TwJvCdSvaJjrnwc42CT0gkT20@up-nodeapp000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1043,7 +1347,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:48 GMT
+ - Fri, 30 Oct 2020 02:47:45 GMT
expires:
- '-1'
pragma:
@@ -1082,7 +1386,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -1090,18 +1394,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","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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-057.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-30T02:47:44.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-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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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'
+ - '5385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:07:49 GMT
+ - Fri, 30 Oct 2020 02:47:45 GMT
etag:
- - '"1D6A664476CE16B"'
+ - '"1D6AE670B1D2955"'
expires:
- '-1'
pragma:
@@ -1142,7 +1446,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -1151,17 +1455,17 @@ interactions:
body:
string:
@@ -1173,7 +1477,7 @@ interactions:
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 22:07:50 GMT
+ - Fri, 30 Oct 2020 02:47:46 GMT
expires:
- '-1'
pragma:
@@ -1195,20 +1499,20 @@ interactions:
message: OK
- request:
body: !!binary |
- UEsDBBQAAAAIAN14U1E5KNWtCwAAAAkAAAArAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
- dC9DT01NSVRfRURJVE1TRwstSEksSVUw4QIAUEsDBBQAAAAIAN14U1FATGeXygAAADsBAAAjAAAA
+ UEsDBBQAAAAIAOCdXVE5KNWtCwAAAAkAAAArAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
+ dC9DT01NSVRfRURJVE1TRwstSEksSVUw4QIAUEsDBBQAAAAIAOCdXVFATGeXygAAADsBAAAjAAAA
bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9jb25maWdNkLtuwzAMRWfrKwyPKRJ1DpCtS7/B
6EDLtExUD4OkA+Tvy1gImvHiHvEeaAyV8cd1jFsV0sqPpXIGvSML1dLf+k/XLZQw1xktLZAEXTcB
v6VUI6TEuOzbDIpijfJuhTxyovIr/yjFYoMBBF/QyHZbsR8qU6QymMzOydpVdZOr95F03adLqNkH
SHcq8v3li+mcW3OGoKYqF4vmihpWe/1hOuJXhFn86XqENiS+DfmTGyeGYvSQQRR5OP7hkLn1DXJd
- Ro7P/Hau0e4PUEsDBBQAAAAIAN14U1E3iwcfPwAAAEkAAAAoAAAAbm9kZWpzLWRvY3MtaGVsbG8t
+ Ro7P/Hau0e4PUEsDBBQAAAAIAOCdXVE3iwcfPwAAAEkAAAAoAAAAbm9kZWpzLWRvY3MtaGVsbG8t
d29ybGQvLmdpdC9kZXNjcmlwdGlvbgvNy0vMTU1RKEotyC/OLMkvqrRWSE3JLFEoycgsVkjLzElV
- UE9JLU4uyiwoyczPU1coyVcA6QDKpyJp0uMCAFBLAwQUAAAACADdeFNRhy7n2mYAAABuAAAAJwAA
+ UE9JLU4uyiwoyczPU1coyVcA6QDKpyJp0uMCAFBLAwQUAAAACADgnV1Rhy7n2mYAAABuAAAAJwAA
AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvRkVUQ0hfSEVBRCXJMRKDIBAF0Nqcgs7KoIQE
SG2TY6x/MTATwZGN50+R1z54vjmLB68GxgUfRxjyuAdMPBoO7CZvg/VdtxxUkFS/UZN49KquKons
- 7an1O0v6LlfUTYM+Zy7tNetSOQ7/GQiSa2mXH1BLAwQUAAAACADdeFNRK2lzpxkAAAAXAAAAIQAA
+ 7an1O0v6LlfUTYM+Zy7tNetSOQ7/GQiSa2mXH1BLAwQUAAAACADgnV1RK2lzpxkAAAAXAAAAIQAA
AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvSEVBRCtKTbNSKEpNK9bPSE1MKdbPTSwuSS3i
- AgBQSwMEFAAAAAgA3XhTUT3zOwKpAQAAqQIAACIAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
+ AgBQSwMEFAAAAAgA4J1dUT3zOwKpAQAAqQIAACIAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
Z2l0L2luZGV4c/EMcmZgYGACYo74dvvLqjIMKTCaAQ4alyDYTOmBHk/Vlz9qW/j+jMu1qPomR7Xa
c7MZuPTSM0sy0/Pyi1JhKlHM0441wW4ey3xFdoHSQ64z381Q9S/QPn+U5eyh0mUM7D6ezq5+wa4w
c4D6wbRVcwgOd52d4yKl6fG+Q0ZG4o1fq+HdfT+rZ31j4AxydXTxddXLTWGA6Y/vWhch+WVvC3Zz
@@ -1216,16 +1520,16 @@ interactions:
YsNS57yul8ebssxy9BkECxKTsxPTU3Vz8pOzgcbl50Hc5XnUAEbjcJeUwjJRbSsB2485r6Y8nGB4
6gaTj8dMBh6oeRCjEOFO2LzAX389ueruT+Tl8b3/cgp/Pf9rgy1GQPOK8pNTi4vRzYt0ugCjsZvH
xRarVBP/znXvzITfwit+2nAUL075U8jAVZ6apJecn5eWmQ5TGRLkCopWSQYLBQOu+Hnqc8qeff9W
- zLK35sk1ngsTm1R+bozot111ek5N+Jb0CV+azL7zfp9SDABQSwMEFAAAAAgA3XhTUV0ylBwpAAAA
+ zLK35sk1ngsTm1R+bozot111ek5N+Jb0CV+azL7zfp9SDABQSwMEFAAAAAgA4Z1dUV0ylBwpAAAA
KQAAACYAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L09SSUdfSEVBRAXBSQEAIAgEwL9p
- 0AWFOJz9IzgzLyAlpWWphMacbkGbvwwfBl9sI18fUEsDBBQAAAAIAN14U1GFT/gJFwEAAN4BAAA4
+ 0AWFOJz9IzgzLyAlpWWphMacbkGbvwwfBl9sI18fUEsDBBQAAAAIAOCdXVGFT/gJFwEAAN4BAAA4
AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9hcHBseXBhdGNoLW1zZy5zYW1w
bGVVkF1OAzEMhN9zCpOuKhCkFa9ISHAHLpBuvZuo+VPspS2Iu+O0bFtex+Nvxl7crTc+rcmphVrA
ewI82FgCgst5B9RXXxg4Q++w3wE7hD7H6BlCHiEikR0R2O4wweYoBFtKOBbLvYOh5ghWiCZaH2bz
6hT04eYEl6ewlVRB7j07SDmZL6wZiC1PBHZgrOCJJp9GwZ0zai7VW8ZLBT9AI9jE1OoS53LTdgXX
RE8NEULe47ZZcSuLN4fNxMGHuayYkt3IU9h5OlGeoIoU/5RmbSh9vd5EGvVKqRWMng05Q8hTUecM
mb3q7l4mgvk0xVZCMKY5ZdmdEmh99jbQg1aMxGAOoLsLQsNyKY/D/r/YfT8/6u5N/6gX9QtQSwME
- FAAAAAgA3XhTUen4yhD3AQAAgAMAADQAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hv
+ FAAAAAgA4J1dUen4yhD3AQAAgAMAADQAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hv
b2tzL2NvbW1pdC1tc2cuc2FtcGxlfZJfb9MwFMWfm09xSCvSVk2j8oi0SoMi2AuTWPdE6eQmN4m1
xM5sh/GnfHeuHaoVJvESRdf3/s49xx6/yA5SZbaOxtEYlwr0TbRdQ6i1vofNjewcnEZeU34PVxNy
3bbSodEVWrJWVLTkybeiaajA4Tviik+HphiP0tXQiiBM1bek3CIwlGgJugz/pWyIAa4WDrWw5xon
@@ -1235,7 +1539,7 @@ interactions:
ELNOs602BE7TDQFwOMHmzfWbi8nU3/ZXYfD+ant3ebv9cP3p7mrz7uMWR1juTxUSm+130+V8vZst
55PsLxuvsVtlXTJjXMUrIH2wiPcTRseIJ6sYxyMorzmqobZeh7LPaus9nl5rLhy/UIui7xqZ+4t+
npbliB1ZhzjGBWOmQTHZ/7NQ8kc4GsFq49hHr+QD0vzkiJBk+88YfZmv/DcrklnY82c0CquuX77C
- 5v97jML7XUW/ot9QSwMEFAAAAAgA3XhTUVC5mGP/BgAALxIAADwAAABub2RlanMtZG9jcy1oZWxs
+ 5v97jML7XUW/ot9QSwMEFAAAAAgA4J1dUVC5mGP/BgAALxIAADwAAABub2RlanMtZG9jcy1oZWxs
by13b3JsZC8uZ2l0L2hvb2tzL2ZzbW9uaXRvci13YXRjaG1hbi5zYW1wbGWtV1lvGzkSfpZ+RaUj
QFIgdTvZl4EUe2eQzJHFIDFybBaIMwLVTUmMW2SHZFsRPJrfPlVFtg7LcZzdzYOjZh386i4+fJDV
zmZTpbNK2rLdrp0E563K/Zh/r4TVSs9d+Hpx/mw0elVJ/WTcbj+EnzTIL2JZlRIWxlyCy62qPHgD
@@ -1268,17 +1572,17 @@ interactions:
T3c9PnDXLE835waFcKTFh3NJLxN8N0uBuYPTV12pohbBljTm6cFCzttZ71uh/j/H+o7NvpdkST/A
uW3K7vGypvD4ufn0wDWM8zNG6IRn8FFfPDThuyyIih9v29eNZ1uzW+4dNY3pj1fUe7pLt3Zd+PNP
aA7y9XyldDe2ln1dp/Be6X88GY1+lf7ZqojBOuD4C7zNLi6yi4z6ygZkiZl+zR4ITzuUO5ai09Eo
- jyo3e837APem/TdQSwMEFAAAAAgA3XhTUZoM98CKAAAAvQAAADUAAABub2RlanMtZG9jcy1oZWxs
+ jyo3e837APem/TdQSwMEFAAAAAgA4J1dUZoM98CKAAAAvQAAADUAAABub2RlanMtZG9jcy1oZWxs
by13b3JsZC8uZ2l0L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZS3NURKCMAwE0P+eYoVfgTN4By8Q
IJUO0nSS4ODtrejn7s68bS/DmPJgS2hDi1sGH7SVJ2MRWWGTpuJwQVEupAxCoWnlGTWLJRd9I4pi
N4a8WCsy79sIV8pWRN36U74LONNYYV+Snfq1Gpm2fxPTdxM0lfVuLzM5N30IfPCER3L8qs5Y602X
- cpTwAVBLAwQUAAAACADdeFNRz8BMAgkBAACoAQAAOAAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
+ cpTwAVBLAwQUAAAACADgnV1Rz8BMAgkBAACoAQAAOAAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
Ly5naXQvaG9va3MvcHJlLWFwcGx5cGF0Y2guc2FtcGxlVZBbTgMxDEX/s4pLOqpAkFb8VkKCPbCB
zNTTREwmUezpA8Te8fQB4vfaPsf24m7dxnHNwSzMAm8j6OhTGQgh5w9wV2MRSMaeauxPOAQviAzf
5umct4QupxRFaKuA9gRfynAqXrqAvuYEr0yXfByQiNnvaHVWvYebI+Rp2Ko3Cg5RAsY8uk+qGSxe
JnX1QlWlPMVxpzgdVkfNpUYvdKMi9pgJfhSeF2PJBRJu612lGTT6Vs+ToFfM/idUjdI16eNcy7Cl
kvu7xK6MWWEXxXFwTDIVow0X8ott7rWimL0rvjLBublTB8PZwOsZdml+sEaIBe4I2/wiLJZLfQB1
- /8Pm6/nRNq/222zMD1BLAwQUAAAACADdeFNR77MyDIwDAABrBgAANAAAAG5vZGVqcy1kb2NzLWhl
+ /8Pm6/nRNq/222zMD1BLAwQUAAAACADgnV1R77MyDIwDAABrBgAANAAAAG5vZGVqcy1kb2NzLWhl
bGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLWNvbW1pdC5zYW1wbGVtVGFv2zYQ/Wz9iqsTJA1gOkk/
ZnUAw8uwAEEHrAH2oS0GWjxZnCVSJSk7Lor99r2jZHcB+k0Uj3fvvXt3Z2+u19Zdx7o4K85o6Yhf
dNs1TLX3W4plsF2i5GnHwVYH2tc6kY2k177P/9dMpW9bmxKbOTKsdNOwofWBphubxrsp7W2qyXnS
@@ -1295,13 +1599,13 @@ interactions:
T6T+/fL55pK+074kVV6JjDfjdJVQ7v37zw9//FY8hODDHS2xh9phY6H/0O61aUiQYJafxe4lRq3U
ojoMh363ERvk1czsfdgOje3Yy1L0jjxKh5NXoyTLW3DQHDF2WJBmZ+NxmE7bhTMKvBmHc+swk3mn
yknEN168KyeBZ445Mt6ayy1cgoC7oiD63zD+ZADzBBcizSSv1dsfa0EYcK62ry3ali3NImCcDfbP
- UH1VwdkC5yRdzH6vtG3GCT52W1ln+EV6nkGeen9qrlLFf1BLAwQUAAAACADdeFNRRD/zXv8AAACg
+ UH1VwdkC5yRdzH6vtG3GCT52W1ln+EV6nkGeen9qrlLFf1BLAwQUAAAACADgnV1RRD/zXv8AAACg
AQAAOgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLW1lcmdlLWNvbW1p
dC5zYW1wbGV9j09PhDAQxe/9FE8wexK4ezOamL0a7qbAQBuhbTqDy/rpHXbxao/T93t/yoem86Fh
Z0pT4iWANrukmeBi/AL32SeBRHxT9uMVF2cFnmG7uN7uHaGPy+JFaKjV4dXOMw3origmL1goT1Tg
4sUhRNg8rQsF4Rpo3V+Ii+s8KEubEoc0VD+UI1isrBo3CmXN5dWHCTbAppRjyt4KaQaznUjbqAfL
QFmlI3Yvq1F7S5aYII7ufY7G9W1yG0HBdrpYnA7bGz0h62k5LqPf/yKKlKm68dWdL2pjaujKil3F
- JGsyQiyoNhSP7+f28+380ex+3OzoAeF0MjgebdT/pzXP5hdQSwMEFAAAAAgA3XhTUQTYj7GdAgAA
+ JGsyQiyoNhSP7+f28+380ex+3OzoAeF0MjgebdT/pzXP5hdQSwMEFAAAAAgA4J1dUQTYj7GdAgAA
RAUAADIAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3ByZS1wdXNoLnNhbXBs
ZY1UYWvbMBD9HP2KmxPWDZq0KftUlsIojBVGGWNlH8a2yvY5EpUlT5Lrtr9+d5KdpGOwFUJl6e7d
e+9Omr84KbU9CUqIObyzgA+y7QyCcu4OQuV1FyE6uEevm0cYlIygA8jS9Wm/ROj6oLBeAVxKY7CG
@@ -1314,7 +1618,7 @@ interactions:
WJCsISn9SdrGFQkbO5U2xyXtitqJmW7gGxSLXWgBG1hQbfguZqTIitlsDh/IaoKv0dAc0s65mKEJ
vBrT96CH+RMAIVzjAKWXtlLH6YZTL4EmfrKQg+h0yy7sqdDuWIYQbrpa5iGnCxciz8mfgJaK/AVw
T261eo7eaJH0XfKjwLMD1KURgg7yYnNLjwnZdr80VBeWFvgCUvc6OPpB8Uesn0sVt5MhFFMscnbx
- zAislIOLl2dQvHe9rQ/K8VAsdq075odjun1FyqRXBtaZM//SLRVp91T8BlBLAwQUAAAACADdeFNR
+ zAislIOLl2dQvHe9rQ/K8VAsdq075odjun1FyqRXBtaZM//SLRVp91T8BlBLAwQUAAAACADgnV1R
hOxYUd8HAAAiEwAANAAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLXJl
YmFzZS5zYW1wbGWdWGtv20YW/Sz+iltFraWsHrY+FNu4juHYQZvtbgJkjRaLxLFH5FBiTXK4M8Mo
auz/3nNnhiItK+liBcjm477vuY/Rk29mi6ycmVX0JHpC56ra6Gy5sjSMRzQ/PPx+zH//Tv+oy0zR
@@ -1351,14 +1655,14 @@ interactions:
Zy7q/0sA20A2cz6KzsZwgSv83J3THjYR38rPXL1gN6Q0+4QmH0qSfwMIleM32NCTHM8Lx5NmpatY
nnr2C1UXeJuhzaaEbsx+8S3/kOJKxPfqZpI6PedOKneA3d7IUMOyzK1Y7nRdv0OfB3nbHwBwSOTz
/5nveLLEwq3FUkYvHim+5AFdVDX6AVo3g3jvgeSDj6b7FWA/Rfg4Cn+OQNS5L6Cyx9QuzR0Hsbcw
- eete15j5Y2PCGXrqZ2tQ4se++z2maQJfboVRs/79CVBLAwQUAAAACADdeFNRksT4lkkBAAAgAgAA
+ eete15j5Y2PCGXrqZ2tQ4se++z2maQJfboVRs/79CVBLAwQUAAAACADgnV1RksT4lkkBAAAgAgAA
NQAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLXJlY2VpdmUuc2FtcGxl
dVDLTsMwEDzHXzG4EX1AW8qRKkiIA/TSViK9IVVuupFNEzuK3QdC/Dt2yqMIcdnVemfGM9s6G66U
HlrJWqyFOw06iLIqCNKYDWxWq8rBGZRiQ9hagslRba2EqZwy2g48K5X0TbPKt1dQJg1ZiKL4hYaT
wsE6UTvslZNoB+BKZJuk7YWEXqOmF8rcD9Wr7CVpzyTw45KfakLZ4Gs9aAKkBqTFyhtx0i9CiEsv
qUX5+ZKrsDPgVU39mjJSO+IDxlQOR9ahr8Hjh0m6nC+eHpezeTqZTZf3s8U05cxb0CxSyRWL9rLR
CQweK45+4f7nRWvDooh2ogD3ZUvJ8x+oF/GYTPgL87gBcSgdaF8H6nX91IzgTc1rUzZnOYnSD4lv
- EL81Eq1e8s5xe34dmOOxr8cDHpUOymEUfrAi800lcaejcIFRtxssa2K5Yh9QSwMEFAAAAAgA3XhT
+ EL81Eq1e8s5xe34dmOOxr8cDHpUOymEUfrAi800lcaejcIFRtxssa2K5Yh9QSwMEFAAAAAgA4J1d
Ue0TNjDoAgAA1AUAADwAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3ByZXBh
cmUtY29tbWl0LW1zZy5zYW1wbGWFVNFS2zAQfG6+4nAyhJDILu1bmXSGUkozU0qHpG8ZgmKfYxVb
ciUZCsPH9yQ5aaCZNpMHR/bu7e1u3N1LlkImpuh0O104kYC/eFWXCIVSt2BSLWoLVkGtseYawRYI
@@ -1373,7 +1677,7 @@ interactions:
LRFFRw/A6MkiGcUtjgbuN8BugZREP9ynT1AazWUEMdxsFSTlKaXyV1NuCPkKRA6kNoH9fej5Ig+H
MB7D613i4fjYTTschAs0PHX7TC8/jHsHbuAd13BOiACcnV0tJh/Pvs7giepMAiT0TXI9P4gP388H
8WEveVaAdzA/Suq+W9hxCecv/TMts5peAqhJMxOSkS0p0mV7SjJpfrTL6q5bziI1nz2+9DsK7w7v
- 9j/M3fKUuPaCQwvX1OFwZ7xdeht0fgNQSwMEFAAAAAgA3XhTUYhk77V4BAAAMw4AADAAAABub2Rl
+ 9j/M3fKUuPaCQwvX1OFwZ7xdeht0fgNQSwMEFAAAAAgA4J1dUYhk77V4BAAAMw4AADAAAABub2Rl
anMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3VwZGF0ZS5zYW1wbGWtV1Fv2zYQfrZ+xVU2
4tqw5SR7S5oMXYINfRgwbOnTUAS0TFlcZNITqbjqtv++j6RkS7IbJ0iMAKFJ3t13d9/d0f13s7mQ
M50G/aBPHyXxr2y1zjilSj2QjnOxNmQUzTMVP1AhmZTKMMMXZNhSU5KrFXFpeC7kMoKGG5ZlOJyX
@@ -1395,11 +1699,11 @@ interactions:
VKGNjg5k7FcH4wUxOJqqFBa7HK9eC9sI1JNoV42gSjjo9mB34Yn83dTPClZZeH0Ka/QHmNZ1Ym/o
vIRvb4XXP7G68TY5fj/s3luHBQ4V057cW/ja0foqp8ce70dZQgYqbafG80pbBDmGRHP/R3u30Zzc
rx43cC/Q/x6k2kg3kEgl5H8S2aaEKO2KDifuRrude3RbcJ1J97OQQqd41LoLp8H/UEsDBBQAAAAI
- AN14U1F3Pc0hrQAAAPAAAAApAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9pbmZvL2V4
+ AOCdXVF3Pc0hrQAAAPAAAAApAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9pbmZvL2V4
Y2x1ZGUtjUEKwjAURPeeYqCLqth2L7gSXHkDcRHbnzaS5Jfkh9iNZzeV7obHvJkKoxHY2GhjKaJp
WCYKa6BPb9NAjQ7sLm1pdcZr7ja8q3A3vhgyKUEUFQTZyIS6qqECoWfnyEtsS/PGAQpz4Df1AsdR
7ALjcT0VnaDZWs7Gj8ic7IAXlfbIPCCSgHVZ2F4xKxEKPmKf/PawTjgYjYUTsloBI0X688O5yMf2
- weq5hu/uB1BLAwQUAAAACADdeFNR8IDE/TYCAAB1BwAAJgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
+ weq5hu/uB1BLAwQUAAAACADgnV1R8IDE/TYCAAB1BwAAJgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
cmxkLy5naXQvbG9ncy9IRUFEnZXNalwxDIXXnafwLu2iQZblv1BKIdBdN4U+gCzJyYX5CTN3UvL2
dUMpJKTg6d3Z2JzPR0e6AHOfk5aAM1A3tCIlMGJoGWtrWISseA2NamF3y9vHZe9u73nvPsnzQu5p
/+Vux8v2Wg67z84nwOo95OA+QgZ4N3Z3y+reL/tlXXj74cb15XhaN9Oi4IG0pYLIoNpbjxAsSSdR
@@ -1410,7 +1714,7 @@ interactions:
II57ZBf0Blai/6r3NIoPaD77JtK5g0SvaeQ3FHh+oEHzkViM5pkDRJo1dlI7joGUY4o1NLGcDJMk
kUwkvmrHKiPCmBkugKyUXhj7lU/rx344/uSjbqb1igxzVVNHbWa+cq9RawZtEcrorJHlYuUS90bA
6N9g03o9txA1atEqZUzN0NEsBqu/O547BUrBjyRcAhbh7YlIm2k1KRoySRomCuZaDAS5SKziFVCr
- Zl+oUrkAi/7+Pd7w6xdQSwMEFAAAAAgA3XhTUfCAxP02AgAAdQcAADMAAABub2RlanMtZG9jcy1o
+ Zl+oUrkAi/7+Pd7w6xdQSwMEFAAAAAgA4J1dUfCAxP02AgAAdQcAADMAAABub2RlanMtZG9jcy1o
ZWxsby13b3JsZC8uZ2l0L2xvZ3MvcmVmcy9oZWFkcy9tYXN0ZXKdlc1qXDEMhdedp/Au7aJBluW/
UEoh0F03hT6ALMnJhfkJM3dS8vZ1QykkpODp3dnYnM9HR7oAc5+TloAzUDe0IiUwYmgZa2tYhKx4
DY1qYXfL28dl727vee8+yfNC7mn/5W7Hy/ZaDrvPzifA6j3k4D5CBng3dnfL6t4v+2VdePvhxvXl
@@ -1421,7 +1725,7 @@ interactions:
Zlo7gVY/9hpEVcrUOXYUVZFWgTEgjntkF/QGVqL/qvc0ig9oPvsm0rmDRK9p5DcUeH6gQfORWIzm
mQNEmjV2UjuOgZRjijU0sZwMkySRTCS+ascqI8KYGS6ArJReGPuVT+vHfjj+5KNupvWKDHNVU0dt
Zr5yr1FrBm0RyuiskeVi5RL3RsDo32DTej23EDVq0SplTM3Q0SwGq787njsFSsGPJFwCFuHtiUib
- aTUpGjJJGiYK5loMBLlIrOIVUKtmX6hSuQCL/v493vDrF1BLAwQUAAAACADdeFNRhJfpgboBAAB7
+ aTUpGjJJGiYK5loMBLlIrOIVUKtmX6hSuQCL/v493vDrF1BLAwQUAAAACADgnV1RhJfpgboBAAB7
BgAAPAAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvbG9ncy9yZWZzL3JlbW90ZXMvb3Jp
Z2luL21hc3RlcpWTW2odMQyGn5tVzAZSJFm2pVBKISuRJbkJnJyEXFq6+zqljydhxk9jGPg//xeA
fWfz0cA68ExKcSlGVEYnHYPEOQWjDFax7dZOv+7P2+2dnbdv/u/id3z+8fPB7k9f/fHh+4YNSBER
@@ -1431,34 +1735,34 @@ interactions:
cB8KRoUoyDj1CFjFy27t1sJCiR2H+7QJXjEaRy0CljhKwsDK5nmg8AXaB73arVXXQnttawrDs7ek
5s29MztqTFJfLaRucABKuX0c4W498WVmRJsUIxPVptbQFf+oIGscq5CScsQtxs+6tVtv9lFq1JBQ
FyhZJmXWkvo+WptcuBVcyR8Bq/VyjLu1XKJ09rYsdOoqaylk4lUdAyg0OgorywEoJv3Yrb9QSwME
- FAAAAAgA3XhTURjM6OyhAAAAnAAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
+ FAAAAAgA4J1dURjM6OyhAAAAnAAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
amVjdHMvMDEvMDRkYjY4MjJhMGRkZmJmNTAzZTZjZjRjZDJjM2MyMjlkMThiMTkBnABj/3gBnY5b
CsIwEEX9ziqyASWZxDxAROhKZiYTW+iLkrp+g0vw81w4l8PbskxNA7hLO0R0KTEzmEzBx+qDY8tw
x5Kw2ixkY605WaKodjxkbZopGIzGVwFJnBz2J4qQiSCxl2SLI58TKjzbuB16wPkzrXoYcdUP/gGP
- fn29F5zmG2/LU9tgIPcEyPpqojGqr72xyX+2OveCTdQXcUNGelBLAwQUAAAACADdeFNRC/7mbLkA
+ fn29F5zmG2/LU9tgIPcEyPpqojGqr72xyX+2OveCTdQXcUNGelBLAwQUAAAACADgnV1RC/7mbLkA
AAC0AAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8wNi83Y2UyNWQw
NjY1NWNkMjY5MDhjMzZjMDc1ZDY1ZmNlYjg0NDkyZgG0AEv/eAGVjkFqwzAQRbv2KeYCKSPJkjJQ
SoJXgWxzAEkzTkxsKyhyDDl9TG/Q1X88ePBTnqahgjb+qxYR6FthbyhS8DbaqI0zYgyrZKQnL9bF
lozzsXmEInOFPUbNmLR12nNqiVCEKXLPKLhXimQDbbkJS73lAl0YX8MMP+lv062dD9cpDON3ytMv
- KIealFVKwQ49YrPZ7V6Vf4fN5cGhCqy53Psxr7A8h/kKx/dSBLrz6QNF20vfUEsDBBQAAAAIAN14
- U1HQyTGGPgEAADkBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzBi
+ KIealFVKwQ49YrPZ7V6Vf4fN5cGhCqy53Psxr7A8h/kKx/dSBLrz6QNF20vfUEsDBBQAAAAIAOCd
+ XVHQyTGGPgEAADkBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzBi
L2FhZGY1ZDQ4YjJjMjZmZmE3Yzg4MTAwMTBhMmIwODgwZjZhY2FkATkBxv54ASspSk1VMDYxZjAx
AAIFvfTMkozSJAaN57mbI0O/5AnpVJzfVen58c7yGC5DAwMzExOwksz0vPyiVIZAj6fqyx+1LXx/
xuVaVH2To1rtudlQVT6ezq5+wa4MiuwCpYdcZ76boepfoH3+KMvZQ6XLoEqCXB1dfF31clMY5rhI
aXq875CRkXjj12p4d9/P6lnfoIoy81JSK/Syihl+SZXF6/5YKrdPwlSSO1j9qavT7QNQNQWJydmJ
6am6OfnJ2UCl+XkMa47/sr93NnzFhqXOeV0vjzdlmeXooyqGqFNYJqptJWD7MefVlIcTDE/dYPLx
mAlTV5SfnFpcDFH3668nV939ibw8vvdfTuGv539tsMUIqq48NUkvOT8vLTOdIVapJv6d696ZCb+F
- V/y04ShenPKnEAD+yoitUEsDBBQAAAAIAN14U1ETeMQfrgAAAKkAAABOAAAAbm9kZWpzLWRvY3Mt
+ V/y04ShenPKnEAD+yoitUEsDBBQAAAAIAOCdXVETeMQfrgAAAKkAAABOAAAAbm9kZWpzLWRvY3Mt
aGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzEzLzJlMTcxYmNjZmFmMGM1MWQ2NGQ1MzgwYWUxYjNl
MGIxNTRhY2U0AakAVv94AZ2OUYoCMQxA/e4pcgElZjqtgWURvMHeIJOmTsG2y2z1/Dt4BD/fgwdP
e61lAE18GJsZMF+MJYpKyoSBJpsxhkzsQ/ZRaMfASyb3K5u1AQETny+MC84p+eizzJk0JdWFUWgi
SiTe2MlzrH2DmzxepcFtlQZf+gZdfbveq5THSXv9hnNAYppw9nDEiOh2uz8O+6x2P1b7yxLcy1if
- C4iO0tuf+we2JEwSUEsDBBQAAAAIAN14U1Fqp/ImrwAAAKoAAABOAAAAbm9kZWpzLWRvY3MtaGVs
+ C4iO0tuf+we2JEwSUEsDBBQAAAAIAOCdXVFqp/ImrwAAAKoAAABOAAAAbm9kZWpzLWRvY3MtaGVs
bG8td29ybGQvLmdpdC9vYmplY3RzLzEzL2U4YzYyZGQzYjA0MTQyMGEzZDJhZTFiMzg5MDEzM2Zm
MTRlZmMyAaoAVf94AZ2OUWoDIRBA++0p5gIpOrq6A6UEcoPeYHRnskLUsjU5f5ceoZ/vwYNXRmt1
Anp6m4cIEK1CnLjwpmgjellsiooUoobEeGKkrGi++ZA+wemKJUgsale/oKKuW1jyRpFINCfn/eJc
yoafcx8H3Pjxqh1uO3f4KH9Q9tCv98b18V5G+wQXLRIiWQcXm6w1pz0fp/yvNl/Sxks2uNe5PzNw
- mXX0H/MLdUFLn1BLAwQUAAAACADdeFNRgYo4CdkBAADUAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxv
+ mXX0H/MLdUFLn1BLAwQUAAAACADgnV1RgYo4CdkBAADUAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxv
LXdvcmxkLy5naXQvb2JqZWN0cy8xZC8wMjI1YjAwOTJjMTI1MzQ1YzAxM2VjMWYwYWQ5YzRmNDZi
MDE2YgHUASv+eAF9k8Fu2zAQRHvWVyyQArqEktU6qa2TUwRoLy0C5JBjQEprS4lMElzSRpvm37si
pQR2gZ5kScM3O6O1GoyC9WL54QJuTUOwNQ58h3DzOziEB1RwYy3BLdrB/ALZ+N7oGjrvLdVluet9
@@ -1468,12 +1772,12 @@ interactions:
+TPMOSBlnxA15NWiqJZFlacJZ0dt99Br8nIYLiEmvYz1xizjaACctIY/kwVj30+cPGNZAoAQ/VZY
h4Ta/yMZwaeKKJnnyacNO/+W+QSayhy38mzJNodPk+a0Bt4MkdrNz7dhhgLQYPysss60Ia7o+3sb
1NBTx6nMth94ET++vABh49BTEXeY/x736A59g493SXyXtI+rxWpxXW0lXsv1cn2Fqy+rZq3aJVZV
- 8/mqUvD6+taSlc2z3DG/+AuluhtnUEsDBBQAAAAIAN14U1FBHqqkoAAAAJsAAABOAAAAbm9kZWpz
+ 8/mqUvD6+taSlc2z3DG/+AuluhtnUEsDBBQAAAAIAOCdXVFBHqqkoAAAAJsAAABOAAAAbm9kZWpz
LWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzFmLzgyYzRlNmNmMDgzNTJmMmY4ZDQ1YmQ5
Njk5ZWZiNzEzMzUxMTdiAZsAZP94AZ2OWwrCMBQF/c4q7gaUm9skjSAidCUnL1voi5K6foNL8OfA
HBiYuC3LVEnEXuqRM3EAUrHJ+CBRXCnoo/eaWTMksPdcHCKS2nHktRKKzbDGMjijBO1cghjXrNCm
QfbOea0VzjpuBw2YP9NKw4iVHvEHcTTr671gmm9xW56kHctdtEhHV+6ZVXtbY83/2ercE2qmTn0B
- Z4lHRVBLAwQUAAAACADdeFNR11lMV64CAACpAgAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
+ Z4lHRVBLAwQUAAAACADgnV1R11lMV64CAACpAgAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
Ly5naXQvb2JqZWN0cy8yMS8wNzEwNzVjMjQ1OTllZTk4MjU0ZjcwMmJjZmM1MDRjZGMyNzVhNgGp
Alb9eAFdU0uPmzAQ7nl/xSinXQlttT300JsDzsYqYGScTXPk4QRXBEe22Wj/fccm2aqNkCLGM99r
TDuaFl5evn/7AvgrmIRcd2py6uEhFFJz+bD6NHh47J6g0J01zhw91u3F2MZrMz0DGUeITQ6scsq+
@@ -1487,65 +1791,65 @@ interactions:
sDdcAIGKCMnSXU4EVDtR8ZqijAyhS1ZuBDLRgpbyGZmxBvQNX6DekjwPdBGP7NCJCFoh5dVBsNet
hC3PM4rFNUWFZJ3ThQ4NpjlhRQIZKchrUCmAI9LiM7QuSmG/paEceAk+qWS8DJZSXkqBrwk6FvJz
fM9qmgARrA7hbAQvFrMhYpxCFgTC2ZIuSCH+GNjnlrAlBLjDAO6aIKMkRzxcWflp9z7w8AfO2WoD
- UEsDBBQAAAAIAN14U1F8IHppTQAAAEgAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
+ UEsDBBQAAAAIAOCdXVF8IHppTQAAAEgAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
dC9vYmplY3RzLzIxL2RhYzM1NWJiMzdkOGEwYmUyMDQ5ODVmNzE5MmUwZGMyYzMwYTRmAUgAt/94
ASspSk1VMDVlMDQwMDMxUchNLC5JLdLNy09J1S3PzEvJLy/WTc9I1KvMzWEoObfsvrYZn7jc1nu8
- vNx8gm/+2ccAAJDIFcVQSwMEFAAAAAgA3XhTUZmXzfAfAQAAGgEAAE4AAABub2RlanMtZG9jcy1o
+ vNx8gm/+2ccAAJDIFcVQSwMEFAAAAAgA4J1dUZmXzfAfAQAAGgEAAE4AAABub2RlanMtZG9jcy1o
ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMjMvYmNjOGZkNWEyOGJmNmQxZTU4NzYzZDU1M2UwYzdi
NmNkZTNhM2QBGgHl/ngBKylKTVUwNrBkMDQwMDMxUdBLzyzJTM/LL0plCPR4qr78UdvC92dcrkXV
Nzmq1Z6bDVXl4+ns6hfsyqDILlB6yHXmuxmq/gXa54+ynD1UugyqJMjV0cXXVS83hWGOi5Smx/sO
GRmJN36thnf3/aye9Q2qKDMvJbVCL6uYoU7X3v4e18V1EipzJ5ao1u++WRqoA1VTkJicnZieqpuT
n5wNVJqfx7Dm+C/7e2fDV2xY6pzX9fJ4U5ZZjj6qYog6hWWi2lYCth9zXk15OMHw1A0mH4+ZMHVF
+cmpxcUQdb/+enLV3Z/Iy+N7/+UU/nr+1wZbjKDqylOT9JLz89Iy0xlilWri37nunZnwW3jFTxuO
- 4sUpfwoBLip651BLAwQUAAAACADdeFNRX1AyMDkAAAA0AAAATgAAAG5vZGVqcy1kb2NzLWhlbGxv
+ 4sUpfwoBLip651BLAwQUAAAACADgnV1RX1AyMDkAAAA0AAAATgAAAG5vZGVqcy1kb2NzLWhlbGxv
LXdvcmxkLy5naXQvb2JqZWN0cy8yOC9lNzZkYjM1OTU1ZjQ2ZTEyMmM3OGNmYmE3OTQ5ZjFkY2E3
NWMwYQE0AMv/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJihlWXJv1a9PR7yPptp9e7nmo8sKo19BMA
- esEUu1BLAwQUAAAACADdeFNRmwVrkD8BAAA6AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
+ esEUu1BLAwQUAAAACADgnV1RmwVrkD8BAAA6AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
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
+ z0vLTGeIVaqJf+e6d2bCb+EVP204ihen/CkEAKgIjF5QSwMEFAAAAAgA4Z1dUXThnirtAAAA6AAA
AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNDEvOTJhMGVkNzllOTk5
YzRkYTFjMWNiZDM0Y2MwYmY1NzFiNzlhYjUB6AAX/3gBVZDBTsMwEEQ55ysWS6iuFJymOSClKpde
egNBf8BNVq2lldfY2wBq+Xcc0h7wzbPzPLPeE++hqeu7jn0SOIoEWEPEj5OLqGfjfTZfFcU0ThgH
jNkw6qaLaAXf/zStRwaTlBlOIT+Gc1g/w7mAfG6S+YxOcIu218vFooSz2rAX9PK4+w6oWlCCX1IF
ss6rn5z7D0bfa7VFIoaNpcH5e5Uto+1aL3CUXC5E7jAlg34wry9vO7hcoG6ap1Ux9TfkUg7Vo/0G
- M6EhPmg1rQPx5L3zB7DTn7RVRdxZOnKS9qFXJVzhX4NBaflQSwMEFAAAAAgA3XhTUTgZl+84AAAA
+ M6EhPmg1rQPx5L3zB7DTn7RVRdxZOnKS9qFXJVzhX4NBaflQSwMEFAAAAAgA4Z1dUTgZl+84AAAA
MwAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNGMvN2RiNTAzMmNm
NDVmYmE2ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGMBMwDM/3gBKylKTVUwNmMwMQAChfL8ouy0nPzy
- YoZ7Zww1fuzkUzjhs99+wsG8ijUyZ9gAVEkRAVBLAwQUAAAACADdeFNRXlCB8rUAAACwAAAATgAA
+ YoZ7Zww1fuzkUzjhs99+wsG8ijUyZ9gAVEkRAVBLAwQUAAAACADhnV1RXlCB8rUAAACwAAAATgAA
AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy81OC8zYTc1NjU5M2JjZTc2ZTI2
YzZjYzc0NGMxOWRmMjljYTc2MjdhMAGwAE//eAGVjl0KwjAQhH3uKfYCyubHJgERpU+Cl9huN1ps
G4mpBU9v8QY+DAMfDN9wGse+gDZuU7IIkLS2C0gGlXHkY7A2qKANe8vOU7eGg2apnpRlKtCK86Ki
MEVfu73X1igfqUNt1N7XpkXm1jpb0VzuKUNDw7uf4MC/5rudTreR+mHHaTyCqlGvshoDbNEhVitd
- 7xX5e1g1WagILCk/4pAWmF/9dIPzZ84CzfXyBQ7qS4JQSwMEFAAAAAgA3XhTUV5CN0QgAQAAGwEA
+ 7xX5e1g1WagILCk/4pAWmF/9dIPzZ84CzfXyBQ7qS4JQSwMEFAAAAAgA4Z1dUV5CN0QgAQAAGwEA
AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNWYvOWUyNzljNzZlNmY3
ZjY3MzA0YmQ3Y2U0ZDYwY2QwOTE4MjI0ZjkBGwHk/ngBKylKTVUwNrBkMDQwMDMxUdBLzyzJTM/L
L0plCPR4qr78UdvC92dcrkXVNzmq1Z6bDVXl4+ns6hfsyqDILlB6yHXmuxmq/gXa54+ynD1Uugyq
JMjV0cXXVS83hWGOi5Smx/sOGRmJN36thnf3/aye9Q2qKDMvJbVCL6uYIdG05sqM1x/vWP4Ojz7p
+/9m/nbeuVA1BYnJ2Ynpqbo5+cnZQKX5eQxrjv+yv3c2fMWGpc55XS+PN2WZ5eijKoaoU1gmqm0l
YPsx59WUhxMMT91g8vGYCVNXlJ+cWlwMUffrrydX3f2JvDy+919O4a/nf22wxQiqrjw1SS85Py8t
- M50hVqkm/p3r3pkJv4VX/LThKF6c8qcQAGc6filQSwMEFAAAAAgA3XhTUdUtMSDuAAAA6QAAAE4A
+ M50hVqkm/p3r3pkJv4VX/LThKF6c8qcQAGc6filQSwMEFAAAAAgA4Z1dUdUtMSDuAAAA6QAAAE4A
AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNjAvZDkxODkwYjA1ZGQ0NzRm
YTVmMmNkZGNjYjkwYTIzMjJkMmE0ZTkB6QAW/3gBnY9BbgMhDEW7nlOwyyodwM4AUVVVSjdd9BAG
zDBSBqIZ0vOXNuoFuvT3f//boa7r0gSAfWobs+ApKoKT0aAiakw2TdEaloEMTko59gQciIYbbVya
UMA2TDpG8BIVakkQNbHyYJ1UACkp5BT0n78nGRmdT5GlY9tB1lpBMDqdIiKC6z0G40D3lusmLnT9
Woq4ZCriJfwOIWN5m1dars+hrq9CTVI7rR2iOEoj5dDV/lPj/9HDJ28zC79RCVkcVtp70kHUJHJr
- t/08jvPS8t3/lI+Pi/aP97HUyMfH5kihLbXswzc89mvlUEsDBBQAAAAIAN14U1F6WOlb7gAAAOkA
+ t/08jvPS8t3/lI+Pi/aP97HUyMfH5kihLbXswzc89mvlUEsDBBQAAAAIAOGdXVF6WOlb7gAAAOkA
AABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzYxLzM1N2NkNDk4ZWJm
MWRjMzlmYjU3NWJjOTRkZmZkOTZmYjcwZDlkAekAFv94AVWQz27CMAzGd+5TmEgTQepSWCchFbEL
F26bNl4gtBZEspwsMd0m2LsvXeEw3/z5+/nfnvwe6kV913pOAkeRAGuI+HFyEfV0yKezVVGM5YSx
x5gNg27aiFbw/U/TemAwSZnhFHIznMH6Gc4F5LhJ5jM6wS3aTj/O5yWc1cazIMvD7jugakAJfkkV
yDpWP3nuPxi502qLRB42lnrH8DRR2TQYrwsGHyWvF6JvMSWD3JvXl7cdXC6wqOvlqhgvMORSHqsH
- +w32hIb8QavxIIgnZscHsONXmqoi31o6+iTNfadKuMK/LzJqT1BLAwQUAAAACADdeFNRZEr1NLgA
+ +w32hIb8QavxIIgnZscHsONXmqoi31o6+iTNfadKuMK/LzJqT1BLAwQUAAAACADhnV1RZEr1NLgA
AACzAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy82ZS9mODM2NTk2
NDQyMDRhOTQ3M2FjOTBiOWU1YTc5OTY5NDI1ZjY5ZQGzAEz/eAGVjk1qwzAQRrP2KeYCDfqXBSG0
ZFXoNgcYjUaOiW0FVa6hp4/JDbL6eA8efFTmeWygtD+0ygzZcPI6xIDeRhuVdpq1TpI05+DZumiC
dj52D6y8NECj0JKgLGwfe5dYZePCztJZTCRTlkyuTx2u7VYqXHD6Gxc40WvpZpbPYcZxOlKZzyCd
- UEFa2wf4EF6Ibrf7vcZvh931kbAxbKXe81Q2WH/HZYCv/7UyXH6+n40rTGRQSwMEFAAAAAgA3XhT
+ UEFa2wf4EF6Ibrf7vcZvh931kbAxbKXe81Q2WH/HZYCv/7UyXH6+n40rTGRQSwMEFAAAAAgA4Z1d
UQI3WvLgAQAA2wEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNzMv
ZTYwNGVmYTU0Y2M2OTljNGIzZDIwN2QyZDcxODFjZmNlOWFiM2UB2wEk/ngBfVPJbtswEO1ZXzFA
CvgSSlG8NNbJKQK0lxYBcugxoKSxxUQWCQ5po03z7x2Ssgq7QH3wIj++TU91r2tYl/MPV/CgG4Kt
@@ -1556,7 +1860,7 @@ interactions:
g9mDGsjJvr+GmPg6ljxlAuDEFfweZZj674mzawxLBCCE2gpjkXBIvURHfCxAAvE54szPbBza5R1N
1qciwjgvtrY53I5+YhUwmeOBiHFE/64iWAsv6rU7oYzVrY9TPamG2dS9oo5j6a3qeZAf396AsLHo
KI9b5sfkCe1BNfj8mMCPCfvcypu7T7iqV3KxXSxwebcsV826XCznt8v1vG3h/X0ya2TzKnfMn2d/
- AHOuHFxQSwMEFAAAAAgA3XhTUaH6aZ7fAQAA2gEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3Js
+ AHOuHFxQSwMEFAAAAAgA4Z1dUaH6aZ7fAQAA2gEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3Js
ZC8uZ2l0L29iamVjdHMvNzQvY2VhNmRmMmIzNjBlMTcxZWI1ZGUwZDBkMGIwZTExZWNmZTNmNWMB
2gEl/ngBfVPLbtswEOxZX7FACvgSSpET24lOThGgvbQIkEOOAUWtLSaySGhJG22af++SlFXYBeqD
H/JwXhrVnanhrrz+dAEPRhFszACuRbj/5QeEZ6zh3lqCB7Sd+QlSOW36ClrnLFVFsdWu9XWuzK6I
@@ -1566,15 +1870,15 @@ interactions:
A2mMP1JweeVVXt7k5SxiR2tJtbc70D052XWXEBNfxpKnTACcuILfowxT/z1xco1hiQCE0BthByTs
Uy/RER8LkEB8ijjxMxuHdn5Hk/WpiDDOs62t9/PRT6wCJnM8EDGO6N9VBGvhRZ1xR5QdTOPjVI+q
YTZ1p6nlWGajOx7k5/d3IFQDOsrjlvkxecJhrxW+PCbwY8K+LG9vVwu5wsVyubqZX13L+q5ZNgrn
- i1KpBW7g42Mya6V6k1vmz7M/c8wcwFBLAwQUAAAACADdeFNRdFy6CTgAAAAzAAAATgAAAG5vZGVq
+ i1KpBW7g42Mya6V6k1vmz7M/c8wcwFBLAwQUAAAACADhnV1RdFy6CTgAAAAzAAAATgAAAG5vZGVq
cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy83Zi9lMmEwOWVhNTU4YmQ1NmRiNzhhOTlm
ZWI0OWEyNThmNTc3OTI3NAEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJiBsVbh0N3m99YsE/B
- s/W7pB7vocNc/gBRhxCOUEsDBBQAAAAIAN14U1FxP2WTtQAAALAAAABOAAAAbm9kZWpzLWRvY3Mt
+ s/W7pB7vocNc/gBRhxCOUEsDBBQAAAAIAOGdXVFxP2WTtQAAALAAAABOAAAAbm9kZWpzLWRvY3Mt
aGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzgwL2IyZDBjMjU2MjdkYzQ5OTBlZWQ5YmRmZDBlMDgx
MTllZDBlMjVkAbAAT/94AZWOWwrCMBBF/e4qZgNKmknzABGlX4KbmEmnWmwbiamCq7e4A78OXDjc
E9M0DQU0uk3JItAb6RwGDuQablijRUHs6ojSByeNZRPQOq4elGUuENkqcsr0osVHj6Q1stOBWfto
xNcdroanipZySxlaGl/DDPv4Y7yZ+XidaBh3MU0HqK3SoV4fGtgqp1S1rmtekb/Fqs1CReCd8r0f
- 0xuW5zBf4fRZskB7OX8BMtlLuVBLAwQUAAAACADdeFNR9/hnJD8BAAA6AQAATgAAAG5vZGVqcy1k
+ 0xuW5zBf4fRZskB7OX8BMtlLuVBLAwQUAAAACADhnV1R9/hnJD8BAAA6AQAATgAAAG5vZGVqcy1k
b2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy84My8zNDczNzU1ZTljZGYwMWJjNWQwMDMwODkw
NjIxYjdiY2FkOWRhZgE6AcX+eAErKUpNVTA2MWYwMQACBb30zJKM0iSGD6susvH/a15tumDeibva
D25fnrnpj6GBgZmJCVhJZnpeflEqQ6DHU/Xlj9oWvj/jci2qvslRrfbcbKgqH09nV79gVwZFdoHS
@@ -1582,12 +1886,12 @@ interactions:
elnFDL+kyuJ1fyyV2ydhKskdrP7U1en2AaiagsTk7MT0VN2c/ORsoNL8PIY1x3/Z3zsbvmLDUue8
rpfHm7LMcvRRFUPUKSwT1bYSsP2Y82rKwwmGp24w+XjMhKkryk9OLS6GqPv115Or7v5EXh7f+y+n
8NfzvzbYYgRVV56apJecn5eWmc4Qq1QT/85178yE38IrftpwFC9O+VMIAEpNi1dQSwMEFAAAAAgA
- 3XhTUdG2vNy2AAAAsQAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv
+ 4Z1dUdG2vNy2AAAAsQAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv
OGMvZDQ3ZGQ2ZjJkYmVlMTlhZjk1ZDk3MGRiNTA4YjZhNDViOGU4ZTQBsQBO/3gBlY5BCsIwEEVd
9xRzASVN0kwHRBRXglsPME6nWmybElMFT2/xBi4+Hx583pc4DF0G63CVkyqwXn1Dhp0pHXLdkvdU
knVSe8GamyVCVrSYOOmYoaodYxUqcldRDGqDBBH0XkpqWkvCGCyyKXjO95jgyP2rG2Erv5a7H/e3
gbt+I3HYQRmMXWSEBtYGjSkWutzL+vewuEwNZ4V3TI+2j2+Yn914g8NnTgrH8+kL7s1LcVBLAwQU
- AAAACADdeFNRMYCVUd4BAADZAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq
+ AAAACADhnV1RMYCVUd4BAADZAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq
ZWN0cy84ZS83N2MzZGY5ZGM2ODMyMjg4ZTMwYjI5ZDNlNTA1NTJjZmUzNzI5OAHZASb+eAF9U01v
2jAY3jm/4pVaiUsdCDABOdGq0nbZVKmHHSvbMcRtsK28Nmjr+t/32g6ZYNI48BEeP195IjorYFMt
Pt3Ao5UIO9uDbxXc/wq9gh9KwL1zCI/KdfYncOm1NTW03jusp9O99m0QpbSHaTowPSnBCc+ahC9u
@@ -1597,19 +1901,19 @@ interactions:
LKtJwg7WsqpxB9AGPe+6O0iJ71LJYyYASlzD70GGqP+euLhGsEwAjOkdc71CZXIvyREdi5BIfIm4
8DMZhnZ9R7P1sYg4zqutbY/zwU+qAkZzNBA2jOjfVURr8YWd9WeU620T0lTPqnE2otPYUiy70x0N
8vb9HVDJXnks05bpMXlW/VFL9fKUwU8Z+7JuxHIh12K1nM+Wq0Zumo0Um9Ws+iwX63nF4eNjNOu4
- fON74i+LP3fxHIRQSwMEFAAAAAgA3XhTUVXzA7wfAQAAGgEAAE4AAABub2RlanMtZG9jcy1oZWxs
+ fON74i+LP3fxHIRQSwMEFAAAAAgA4Z1dUVXzA7wfAQAAGgEAAE4AAABub2RlanMtZG9jcy1oZWxs
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
+ fwoBIWt60FBLAwQUAAAACADhnV1R9mfZRKQAAACfAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
cmxkLy5naXQvb2JqZWN0cy85Yi9mMjgyODc1MDA5MzkzZjhkMTM0MGM2NWFhYmIxZDc0ZDVmNmYw
NQGfAGD/eAGdjlsKwjAQRf3OKmYDysw0TRsQEboGF5DMTGzBPijR9Vtcgp/3wOFcWed5qsDcnupu
BlpiCaHpzLMWk0bZmDDHRCF0KpotdB6J3JZ2WyogodcceuaEqiWXFhsLUrwoSyPMUanPFF1613Hd
YUivz7TAMKYFrvIbMvrl/pzT9LrIOt+AAnI8op7gjB2iO+jxsdp/tntsmqoBuy8Iz0ajUEsDBBQA
- AAAIAN14U1E91+AgeAEAAHMBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmpl
+ AAAIAOGdXVE91+AgeAEAAHMBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmpl
Y3RzLzljLzQ0MWEyOTQ4ZWY4ODFjMWMxOGVjNGU4NTMxZGRiZWY5N2I5YWY2AXMBjP54AZWSQU/c
MBCFe/avGMGFPSS5VSKnriqhXqCqqMRhhaqJPdl4FXuMPQHRX9/xBtot4sIpjmc833vPHmYe4PPl
5aemaUzCPf2S50Q9FAxpJjNj3C+6W3rTQGRHh6KLAz5isdknMSmzW6wc6/h7yaTl47fBlJpC+dFb
@@ -1617,89 +1921,89 @@ interactions:
23py3JiPsKq/U9buBAN3NFTs/cUkkkrfdY5taYO3mQuP0loO3dF4p1JfjTdPNGxaFXcOXzlK9sOi
DvcvsjS7A1mBCdWf4yTkQCaC3fXrVPieKMItL9mSTnAEPNZJNfJ/SlibyrHnjR6rJ3i0a3+3aeFK
EwysAfqoYQYUvRAoRCv2DQCutj8+DBnxoduAYpQqqOZ2VV0V8uW/rO4vAvpZuH+/vIEnLxOgvgZ0
- zledOMPDQqUuywoIgaKU1vwBa6/7yFBLAwQUAAAACADdeFNRC0v1WTgAAAAzAAAATgAAAG5vZGVq
+ zledOMPDQqUuywoIgaKU1vwBa6/7yFBLAwQUAAAACADhnV1RC0v1WTgAAAAzAAAATgAAAG5vZGVq
cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hMy84MTA1NGExZjkwODJiMGU4MTNhYzc4
ZDhiNTBkZGQ0MWRkZTA4YQEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJihps8ObfUlFy+NmV8
- kref9vxG+VytMABM7xELUEsDBBQAAAAIAN14U1EcKBdXuAAAALMAAABOAAAAbm9kZWpzLWRvY3Mt
+ kref9vxG+VytMABM7xELUEsDBBQAAAAIAOGdXVEcKBdXuAAAALMAAABOAAAAbm9kZWpzLWRvY3Mt
aGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2E0LzJhNWMwY2YwNThiODZkZTJmNDY5MGNmMTY1YWRj
MWRmMWVjNjhkAbMATP94AZWOQWrDMBAAe/Yr9gMta0m7iqCUlpwCufYB0mqVmNhWUOUE8vqG/qCn
gYGBkbosUwdj/UtvqlCcZm9DCtFTomQsW7U2j2K1BK/EyQXLPg3X2HTtgOxFDWVkJpJsOOBOLAt6
ykxFNO2cC6YMcevn2mAf59u0wrv8Uc5u/TwtcZrfpC4fMDKaMJLDAK/oEYenfe51/Xc4fF9z7Ar3
- 2i5lrnfYfqb1BF+PrSnsj4df3BZLRlBLAwQUAAAACADdeFNRcRbFTE0AAABIAAAATgAAAG5vZGVq
+ 2i5lrnfYfqb1BF+PrSnsj4df3BZLRlBLAwQUAAAACADhnV1RcRbFTE0AAABIAAAATgAAAG5vZGVq
cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hYS9kMjkyZmFhMmU1Zjc1NGFmYjZjYmFm
NDVjYTgxYzBhYTg1NTVmMgFIALf/eAErKUpNVTA1ZTA0MDAzMVHITSwuSS2Kz8tPSdUtz8xLyS8v
- 1k3PSNSrzM1h6Cs/fH/usWaljsfcmpefsgadf1w0AwC54BlJUEsDBBQAAAAIAN14U1H+URCBXAAA
+ 1k3PSNSrzM1h6Cs/fH/usWaljsfcmpefsgadf1w0AwC54BlJUEsDBBQAAAAIAOGdXVH+URCBXAAA
AFcAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2FjL2M3ZmEzZmRl
Y2Q1N2E4YjBhNTQzNmU4YWU5Yzc4MjZhMzY2YzJmAVcAqP94AUvKyU9SsDRiqOZSAAKlvMTcVCUr
BaXEggLd4tSisszkVN2M1JycfN3y/KKcFCUdiLKy1KLizPw8kEoDPQM9Q5h4Tn5ydlpmTmoYXN6Q
- q5YLAKcWHHhQSwMEFAAAAAgA3XhTUb6QNY8+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13
+ q5YLAKcWHHhQSwMEFAAAAAgA4Z1dUb6QNY8+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
+ JL3k/Ly0zHSGWKWa+Heue2cm/BZe8dOGo3hxyp9CAGI5iQVQSwMEFAAAAAgA4Z1dUQTLF0HtAAAA
6AAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYWYvNWVhNTQ1MGEw
ZWFmYjE2NmRhMjQ2YTdjYjZhNzZkYWU4NjY4MTEB6AAX/3gBnU9LTsMwEGWdU3jXVcj4b1cIIZUN
Cw7hz0wcqbGrxOX8BCouwG7em3mfSW1dl86kdE99Q2SJInoluNRguFHeKozRiuwJedDJkkCBRDDc
woa1Mx9JOOGsBvDSS3KZSwXJ6BBi5NmqrMkQ6L97RIOWojcxZKXoGLWXynmZDVecJ5EQnDBqCPde
2sYu4fq1VHYpobKX9AtSUfVtXsNyfU5tfWXcgPCCcw5sBAswHOzxU8f/qYdP3GZkcQs1FXZaw344
- nVgjVnq/7edpmpde7vEnfHo02j/ep9oyjo/NGFJfWt2HbwXka5tQSwMEFAAAAAgA3XhTUavAvCDY
+ nVgjVnq/7edpmpde7vEnfHo02j/ep9oyjo/NGFJfWt2HbwXka5tQSwMEFAAAAAgA4Z1dUavAvCDY
AAAA0wAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYjcvYjdiNmYz
ODU0MDIyOWY3MTlhOTM1NzYyYjBiNWY5NDk4ZmZkNDUB0wAs/3gBlY/RacQwEETz7Sq2gRxaS7Zk
CCEmDQRSwWq1OouzLCPkO5Lq46SDfA0MzJsZLjmnBr1zT62KQLRmQu/00IvyOkSPYWIanTVKC3l0
gmbw1nY7VdkaoO4FLXrmSFHxgGE0YdBOkaDXJwMHQyymo6MtpcI7rfe0wQv/KS9me7tmSuuFS34F
HFU/9RqVhWdllepO95zX5N/Bbg4Bzr5jD9QE2iIw7zt8Sr0nFgiyr+Ur/z54lHqLa3kAly2m61Gp
- pbJBrCXD/H1UgY9SG62XH0XQXxVQSwMEFAAAAAgA3XhTUbX2Ob3WAAAA0QAAAE4AAABub2RlanMt
+ pbJBrCXD/H1UgY9SG62XH0XQXxVQSwMEFAAAAAgA4Z1dUbX2Ob3WAAAA0QAAAE4AAABub2RlanMt
ZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYmUvNzhlMWZlY2FmODY3NTgyNDMxOGZhZDAy
MzE1ODYzYjBjY2I0NzQB0QAu/3gBpY/BTsMwEEQ55yv2B1o5G8fOSgjRP6jgCxxnl0aNs5FxWpWv
x0hcOKM5zRxm3kRNaS7Qte1TycxANDAFH2KYBI3DjnvjnSBZJ9YHrNbRKNhsIfNaYPRVTrqhtwaR
xLcUqOu9w9GMvZClQWSyfRP2ctEMp689M5y2Dd453+bI8DzpqnV7Wx6vaY5ZP1XKMWp6gdYZJOxw
sHAw3pimppW28H97mjdOemMol78sU6XQR/o5dtd8lUXvEHWV+WPPocy6gmRNvyfOmktYjt+EbGf0
- UEsDBBQAAAAIAN14U1H1PcDi1QAAANAAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
+ UEsDBBQAAAAIAOGdXVH1PcDi1QAAANAAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
dC9vYmplY3RzL2M4L2QzNzRjNmRmMmMyNzk4ZTBjMmE4YzU5YzFkMDJkOWQ3MTg0OTQ4AdAAL/94
AaWPTU7DMBBGWecUc4FW/ncsIURvUMEJHHuGWo0zkXFaldMTJDas2X6L972XuNbSQUv51BsiWAqo
fEjeoSNPzmthpuwTmuxEyiLIUSlDYVhjw6UD+UnbbPOYQxqFRk0K0WoM0acpktHGaRlEHOLWL9zg
9LU1hNO6wju2W0kIz5kX3r/X+fFaS2r8ydSPiesLSCdUUEZZDQfhhRj2dbft+F/O8IaVbwj98tcl
- 7xb8qD9hd25XmvkOiRcqH1uLvfAC1Lj+Rpy59TgfvwFhO2jUUEsDBBQAAAAIAN14U1EeGiQvggAA
+ 7xb8qD9hd25XmvkOiRcqH1uLvfAC1Lj+Rpy59TgfvwFhO2jUUEsDBBQAAAAIAOGdXVEeGiQvggAA
AH0AAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2NiLzYwYTcwNGZl
MmU4YzgzYTIyM2I3MjliYjI4YzRlODFkM2I0OThhAX0Agv94AZ2NbQoCIRQA++0p3gUK9a0fQUSw
J3k+NYXVBbPO39IR+jkDw/DeWp2g3HKaIyXQGJh9joa0D9lGlYx3FqMxmCS7YDkmJIyC3rPsA1ba
- PrXDWqjDjX/AZemPZ6O6XXhvd1BW6qtS0iGcpZNSHPZ4zvRfLXIdrym+8qM4klBLAwQUAAAACADd
- eFNRf3zoSD4BAAA5AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9j
+ PrXDWqjDjX/AZemPZ6O6XXhvd1BW6qtS0iGcpZNSHPZ4zvRfLXIdrym+8qM4klBLAwQUAAAACADh
+ nV1Rf3zoSD4BAAA5AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9j
Zi9iZTk0MjEzNTA2MTY0OTc0ZWJiNzJkOWZlMWE1YzdmMmUyZWZmMAE5Acb+eAErKUpNVTA2MWYw
MQACBb30zJKM0iQGjee5myNDv+QJ6VSc31Xp+fHO8hguQwMDMxMTsJLM9Lz8olSGQI+n6ssftS18
f8blWlR9k6Na7bnZUFU+ns6ufsGuDIrsAqWHXGe+m6HqX6B9/ijL2UOly6BKglwdXXxd9XJTGOa4
SGl6vO+QkZF449dqeHffz+pZ36CKMvNSUiv0sooZ3hVtsf7W80qfzfQMY+y9Y411oddToGoKEpOz
E9NTdXPyk7OBSvPzGNYc/2V/72z4ig1LnfO6Xh5vyjLL0UdVDFGnsExU20rA9mPOqykPJxieusHk
4zETpq4oPzm1uBii7tdfT666+xN5eXzvv5zCX8//2mCLEVRdeWqSXnJ+XlpmOkOsUk38O9e9MxN+
- C6/4acNRvDjlTyEAXoOKrlBLAwQUAAAACADdeFNRmGfCVE0AAABIAAAATgAAAG5vZGVqcy1kb2Nz
+ C6/4acNRvDjlTyEAXoOKrlBLAwQUAAAACADhnV1RmGfCVE0AAABIAAAATgAAAG5vZGVqcy1kb2Nz
LWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9kOS8wYzZjZGEyNjIyNDRmNTgyNjhmMjFmM2Y5NmU3
ZDg3NzlkMmE1NgFIALf/eAErKUpNVTA1ZTA0MDAzMVHITSwuSS2Kz8tPSdUtz8xLyS8v1k3PSNSr
- zM1hKH7G8n6pz7GZRzZfYr90XULmz8vVdgC93hnHUEsDBBQAAAAIAN14U1EpopOGIAEAABsBAABO
+ zM1hKH7G8n6pz7GZRzZfYr90XULmz8vVdgC93hnHUEsDBBQAAAAIAOGdXVEpopOGIAEAABsBAABO
AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2RkLzc5YzIwOWI2NDdmNDYz
YzFjMjVhZDhhZjE5ZWIxN2ZmOTgxYmI3ARsB5P54ASspSk1VMDawZDA0MDAzMVHQS88syUzPyy9K
ZQj0eKq+/FHbwvdnXK5F1Tc5qtWemw1V5ePp7OoX7MqgyC5Qesh15rsZqv4F2uePspw9VLoMqiTI
1dHF11UvN4VhjouUpsf7DhkZiTd+rYZ39/2snvUNqigzLyW1Qi+rmMFx0oK3lS9nHrklI7PX5Az3
18Lts7ZC1RQkJmcnpqfq5uQnZwOV5ucxrDn+y/7e2fAVG5Y653W9PN6UZZajj6oYok5hmai2lYDt
x5xXUx5OMDx1g8nHYyZMXVF+cmpxMUTdr7+eXHX3J/Ly+N5/OYW/nv+1wRYjqLry1CS95Py8tMx0
- hlilmvh3rntnJvwWXvHThqN4ccqfQgAXN320UEsDBBQAAAAIAN14U1GJ/mg6TAAAAEcAAABOAAAA
+ hlilmvh3rntnJvwWXvHThqN4ccqfQgAXN320UEsDBBQAAAAIAOGdXVGJ/mg6TAAAAEcAAABOAAAA
bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2RlL2NjMzEyOGY4YjkwZTIwYzg0
Y2JmM2Y5MGMxNmU3OGFjMWNjYzA2AUcAuP94ASspSk1VMDVlMDQwMDMxUchNLC5JLYrPy09J1S3P
- zEvJLy/WTc9I1KvMzWGQZVLdwKkjFOx6QPiNPNfNI1+yGbMBgGMVU1BLAwQUAAAACADdeFNRHsOe
+ zEvJLy/WTc9I1KvMzWGQZVLdwKkjFOx6QPiNPNfNI1+yGbMBgGMVU1BLAwQUAAAACADhnV1RHsOe
vyABAAAbAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9kZi85ZjY2
MzdlNDJkZmVjM2QyZTIxMGI5YTE2NjdkY2RiZTY3NDAxMQEbAeT+eAErKUpNVTA2sGQwNDAwMzFR
0EvPLMlMz8svSmUI9HiqvvxR28L3Z1yuRdU3OarVnpsNVeXj6ezqF+zKoMguUHrIdea7Gar+Bdrn
j7KcPVS6DKokyNXRxddVLzeFYY6LlKbH+w4ZGYk3fq2Gd/f9rJ71DaooMy8ltUIvq5jhXdEW6289
r/TZTM8wxt471lgXej0FqqYgMTk7MT1VNyc/ORuoND+PYc3xX/b3zoav2LDUOa/r5fGmLLMcfVTF
EHUKy0S1rQRsP+a8mvJwguGpG0w+HjNh6oryk1OLiyHqfv315Kq7P5GXx/f+yyn89fyvDbYYQdWV
- pybpJefnpWWmM8Qq1cS/c907M+G38IqfNhzFi1P+FAIAgRV80VBLAwQUAAAACADdeFNRVxA9trUA
+ pybpJefnpWWmM8Qq1cS/c907M+G38IqfNhzFi1P+FAIAgRV80VBLAwQUAAAACADhnV1RVxA9trUA
AACwAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9lMC9jNzBkOWJm
ZGUwOWU4MmRkZTIyMTNjNzJmNWQ0NDQzOTc0Njc0ZAGwAE//eAGVjkEKwjAQAD33FfsBZZM0TQIi
Sk+Cn0g2Gy22jcTUgq9X/IGngYGBoTxNQwWpzKYWZrBKtUYZrdlRTCgC6Yio0DrspAgmkI8u+tQ8
fOG5gkhWUssdJbRKyySTja0O0XXOcQpGKKWFMKHxS73lAr0fX8MMe/qRbu18vE5+GHeUpwOIDqWT
- UqOBLRrE5mu/e5X/Dpu+sK8May73NOYVlucwX+H0XgpDfzl/ANeDS0dQSwMEFAAAAAgA3XhTUX0K
+ UqOBLRrE5mu/e5X/Dpu+sK8May73NOYVlucwX+H0XgpDfzl/ANeDS0dQSwMEFAAAAAgA4Z1dUX0K
XqI+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZTYvZDFh
MzU3MjMxZDQyNGY4ZjZkODdlMGNhNzQ2MTE5ZWJhM2VjYWEBOQHG/ngBKylKTVUwNjFmMDEAAgW9
9MySjNIkhvpHC+Ytjdgbdrti5fzXnosivpZPKjE0MDAzMQEryUzPyy9KZQj0eKq+/FHbwvdnXK5F
@@ -1707,32 +2011,32 @@ interactions:
DhkZiTd+rYZ39/2snvUNqigzLyW1Qi+rmOGXVFm87o+lcvskTCW5g9WfujrdPgBVU5CYnJ2Ynqqb
k5+cDVSan8ew5vgv+3tnw1dsWOqc1/XyeFOWWY4+qmKIOoVlotpWArYfc15NeTjB8NQNJh+PmTB1
RfnJqcXFEHW//npy1d2fyMvje//lFP56/tcGW4yg6spTk/SS8/PSMtMZYpVq4t+57p2Z8Ft4xU8b
- juLFKX8KAUU9in1QSwMEFAAAAAgA3XhTUUddjzK4AAAAswAAAE4AAABub2RlanMtZG9jcy1oZWxs
+ juLFKX8KAUU9in1QSwMEFAAAAAgA4Z1dUUddjzK4AAAAswAAAE4AAABub2RlanMtZG9jcy1oZWxs
by13b3JsZC8uZ2l0L29iamVjdHMvZWUvNmU3ZmI5NmJhZDQ0ZjdmYjU5MzQ4OTNkNjE0MTFjMmNl
MDgyNjQBswBM/3gBlY5BasMwEAB79iv2Ay2ydrXKQiktORV67QNW8ioxsa2gyg309Q39QU8DAwOT
67rOHTzGh97MoJBNESWJxpBC8shoiNOY0YpEC5xIkGMartps68BWDshBmMg7UqGImsUlsaBRhIV8
KCw26N7PtcFRl+95g+f8x3ym7fW06rw85bq+wMjOy3hwhPDoonPD3d73uv07HD6vk3aDW22XstQb
- 7F/zdoK3n70ZHD/efwGRlkrLUEsDBBQAAAAIAN14U1EV71ZA7gAAAOkAAABOAAAAbm9kZWpzLWRv
+ 7F/zdoK3n70ZHD/efwGRlkrLUEsDBBQAAAAIAOGdXVEV71ZA7gAAAOkAAABOAAAAbm9kZWpzLWRv
Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2VlLzcyYjQzYmY2OGNlYTJmMDYzNWNjMDE1ZGRl
YzY4MTdlNTVkNzY0AekAFv94AVWQz27CMAzGd+5TeJEmgtSlQA+TiuDChdumjRcIrQWRLCckptsE
e/elKxzmmz9/P//bk99DPa8fWs9J4CgSYAURT2cXUU+GfDJdFsVYThh7jNkw6KaNaAU//jStBwaT
lBlOITfDKazWcCkgx10yn9EJbtF2ejGblXBRG8+CLM+774CqASX4JVUg61j95Ln/YOROqy0SedhY
6h3D4lFl02C8LRh8lLxeiL7FlAxyb95e33dwvcK8rl+WxXiBIZfyWD3Y77AnNOQPWo0HQTwzOz6A
- Hb/SVBX51tLRJ2meOlXCDf4FLipqTVBLAwQUAAAACADdeFNRsWK1vjgAAAAzAAAATgAAAG5vZGVq
+ Hb/SVBX51tLRJ2meOlXCDf4FLipqTVBLAwQUAAAACADhnV1RsWK1vjgAAAAzAAAATgAAAG5vZGVq
cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mMC9hYWQxMDYwZmZlODNhYjM1YTA5ZWM4
ZGQyYmUwZGJkMzk5YjJmYwEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJihg8nFmdH3QoyCDou
- Ie/xM2lF5IvN5QBX1RG+UEsDBBQAAAAIAN14U1HztfOWaAAAAGMAAABOAAAAbm9kZWpzLWRvY3Mt
+ Ie/xM2lF5IvN5QBX1RG+UEsDBBQAAAAIAOGdXVHztfOWaAAAAGMAAABOAAAAbm9kZWpzLWRvY3Mt
aGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2YwL2M4YTM2YjVhZGE1MjMwNTJjNzE4MWY0OGY5NjJh
ODU5ZThiMzc3AWMAnP94ASspSk1VMDQ0YDA0MDAzMVHITSwuSS3SzctPSdUtz8xLyS8v1k3PSNSr
zM1hKDm37L62GZ+43NZ7vLzcfIJv/tnHoGiLx6qtr/zw/bnHmpU6HnNrXn7KGnT+cdEMAISiLPtQ
- SwMEFAAAAAgA3XhTUcmvZVo+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
+ SwMEFAAAAAgA4Z1dUcmvZVo+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
+ Vqkm/p3r3pkJv4VX/LThKF6c8qcQAAuYiMRQSwMEFAAAAAgA4Z1dUeAtL5k+AQAAOQEAAE4AAABu
b2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjcvNDkxYjgzNTJlMGIzZGZiMWQ5
Y2E2ODc0MDNlYWIxOGUxNDViNzcBOQHG/ngBKylKTVUwNjFmMDEAAgW99MySjNIkBp/arcw6X+J3
5R1Qqi6dM5enoXH6HUMDAzMTE7CSzPS8/KJUhkCPp+rLH7UtfH/G5VpUfZOjWu252VBVPp7Orn7B
@@ -1740,17 +2044,17 @@ interactions:
ijLzUlIr9LKKGX5JlcXr/lgqt0/CVJI7WP2pq9PtA1A1BYnJ2Ynpqbo5+cnZQKX5eQxrjv+yv3c2
fMWGpc55XS+PN2WZ5eijKoaoU1gmqm0lYPsx59WUhxMMT91g8vGYCVNXlJ+cWlwMUffrrydX3f2J
vDy+919O4a/nf22wxQiqrjw1SS85Py8tM50hVqkm/p3r3pkJv4VX/LThKF6c8qcQAHkOiEZQSwME
- FAAAAAgA3XhTUXhjLnOjAAAAngAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
+ FAAAAAgA4Z1dUXhjLnOjAAAAngAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
amVjdHMvZjcvYjM1ZDVkOGQ5YzgwM2UzZjJlZTUzZTlhN2NiYWY0MzQ2MzE5MGEBngBh/3gBnY7b
CQIxEAD9ThXbgJLH5pKAiGANFrDZ3XgH3oMjWr9iCX7OwMDwOs9TB+/joe+qEAJiC+pIpcQQGtuc
nc9NhAcOTXxiThXRbLTr0iGzYBIZmpeq6gq1EqUkKzXaXAfCWLNmRUOvPq473Oj5nha4jbTAmX/A
- Iy7Xx0zT88TrfAE3WF88umjhaJO15mu/j13/q819E+oKaD5bGUc9UEsDBBQAAAAIAN14U1FRWInv
+ Iy7Xx0zT88TrfAE3WF88umjhaJO15mu/j13/q819E+oKaD5bGUc9UEsDBBQAAAAIAOGdXVFRWInv
7gAAAOkAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2ZhLzFhNzY1
ZjJkZjhhNTFlYmUxODM1MTkwYjUzMjdlNTQ1NDJkYmMwAekAFv94AVWQz27CMAzGd+5TeJEmgtSl
QA6TiuDChdumjRcIrQWRojgkptsEe/clKxzmmz9/P//bO9qDnuuHjnxiODIHWEHE09lGlJOST6bL
qhrLCeOAMRuKrrqIhvHjT5OyMJi4znAKuRlOYbWGSwU57pL6jJZxi6aXi9mshovYkGf0/Lz7Diha
EIxf3ARnrBc/ee4/GH0vxRadI9gYN1gP+lFkUzHeFgwUOa8XInWYkkI/qLfX9x1crzDX+mVZjRco
- Z1MeK4v9DpND5eggxXgQxLP31h/AjF9pm8ZRZ9yRErdPvajhBv8CLq5qTlBLAwQUAAAACADdeFNR
+ Z1MeK4v9DpND5eggxXgQxLP31h/AjF9pm8ZRZ9yRErdPvajhBv8CLq5qTlBLAwQUAAAACADhnV1R
KiV1rKsHAAAUCwAAWwAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9wYWNr
L3BhY2stY2E1ZjIxODkwNTUzOGVkNzNhZTg1ZGNiMzA4ZmY2NTcyNzM2NTJiMy5pZHid1nk01Osf
B/AxTRLG2MYwKOuIwqDGOmS5SSaKqwUzKCQRupSQNVu6Yy1rJNso6krWiGu7GVIITWKMOLYYe2XI
@@ -1787,7 +2091,7 @@ interactions:
qAe9a38eqBLvQGT2gYguB7XOFZwD8w6DfrEfdAHlLFBjXgCge8g6gm9G4Bs4j7sNgYgugrnVICqb
wBp0MAQdrMHcQyDP2O+CtQeI5k4Q4VSw1w/5fyeDm4D7gAwVygczQG9UAbNQ5yAQETdwD9CXVAxA
zQQ5yvEUVBkrUD3qwXlwB9U3oF6B7oIFdxErBv/1HdQDCtVOMnq3JblPa5zYho1dPiuHsygtM73k
- V9lwoO0rP6MNPz7VB9sXwP4/UEsDBBQAAAAIAN14U1FaYeNuJTUAAO02AABcAAAAbm9kZWpzLWRv
+ V9lwoO0rP6MNPz7VB9sXwP4/UEsDBBQAAAAIAOGdXVFaYeNuJTUAAO02AABcAAAAbm9kZWpzLWRv
Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL3BhY2svcGFjay1jYTVmMjE4OTA1NTM4ZWQ3M2Fl
ODVkY2IzMDhmZjY1NzI3MzY1MmIzLnBhY2vNt1N05V/w9nli20bHtq3u2HbSsW3bTk7SsZ2Obbtj
27aTzqR/73+9Mzcza25mrbk4V99de9Wp56lP1VYQFpUGAACgXz/BLDr3TJ+EUdsCIYDYlbf4luK5
@@ -2028,11 +2332,11 @@ interactions:
H+baOoHmn9YNYRZ9bsU89RGfmSDfyCESvsLN/s/wNhwiIlgf1XbGh0u19YxiU+YrSogSQBckIrlt
gsV/4Wlf4ak8rPx7XxcA6Owh7k9BgrD/+QLISSJVKGtyVwS00rdjkZR0YBb8dN16gQ8CAHIH4LKs
Cn/+R0V/i70+rv8QRlADVvPzy3/jd5nbMABwAEhCMah75v9LoCEAoOOQscf0SSIglGOXeI51x5ni
- HtUpOZTq/w9QSwMEFAAAAAgA3XhTUbP1OKcpAAAAKQAAAC4AAABub2RlanMtZG9jcy1oZWxsby13
+ HtUpOZTq/w9QSwMEFAAAAAgA4Z1dUbP1OKcpAAAAKQAAAC4AAABub2RlanMtZG9jcy1oZWxsby13
b3JsZC8uZ2l0L3JlZnMvaGVhZHMvbWFzdGVyBcHBEQAgCAOwv9MAopRxvFb3H8GE0Kzk1gtGNa4x
- DriaLgu1ypGdGB9QSwMEFAAAAAgA3XhTUbP1OKcpAAAAKQAAADcAAABub2RlanMtZG9jcy1oZWxs
+ DriaLgu1ypGdGB9QSwMEFAAAAAgA4Z1dUbP1OKcpAAAAKQAAADcAAABub2RlanMtZG9jcy1oZWxs
by13b3JsZC8uZ2l0L3JlZnMvcmVtb3Rlcy9vcmlnaW4vbWFzdGVyBcHBEQAgCAOwv9MAopRxvFb3
- H8GE0Kzk1gtGNa4xDriaLgu1ypGdGB9QSwMEFAAAAAgA3XhTUamxxldlAQAAZwIAAC8AAABub2Rl
+ H8GE0Kzk1gtGNa4xDriaLgu1ypGdGB9QSwMEFAAAAAgA4Z1dUamxxldlAQAAZwIAAC8AAABub2Rl
anMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NBcHAvLmdpdGlnbm9yZV1Sy2oDMQy8L+w/GHJp
C5u995qWQgm0pB8QvLbiKPELS27I31fOJmnpxbLk0WhGuwu1To76zl/Op6XEvos5DBam6lr61Hd9
t1CbGhkDKKtZ911Ge4FLbIEA7Ax7wQKGUzmrXSoKI3GpASKDVR4nUg4iFN3S6awOZNK3pA7G969V
@@ -2040,12 +2344,12 @@ interactions:
ijJFMqfNfNgz5+dxdA1yoKVJYTQFNGN0Q/bVibtFA7ecNR2HHXqgR5lyabmKSBaGk96JiLhDV8U8
pigYn8xxOJEpmPnmNmRhEHsYtVjV1qZIdx2NSWSk4kadcZxfl3sOXkZOFb0dN+BB09X+C2SIFqI5
39eHIF+t8WxDstW37EA5bLM2R7FMc+NHbhK1V/IfKKPN/s/+2wpz+IfbvH6u1R7pBmgDCmS/vdd+
- AFBLAwQUAAAACADdeFNRuuASIt0AAABBAQAALQAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215
+ AFBLAwQUAAAACADhnV1RuuASIt0AAABBAQAALQAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215
RXhwcmVzc0FwcC9pbmRleC5qc1WQTUsDMRBA7wv7H8aANIV1t9qDsFIvXnpTbMFzyA5tIGTiZFqV
tv/dpEupzm1m3mM+LIUksBWJsADGz51j1JOST6ZPdVVX9gwk5D1yRkqntYxGcHWuaV0sTNJkPcVM
4xQWz3CoK8hxqbVf7ASXaAb9MJs1cFAvFASD3K1/IqoelOC3dNEbF9SpjP5nYxi0WqL3BB/EfrhR
BTn9XTESS14wMllMKRv79u31fQ3HI9zP54+ZHI9ovUt5sC781SePraeNVuNVwLsQXNiAGZ/Td50n
- a/yWkvS3g2rgov8CUEsDBBQAAAAIAN14U1FBwXdOjwIAAJ8EAAAsAAAAbm9kZWpzLWRvY3MtaGVs
+ a/yWkvS3g2rgov8CUEsDBBQAAAAIAOGdXVFBwXdOjwIAAJ8EAAAsAAAAbm9kZWpzLWRvY3MtaGVs
bG8td29ybGQvbXlFeHByZXNzQXBwL0xJQ0VOU0VdU81u4jAQvlfqO4w4tVLUve/NBFOsTeLIMe1y
DIkhXoUY2aaob78zSaBqJSTk8Xx/Mw4AQC40ZLYxQzCPD48PWIHUnT+9PXYRnppnyG3jXXCHiHV/
dr6O1g0vwPoexqYA3gTjP0z7ciMojT/ZELAPbIDOeLP/hKOvh2jaBA7eGHAHaLraH00C0UE9fMLZ
@@ -2058,26 +2362,26 @@ interactions:
mdC7ZGJbC10Q+1oqYFAypUW6zZiCcqtKWXE0skLuQhRrhVI854V+QWmsAX/DA1QblmWkNxGyLYZR
ZBdSWe6UeN1o2MhsxbG45OiRLTM+6WHGNGMiT2DFcvbKR5REqjkq9U5m4X3DqU7KDH+pFrKgVKks
tMJjgqGVvuPfRcUTYEpUNJ+1kvmcl+aMMDkyIbjgExXt4PuqsIXO24rfWWHFWYaEFYHviW+Ix4f/
- UEsDBBQAAAAIAN14U1GqDG7dTAAAAGEAAAA2AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlF
+ UEsDBBQAAAAIAOGdXVGqDG7dTAAAAGEAAAA2AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlF
eHByZXNzQXBwL3BhY2thZ2UtbG9jay5qc29uq+blUgACpbzE3FQlKwWlxIIC3eLUorLM5FTdjNSc
- nHzd8vyinBQlHai6stSi4sz8PJBSAz0DPUO4RE5+cnZaZk5qGFyBIS9XLS8XAFBLAwQUAAAACADd
- eFNRsDZHUq8AAAAaAQAAMQAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9w
+ nHzd8vyinBQlHai6stSi4sz8PJBSAz0DPUO4RE5+cnZaZk5qGFyBIS9XLS8XAFBLAwQUAAAACADh
+ nV1RsDZHUq8AAAAaAQAAMQAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9w
YWNrYWdlLmpzb249jrEOgyAURXcT/+GFuRq7dnNrh3axSWciz0iDQB5om5r+e0EshOne827OWhYQ
HtN8QnYCxq2tHNIie6xGVMpUL0NKsMPOCXQ9Seul0RHv5GQVwjmS8Igk3IzA+unA8a0aDEH7mQmh
tRa6NJ3nFiS3TzV1Ux9zYUku3EclTzP+UxVutdtEr5d7hvnsR0NbKnsyzgw+d0nXhXJNSUo9Jx8P
- dLAFqQW+gzNLxLcswv8BUEsDBBQAAAAIAN14U1EgEDXUuAAAAFEBAAAxAAAAbm9kZWpzLWRvY3Mt
+ dLAFqQW+gzNLxLcswv8BUEsDBBQAAAAIAOGdXVEgEDXUuAAAAFEBAAAxAAAAbm9kZWpzLWRvY3Mt
aGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3Byb2Nlc3MuanNvbl2PPQ+CMBCGdxP/w6WzYBxcmBlY
SEycdGkaOLDSD9IW0Rj/uycoEt6lzT1P73oAAM/1CoYwIzQy+CYB1lvXoGObSfCFk21gkxBvpSnx
Hl/9TJLGB2EK9GyQdn+i0dXIla0/KIHgOvxDKvNSBOSVdVrQEOp/okR5HqUpZFmiNZxnc3oRigtb
thmq3LZBWuOJTtsRq6xStj8+tJKm8cunJHQeD+RIU49/X3JpArqbUGzcf/9Dr/FCxxtQSwMEFAAA
- AAgA3XhTUaki5WtgAQAAzQIAAC4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NB
+ AAgA4Z1dUaki5WtgAQAAzQIAAC4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NB
cHAvUkVBRE1FLm1klZGxTgMxDIb3Sn0HCxY63N1+ExUSYgGEQGKoEHITXy/VJQ6JDwRPj9ODUioW
Nsf+7e+3U1XVfBZxQ8/yHqmFjD4ONJ8NGDajpnM7n1UQ2NI2l2iLr5hNclG0LbEdjUwS/BgT7YMK
Y6wypVdnNGlpanEcWjh56F3+4oAlzyFLQqEMCOLCO1zRMDA8chos3Ci43mopRug4wbIMh6W+7qfh
9Ykyyw7z2elefTChFP4DDEfA1QELHmld2E9nvUjMbdNYNrn2ziTO3Elt2De79ZuD9as3Wi/qncFT
uOAgya1H5W721vSOWzICPSrXchSyID3B6vp7MtxGCnDPY1IXF2oRuCuzyvl/3LCK8k5z5MloB3dm
0jeLGi51M896SRd0SY/lZyATTdgjAFwu7/4N6fClWYBiNCGoQ1alsWjOf7U9nXl0g3D7d3kBb056
- QP0ltNYVnzjAy0i5hHkCeE9Bsp74E1BLAwQUAAAACADdeFNRSegmiIYEAAAGCgAALwAAAG5vZGVq
+ QP0ltNYVnzjAy0i5hHkCeE9Bsp74E1BLAwQUAAAACADhnV1RSegmiIYEAAAGCgAALwAAAG5vZGVq
cy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC93ZWIuY29uZmlntVZdb9s2FH0PkP9wp5cC
wWQ22x6GzEoQNA5goM26OOkwrFtASbTFRiJVkrLsDv3vO6RkWc6SYS8LjBiieT/Ouefeq+nFpipp
LYyVWiXR6eR1REJlOpdqlUSNW8Y/Rhfnx0fTb+L4+Ij8310hLWVaLeWqMdzBjpayFIRTIz430oic
@@ -2099,182 +2403,182 @@ interactions:
E2pDo+deg/YM7FUyznQJTVlRc+xBeC2RLOllGAD9DmglOg1V7a3DiMwwfFf+gvaMOG7Gq2Ic0kvk
Qaj12eAGbwk1X4VgTncvDhDYzc9Xs4fZzQc06loarXzZaM2N9Ntr7HCYxrNusVG8I8keTLi0QYUx
xXsDnIK6fhnuZ8lCiP/lLSOQxGnZAPOO0r4iXei9VFD16W5ZjguURHt3P510zd1bQaz/fFGZsqcv
- NH8DUEsBAhQAFAAAAAgA3XhTUTko1a0LAAAACQAAACsAAAAAAAAAAAAAALaBAAAAAG5vZGVqcy1k
- b2NzLWhlbGxvLXdvcmxkLy5naXQvQ09NTUlUX0VESVRNU0dQSwECFAAUAAAACADdeFNRQExnl8oA
+ NH8DUEsBAhQAFAAAAAgA4J1dUTko1a0LAAAACQAAACsAAAAAAAAAAAAAALaBAAAAAG5vZGVqcy1k
+ b2NzLWhlbGxvLXdvcmxkLy5naXQvQ09NTUlUX0VESVRNU0dQSwECFAAUAAAACADgnV1RQExnl8oA
AAA7AQAAIwAAAAAAAAAAAAAAtoFUAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9jb25m
- aWdQSwECFAAUAAAACADdeFNRN4sHHz8AAABJAAAAKAAAAAAAAAAAAAAAtoFfAQAAbm9kZWpzLWRv
- Y3MtaGVsbG8td29ybGQvLmdpdC9kZXNjcmlwdGlvblBLAQIUABQAAAAIAN14U1GHLufaZgAAAG4A
+ aWdQSwECFAAUAAAACADgnV1RN4sHHz8AAABJAAAAKAAAAAAAAAAAAAAAtoFfAQAAbm9kZWpzLWRv
+ Y3MtaGVsbG8td29ybGQvLmdpdC9kZXNjcmlwdGlvblBLAQIUABQAAAAIAOCdXVGHLufaZgAAAG4A
AAAnAAAAAAAAAAAAAAC2geQBAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L0ZFVENIX0hF
- QURQSwECFAAUAAAACADdeFNRK2lzpxkAAAAXAAAAIQAAAAAAAAAAAAAAtoGPAgAAbm9kZWpzLWRv
- Y3MtaGVsbG8td29ybGQvLmdpdC9IRUFEUEsBAhQAFAAAAAgA3XhTUT3zOwKpAQAAqQIAACIAAAAA
+ QURQSwECFAAUAAAACADgnV1RK2lzpxkAAAAXAAAAIQAAAAAAAAAAAAAAtoGPAgAAbm9kZWpzLWRv
+ Y3MtaGVsbG8td29ybGQvLmdpdC9IRUFEUEsBAhQAFAAAAAgA4J1dUT3zOwKpAQAAqQIAACIAAAAA
AAAAAAAAALaB5wIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaW5kZXhQSwECFAAUAAAA
- CADdeFNRXTKUHCkAAAApAAAAJgAAAAAAAAAAAAAAtoHQBAAAbm9kZWpzLWRvY3MtaGVsbG8td29y
- bGQvLmdpdC9PUklHX0hFQURQSwECFAAUAAAACADdeFNRhU/4CRcBAADeAQAAOAAAAAAAAAAAAAAA
+ CADhnV1RXTKUHCkAAAApAAAAJgAAAAAAAAAAAAAAtoHQBAAAbm9kZWpzLWRvY3MtaGVsbG8td29y
+ bGQvLmdpdC9PUklHX0hFQURQSwECFAAUAAAACADgnV1RhU/4CRcBAADeAQAAOAAAAAAAAAAAAAAA
toE9BQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9hcHBseXBhdGNoLW1zZy5z
- YW1wbGVQSwECFAAUAAAACADdeFNR6fjKEPcBAACAAwAANAAAAAAAAAAAAAAAtoGqBgAAbm9kZWpz
+ YW1wbGVQSwECFAAUAAAACADgnV1R6fjKEPcBAACAAwAANAAAAAAAAAAAAAAAtoGqBgAAbm9kZWpz
LWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9jb21taXQtbXNnLnNhbXBsZVBLAQIUABQAAAAI
- AN14U1FQuZhj/wYAAC8SAAA8AAAAAAAAAAAAAAC2gfMIAABub2RlanMtZG9jcy1oZWxsby13b3Js
- ZC8uZ2l0L2hvb2tzL2ZzbW9uaXRvci13YXRjaG1hbi5zYW1wbGVQSwECFAAUAAAACADdeFNRmgz3
+ AOCdXVFQuZhj/wYAAC8SAAA8AAAAAAAAAAAAAAC2gfMIAABub2RlanMtZG9jcy1oZWxsby13b3Js
+ ZC8uZ2l0L2hvb2tzL2ZzbW9uaXRvci13YXRjaG1hbi5zYW1wbGVQSwECFAAUAAAACADgnV1Rmgz3
wIoAAAC9AAAANQAAAAAAAAAAAAAAtoFMEAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9o
- b29rcy9wb3N0LXVwZGF0ZS5zYW1wbGVQSwECFAAUAAAACADdeFNRz8BMAgkBAACoAQAAOAAAAAAA
+ b29rcy9wb3N0LXVwZGF0ZS5zYW1wbGVQSwECFAAUAAAACADgnV1Rz8BMAgkBAACoAQAAOAAAAAAA
AAAAAAAAtoEpEQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtYXBwbHlw
- YXRjaC5zYW1wbGVQSwECFAAUAAAACADdeFNR77MyDIwDAABrBgAANAAAAAAAAAAAAAAAtoGIEgAA
+ YXRjaC5zYW1wbGVQSwECFAAUAAAACADgnV1R77MyDIwDAABrBgAANAAAAAAAAAAAAAAAtoGIEgAA
bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtY29tbWl0LnNhbXBsZVBLAQIU
- ABQAAAAIAN14U1FEP/Ne/wAAAKABAAA6AAAAAAAAAAAAAAC2gWYWAABub2RlanMtZG9jcy1oZWxs
- by13b3JsZC8uZ2l0L2hvb2tzL3ByZS1tZXJnZS1jb21taXQuc2FtcGxlUEsBAhQAFAAAAAgA3XhT
+ ABQAAAAIAOCdXVFEP/Ne/wAAAKABAAA6AAAAAAAAAAAAAAC2gWYWAABub2RlanMtZG9jcy1oZWxs
+ by13b3JsZC8uZ2l0L2hvb2tzL3ByZS1tZXJnZS1jb21taXQuc2FtcGxlUEsBAhQAFAAAAAgA4J1d
UQTYj7GdAgAARAUAADIAAAAAAAAAAAAAALaBvRcAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
- aXQvaG9va3MvcHJlLXB1c2guc2FtcGxlUEsBAhQAFAAAAAgA3XhTUYTsWFHfBwAAIhMAADQAAAAA
+ aXQvaG9va3MvcHJlLXB1c2guc2FtcGxlUEsBAhQAFAAAAAgA4J1dUYTsWFHfBwAAIhMAADQAAAAA
AAAAAAAAALaBqhoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLXJlYmFz
- ZS5zYW1wbGVQSwECFAAUAAAACADdeFNRksT4lkkBAAAgAgAANQAAAAAAAAAAAAAAtoHbIgAAbm9k
+ ZS5zYW1wbGVQSwECFAAUAAAACADgnV1RksT4lkkBAAAgAgAANQAAAAAAAAAAAAAAtoHbIgAAbm9k
ZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtcmVjZWl2ZS5zYW1wbGVQSwECFAAU
- AAAACADdeFNR7RM2MOgCAADUBQAAPAAAAAAAAAAAAAAAtoF3JAAAbm9kZWpzLWRvY3MtaGVsbG8t
- d29ybGQvLmdpdC9ob29rcy9wcmVwYXJlLWNvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgA3XhT
+ AAAACADgnV1R7RM2MOgCAADUBQAAPAAAAAAAAAAAAAAAtoF3JAAAbm9kZWpzLWRvY3MtaGVsbG8t
+ d29ybGQvLmdpdC9ob29rcy9wcmVwYXJlLWNvbW1pdC1tc2cuc2FtcGxlUEsBAhQAFAAAAAgA4J1d
UYhk77V4BAAAMw4AADAAAAAAAAAAAAAAALaBuScAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
- aXQvaG9va3MvdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIAN14U1F3Pc0hrQAAAPAAAAApAAAAAAAA
+ aXQvaG9va3MvdXBkYXRlLnNhbXBsZVBLAQIUABQAAAAIAOCdXVF3Pc0hrQAAAPAAAAApAAAAAAAA
AAAAAAC2gX8sAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2luZm8vZXhjbHVkZVBLAQIU
- ABQAAAAIAN14U1HwgMT9NgIAAHUHAAAmAAAAAAAAAAAAAAC2gXMtAABub2RlanMtZG9jcy1oZWxs
- by13b3JsZC8uZ2l0L2xvZ3MvSEVBRFBLAQIUABQAAAAIAN14U1HwgMT9NgIAAHUHAAAzAAAAAAAA
+ ABQAAAAIAOCdXVHwgMT9NgIAAHUHAAAmAAAAAAAAAAAAAAC2gXMtAABub2RlanMtZG9jcy1oZWxs
+ by13b3JsZC8uZ2l0L2xvZ3MvSEVBRFBLAQIUABQAAAAIAOCdXVHwgMT9NgIAAHUHAAAzAAAAAAAA
AAAAAAC2ge0vAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2xvZ3MvcmVmcy9oZWFkcy9t
- YXN0ZXJQSwECFAAUAAAACADdeFNRhJfpgboBAAB7BgAAPAAAAAAAAAAAAAAAtoF0MgAAbm9kZWpz
+ YXN0ZXJQSwECFAAUAAAACADgnV1RhJfpgboBAAB7BgAAPAAAAAAAAAAAAAAAtoF0MgAAbm9kZWpz
LWRvY3MtaGVsbG8td29ybGQvLmdpdC9sb2dzL3JlZnMvcmVtb3Rlcy9vcmlnaW4vbWFzdGVyUEsB
- AhQAFAAAAAgA3XhTURjM6OyhAAAAnAAAAE4AAAAAAAAAAAAAALaBiDQAAG5vZGVqcy1kb2NzLWhl
+ AhQAFAAAAAgA4J1dURjM6OyhAAAAnAAAAE4AAAAAAAAAAAAAALaBiDQAAG5vZGVqcy1kb2NzLWhl
bGxvLXdvcmxkLy5naXQvb2JqZWN0cy8wMS8wNGRiNjgyMmEwZGRmYmY1MDNlNmNmNGNkMmMzYzIy
- OWQxOGIxOVBLAQIUABQAAAAIAN14U1EL/uZsuQAAALQAAABOAAAAAAAAAAAAAAC2gZU1AABub2Rl
+ OWQxOGIxOVBLAQIUABQAAAAIAOCdXVEL/uZsuQAAALQAAABOAAAAAAAAAAAAAAC2gZU1AABub2Rl
anMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMDYvN2NlMjVkMDY2NTVjZDI2OTA4YzM2
- YzA3NWQ2NWZjZWI4NDQ5MmZQSwECFAAUAAAACADdeFNR0Mkxhj4BAAA5AQAATgAAAAAAAAAAAAAA
+ YzA3NWQ2NWZjZWI4NDQ5MmZQSwECFAAUAAAACADgnV1R0Mkxhj4BAAA5AQAATgAAAAAAAAAAAAAA
toG6NgAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzBiL2FhZGY1ZDQ4YjJj
- MjZmZmE3Yzg4MTAwMTBhMmIwODgwZjZhY2FkUEsBAhQAFAAAAAgA3XhTURN4xB+uAAAAqQAAAE4A
+ MjZmZmE3Yzg4MTAwMTBhMmIwODgwZjZhY2FkUEsBAhQAFAAAAAgA4J1dURN4xB+uAAAAqQAAAE4A
AAAAAAAAAAAAALaBZDgAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xMy8y
- ZTE3MWJjY2ZhZjBjNTFkNjRkNTM4MGFlMWIzZTBiMTU0YWNlNFBLAQIUABQAAAAIAN14U1Fqp/Im
+ ZTE3MWJjY2ZhZjBjNTFkNjRkNTM4MGFlMWIzZTBiMTU0YWNlNFBLAQIUABQAAAAIAOCdXVFqp/Im
rwAAAKoAAABOAAAAAAAAAAAAAAC2gX45AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
amVjdHMvMTMvZThjNjJkZDNiMDQxNDIwYTNkMmFlMWIzODkwMTMzZmYxNGVmYzJQSwECFAAUAAAA
- CADdeFNRgYo4CdkBAADUAQAATgAAAAAAAAAAAAAAtoGZOgAAbm9kZWpzLWRvY3MtaGVsbG8td29y
+ CADgnV1RgYo4CdkBAADUAQAATgAAAAAAAAAAAAAAtoGZOgAAbm9kZWpzLWRvY3MtaGVsbG8td29y
bGQvLmdpdC9vYmplY3RzLzFkLzAyMjViMDA5MmMxMjUzNDVjMDEzZWMxZjBhZDljNGY0NmIwMTZi
- UEsBAhQAFAAAAAgA3XhTUUEeqqSgAAAAmwAAAE4AAAAAAAAAAAAAALaB3jwAAG5vZGVqcy1kb2Nz
+ UEsBAhQAFAAAAAgA4J1dUUEeqqSgAAAAmwAAAE4AAAAAAAAAAAAAALaB3jwAAG5vZGVqcy1kb2Nz
LWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xZi84MmM0ZTZjZjA4MzUyZjJmOGQ0NWJkOTY5OWVm
- YjcxMzM1MTE3YlBLAQIUABQAAAAIAN14U1HXWUxXrgIAAKkCAABOAAAAAAAAAAAAAAC2geo9AABu
+ YjcxMzM1MTE3YlBLAQIUABQAAAAIAOCdXVHXWUxXrgIAAKkCAABOAAAAAAAAAAAAAAC2geo9AABu
b2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMjEvMDcxMDc1YzI0NTk5ZWU5ODI1
- NGY3MDJiY2ZjNTA0Y2RjMjc1YTZQSwECFAAUAAAACADdeFNRfCB6aU0AAABIAAAATgAAAAAAAAAA
+ NGY3MDJiY2ZjNTA0Y2RjMjc1YTZQSwECFAAUAAAACADgnV1RfCB6aU0AAABIAAAATgAAAAAAAAAA
AAAAtoEEQQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzIxL2RhYzM1NWJi
- MzdkOGEwYmUyMDQ5ODVmNzE5MmUwZGMyYzMwYTRmUEsBAhQAFAAAAAgA3XhTUZmXzfAfAQAAGgEA
+ MzdkOGEwYmUyMDQ5ODVmNzE5MmUwZGMyYzMwYTRmUEsBAhQAFAAAAAgA4J1dUZmXzfAfAQAAGgEA
AE4AAAAAAAAAAAAAALaBvUEAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8y
- My9iY2M4ZmQ1YTI4YmY2ZDFlNTg3NjNkNTUzZTBjN2I2Y2RlM2EzZFBLAQIUABQAAAAIAN14U1Ff
+ My9iY2M4ZmQ1YTI4YmY2ZDFlNTg3NjNkNTUzZTBjN2I2Y2RlM2EzZFBLAQIUABQAAAAIAOCdXVFf
UDIwOQAAADQAAABOAAAAAAAAAAAAAAC2gUhDAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
L29iamVjdHMvMjgvZTc2ZGIzNTk1NWY0NmUxMjJjNzhjZmJhNzk0OWYxZGNhNzVjMGFQSwECFAAU
- AAAACADdeFNRmwVrkD8BAAA6AQAATgAAAAAAAAAAAAAAtoHtQwAAbm9kZWpzLWRvY3MtaGVsbG8t
+ AAAACADgnV1RmwVrkD8BAAA6AQAATgAAAAAAAAAAAAAAtoHtQwAAbm9kZWpzLWRvY3MtaGVsbG8t
d29ybGQvLmdpdC9vYmplY3RzLzMzLzQ0ZjNlMWFlZDk1MzNmYzA4ODEyOGZkZGM2YzNmZDI3Y2M3
- YjQ0UEsBAhQAFAAAAAgA3XhTUXThnirtAAAA6AAAAE4AAAAAAAAAAAAAALaBmEUAAG5vZGVqcy1k
+ YjQ0UEsBAhQAFAAAAAgA4Z1dUXThnirtAAAA6AAAAE4AAAAAAAAAAAAAALaBmEUAAG5vZGVqcy1k
b2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy80MS85MmEwZWQ3OWU5OTljNGRhMWMxY2JkMzRj
- YzBiZjU3MWI3OWFiNVBLAQIUABQAAAAIAN14U1E4GZfvOAAAADMAAABOAAAAAAAAAAAAAAC2gfFG
+ YzBiZjU3MWI3OWFiNVBLAQIUABQAAAAIAOGdXVE4GZfvOAAAADMAAABOAAAAAAAAAAAAAAC2gfFG
AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNGMvN2RiNTAzMmNmNDVmYmE2
- ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGNQSwECFAAUAAAACADdeFNRXlCB8rUAAACwAAAATgAAAAAA
+ ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGNQSwECFAAUAAAACADhnV1RXlCB8rUAAACwAAAATgAAAAAA
AAAAAAAAtoGVRwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzU4LzNhNzU2
- NTkzYmNlNzZlMjZjNmNjNzQ0YzE5ZGYyOWNhNzYyN2EwUEsBAhQAFAAAAAgA3XhTUV5CN0QgAQAA
+ NTkzYmNlNzZlMjZjNmNjNzQ0YzE5ZGYyOWNhNzYyN2EwUEsBAhQAFAAAAAgA4Z1dUV5CN0QgAQAA
GwEAAE4AAAAAAAAAAAAAALaBtkgAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0
- cy81Zi85ZTI3OWM3NmU2ZjdmNjczMDRiZDdjZTRkNjBjZDA5MTgyMjRmOVBLAQIUABQAAAAIAN14
- U1HVLTEg7gAAAOkAAABOAAAAAAAAAAAAAAC2gUJKAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
+ cy81Zi85ZTI3OWM3NmU2ZjdmNjczMDRiZDdjZTRkNjBjZDA5MTgyMjRmOVBLAQIUABQAAAAIAOGd
+ XVHVLTEg7gAAAOkAAABOAAAAAAAAAAAAAAC2gUJKAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
Z2l0L29iamVjdHMvNjAvZDkxODkwYjA1ZGQ0NzRmYTVmMmNkZGNjYjkwYTIzMjJkMmE0ZTlQSwEC
- FAAUAAAACADdeFNReljpW+4AAADpAAAATgAAAAAAAAAAAAAAtoGcSwAAbm9kZWpzLWRvY3MtaGVs
+ FAAUAAAACADhnV1ReljpW+4AAADpAAAATgAAAAAAAAAAAAAAtoGcSwAAbm9kZWpzLWRvY3MtaGVs
bG8td29ybGQvLmdpdC9vYmplY3RzLzYxLzM1N2NkNDk4ZWJmMWRjMzlmYjU3NWJjOTRkZmZkOTZm
- YjcwZDlkUEsBAhQAFAAAAAgA3XhTUWRK9TS4AAAAswAAAE4AAAAAAAAAAAAAALaB9kwAAG5vZGVq
+ YjcwZDlkUEsBAhQAFAAAAAgA4Z1dUWRK9TS4AAAAswAAAE4AAAAAAAAAAAAAALaB9kwAAG5vZGVq
cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy82ZS9mODM2NTk2NDQyMDRhOTQ3M2FjOTBi
- OWU1YTc5OTY5NDI1ZjY5ZVBLAQIUABQAAAAIAN14U1ECN1ry4AEAANsBAABOAAAAAAAAAAAAAAC2
+ OWU1YTc5OTY5NDI1ZjY5ZVBLAQIUABQAAAAIAOGdXVECN1ry4AEAANsBAABOAAAAAAAAAAAAAAC2
gRpOAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNzMvZTYwNGVmYTU0Y2M2
- OTljNGIzZDIwN2QyZDcxODFjZmNlOWFiM2VQSwECFAAUAAAACADdeFNRofppnt8BAADaAQAATgAA
+ OTljNGIzZDIwN2QyZDcxODFjZmNlOWFiM2VQSwECFAAUAAAACADhnV1Rofppnt8BAADaAQAATgAA
AAAAAAAAAAAAtoFmUAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzc0L2Nl
- YTZkZjJiMzYwZTE3MWViNWRlMGQwZDBiMGUxMWVjZmUzZjVjUEsBAhQAFAAAAAgA3XhTUXRcugk4
+ YTZkZjJiMzYwZTE3MWViNWRlMGQwZDBiMGUxMWVjZmUzZjVjUEsBAhQAFAAAAAgA4Z1dUXRcugk4
AAAAMwAAAE4AAAAAAAAAAAAAALaBsVIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq
ZWN0cy83Zi9lMmEwOWVhNTU4YmQ1NmRiNzhhOTlmZWI0OWEyNThmNTc3OTI3NFBLAQIUABQAAAAI
- AN14U1FxP2WTtQAAALAAAABOAAAAAAAAAAAAAAC2gVVTAABub2RlanMtZG9jcy1oZWxsby13b3Js
+ AOGdXVFxP2WTtQAAALAAAABOAAAAAAAAAAAAAAC2gVVTAABub2RlanMtZG9jcy1oZWxsby13b3Js
ZC8uZ2l0L29iamVjdHMvODAvYjJkMGMyNTYyN2RjNDk5MGVlZDliZGZkMGUwODExOWVkMGUyNWRQ
- SwECFAAUAAAACADdeFNR9/hnJD8BAAA6AQAATgAAAAAAAAAAAAAAtoF2VAAAbm9kZWpzLWRvY3Mt
+ SwECFAAUAAAACADhnV1R9/hnJD8BAAA6AQAATgAAAAAAAAAAAAAAtoF2VAAAbm9kZWpzLWRvY3Mt
aGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzgzLzM0NzM3NTVlOWNkZjAxYmM1ZDAwMzA4OTA2MjFi
- N2JjYWQ5ZGFmUEsBAhQAFAAAAAgA3XhTUdG2vNy2AAAAsQAAAE4AAAAAAAAAAAAAALaBIVYAAG5v
+ N2JjYWQ5ZGFmUEsBAhQAFAAAAAgA4Z1dUdG2vNy2AAAAsQAAAE4AAAAAAAAAAAAAALaBIVYAAG5v
ZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy84Yy9kNDdkZDZmMmRiZWUxOWFmOTVk
- OTcwZGI1MDhiNmE0NWI4ZThlNFBLAQIUABQAAAAIAN14U1ExgJVR3gEAANkBAABOAAAAAAAAAAAA
+ OTcwZGI1MDhiNmE0NWI4ZThlNFBLAQIUABQAAAAIAOGdXVExgJVR3gEAANkBAABOAAAAAAAAAAAA
AAC2gUNXAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvOGUvNzdjM2RmOWRj
- NjgzMjI4OGUzMGIyOWQzZTUwNTUyY2ZlMzcyOThQSwECFAAUAAAACADdeFNRVfMDvB8BAAAaAQAA
+ NjgzMjI4OGUzMGIyOWQzZTUwNTUyY2ZlMzcyOThQSwECFAAUAAAACADhnV1RVfMDvB8BAAAaAQAA
TgAAAAAAAAAAAAAAtoGNWQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzk5
- LzhlOWE3YWNhZGYyMDYyM2U1MDc2ZjI5NDZmNDdhMmU1MDY5YmYyUEsBAhQAFAAAAAgA3XhTUfZn
+ LzhlOWE3YWNhZGYyMDYyM2U1MDc2ZjI5NDZmNDdhMmU1MDY5YmYyUEsBAhQAFAAAAAgA4Z1dUfZn
2USkAAAAnwAAAE4AAAAAAAAAAAAAALaBGFsAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQv
b2JqZWN0cy85Yi9mMjgyODc1MDA5MzkzZjhkMTM0MGM2NWFhYmIxZDc0ZDVmNmYwNVBLAQIUABQA
- AAAIAN14U1E91+AgeAEAAHMBAABOAAAAAAAAAAAAAAC2gShcAABub2RlanMtZG9jcy1oZWxsby13
+ AAAIAOGdXVE91+AgeAEAAHMBAABOAAAAAAAAAAAAAAC2gShcAABub2RlanMtZG9jcy1oZWxsby13
b3JsZC8uZ2l0L29iamVjdHMvOWMvNDQxYTI5NDhlZjg4MWMxYzE4ZWM0ZTg1MzFkZGJlZjk3Yjlh
- ZjZQSwECFAAUAAAACADdeFNRC0v1WTgAAAAzAAAATgAAAAAAAAAAAAAAtoEMXgAAbm9kZWpzLWRv
+ ZjZQSwECFAAUAAAACADhnV1RC0v1WTgAAAAzAAAATgAAAAAAAAAAAAAAtoEMXgAAbm9kZWpzLWRv
Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2EzLzgxMDU0YTFmOTA4MmIwZTgxM2FjNzhkOGI1
- MGRkZDQxZGRlMDhhUEsBAhQAFAAAAAgA3XhTURwoF1e4AAAAswAAAE4AAAAAAAAAAAAAALaBsF4A
+ MGRkZDQxZGRlMDhhUEsBAhQAFAAAAAgA4Z1dURwoF1e4AAAAswAAAE4AAAAAAAAAAAAAALaBsF4A
AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hNC8yYTVjMGNmMDU4Yjg2ZGUy
- ZjQ2OTBjZjE2NWFkYzFkZjFlYzY4ZFBLAQIUABQAAAAIAN14U1FxFsVMTQAAAEgAAABOAAAAAAAA
+ ZjQ2OTBjZjE2NWFkYzFkZjFlYzY4ZFBLAQIUABQAAAAIAOGdXVFxFsVMTQAAAEgAAABOAAAAAAAA
AAAAAAC2gdRfAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYWEvZDI5MmZh
- YTJlNWY3NTRhZmI2Y2JhZjQ1Y2E4MWMwYWE4NTU1ZjJQSwECFAAUAAAACADdeFNR/lEQgVwAAABX
+ YTJlNWY3NTRhZmI2Y2JhZjQ1Y2E4MWMwYWE4NTU1ZjJQSwECFAAUAAAACADhnV1R/lEQgVwAAABX
AAAATgAAAAAAAAAAAAAAtoGNYAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3Rz
- L2FjL2M3ZmEzZmRlY2Q1N2E4YjBhNTQzNmU4YWU5Yzc4MjZhMzY2YzJmUEsBAhQAFAAAAAgA3XhT
+ L2FjL2M3ZmEzZmRlY2Q1N2E4YjBhNTQzNmU4YWU5Yzc4MjZhMzY2YzJmUEsBAhQAFAAAAAgA4Z1d
Ub6QNY8+AQAAOQEAAE4AAAAAAAAAAAAAALaBVWEAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
aXQvb2JqZWN0cy9hZS9iNGQ5MGEzMDEzN2E4Zjk0NDkxOTIzYzg0Yzc4YWQ3OGFjOTJjZVBLAQIU
- ABQAAAAIAN14U1EEyxdB7QAAAOgAAABOAAAAAAAAAAAAAAC2gf9iAABub2RlanMtZG9jcy1oZWxs
+ ABQAAAAIAOGdXVEEyxdB7QAAAOgAAABOAAAAAAAAAAAAAAC2gf9iAABub2RlanMtZG9jcy1oZWxs
by13b3JsZC8uZ2l0L29iamVjdHMvYWYvNWVhNTQ1MGEwZWFmYjE2NmRhMjQ2YTdjYjZhNzZkYWU4
- NjY4MTFQSwECFAAUAAAACADdeFNRq8C8INgAAADTAAAATgAAAAAAAAAAAAAAtoFYZAAAbm9kZWpz
+ NjY4MTFQSwECFAAUAAAACADhnV1Rq8C8INgAAADTAAAATgAAAAAAAAAAAAAAtoFYZAAAbm9kZWpz
LWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2I3L2I3YjZmMzg1NDAyMjlmNzE5YTkzNTc2
- MmIwYjVmOTQ5OGZmZDQ1UEsBAhQAFAAAAAgA3XhTUbX2Ob3WAAAA0QAAAE4AAAAAAAAAAAAAALaB
+ MmIwYjVmOTQ5OGZmZDQ1UEsBAhQAFAAAAAgA4Z1dUbX2Ob3WAAAA0QAAAE4AAAAAAAAAAAAAALaB
nGUAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9iZS83OGUxZmVjYWY4Njc1
- ODI0MzE4ZmFkMDIzMTU4NjNiMGNjYjQ3NFBLAQIUABQAAAAIAN14U1H1PcDi1QAAANAAAABOAAAA
+ ODI0MzE4ZmFkMDIzMTU4NjNiMGNjYjQ3NFBLAQIUABQAAAAIAOGdXVH1PcDi1QAAANAAAABOAAAA
AAAAAAAAAAC2gd5mAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYzgvZDM3
- NGM2ZGYyYzI3OThlMGMyYThjNTljMWQwMmQ5ZDcxODQ5NDhQSwECFAAUAAAACADdeFNRHhokL4IA
+ NGM2ZGYyYzI3OThlMGMyYThjNTljMWQwMmQ5ZDcxODQ5NDhQSwECFAAUAAAACADhnV1RHhokL4IA
AAB9AAAATgAAAAAAAAAAAAAAtoEfaAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmpl
Y3RzL2NiLzYwYTcwNGZlMmU4YzgzYTIyM2I3MjliYjI4YzRlODFkM2I0OThhUEsBAhQAFAAAAAgA
- 3XhTUX986Eg+AQAAOQEAAE4AAAAAAAAAAAAAALaBDWkAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
+ 4Z1dUX986Eg+AQAAOQEAAE4AAAAAAAAAAAAAALaBDWkAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
Ly5naXQvb2JqZWN0cy9jZi9iZTk0MjEzNTA2MTY0OTc0ZWJiNzJkOWZlMWE1YzdmMmUyZWZmMFBL
- AQIUABQAAAAIAN14U1GYZ8JUTQAAAEgAAABOAAAAAAAAAAAAAAC2gbdqAABub2RlanMtZG9jcy1o
+ AQIUABQAAAAIAOGdXVGYZ8JUTQAAAEgAAABOAAAAAAAAAAAAAAC2gbdqAABub2RlanMtZG9jcy1o
ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZDkvMGM2Y2RhMjYyMjQ0ZjU4MjY4ZjIxZjNmOTZlN2Q4
- Nzc5ZDJhNTZQSwECFAAUAAAACADdeFNRKaKThiABAAAbAQAATgAAAAAAAAAAAAAAtoFwawAAbm9k
+ Nzc5ZDJhNTZQSwECFAAUAAAACADhnV1RKaKThiABAAAbAQAATgAAAAAAAAAAAAAAtoFwawAAbm9k
ZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2RkLzc5YzIwOWI2NDdmNDYzYzFjMjVh
- ZDhhZjE5ZWIxN2ZmOTgxYmI3UEsBAhQAFAAAAAgA3XhTUYn+aDpMAAAARwAAAE4AAAAAAAAAAAAA
+ ZDhhZjE5ZWIxN2ZmOTgxYmI3UEsBAhQAFAAAAAgA4Z1dUYn+aDpMAAAARwAAAE4AAAAAAAAAAAAA
ALaB/GwAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9kZS9jYzMxMjhmOGI5
- MGUyMGM4NGNiZjNmOTBjMTZlNzhhYzFjY2MwNlBLAQIUABQAAAAIAN14U1Eew56/IAEAABsBAABO
+ MGUyMGM4NGNiZjNmOTBjMTZlNzhhYzFjY2MwNlBLAQIUABQAAAAIAOGdXVEew56/IAEAABsBAABO
AAAAAAAAAAAAAAC2gbRtAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZGYv
- OWY2NjM3ZTQyZGZlYzNkMmUyMTBiOWExNjY3ZGNkYmU2NzQwMTFQSwECFAAUAAAACADdeFNRVxA9
+ OWY2NjM3ZTQyZGZlYzNkMmUyMTBiOWExNjY3ZGNkYmU2NzQwMTFQSwECFAAUAAAACADhnV1RVxA9
trUAAACwAAAATgAAAAAAAAAAAAAAtoFAbwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9v
YmplY3RzL2UwL2M3MGQ5YmZkZTA5ZTgyZGRlMjIxM2M3MmY1ZDQ0NDM5NzQ2NzRkUEsBAhQAFAAA
- AAgA3XhTUX0KXqI+AQAAOQEAAE4AAAAAAAAAAAAAALaBYXAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
+ AAgA4Z1dUX0KXqI+AQAAOQEAAE4AAAAAAAAAAAAAALaBYXAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
cmxkLy5naXQvb2JqZWN0cy9lNi9kMWEzNTcyMzFkNDI0ZjhmNmQ4N2UwY2E3NDYxMTllYmEzZWNh
- YVBLAQIUABQAAAAIAN14U1FHXY8yuAAAALMAAABOAAAAAAAAAAAAAAC2gQtyAABub2RlanMtZG9j
+ YVBLAQIUABQAAAAIAOGdXVFHXY8yuAAAALMAAABOAAAAAAAAAAAAAAC2gQtyAABub2RlanMtZG9j
cy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZWUvNmU3ZmI5NmJhZDQ0ZjdmYjU5MzQ4OTNkNjE0
- MTFjMmNlMDgyNjRQSwECFAAUAAAACADdeFNRFe9WQO4AAADpAAAATgAAAAAAAAAAAAAAtoEvcwAA
+ MTFjMmNlMDgyNjRQSwECFAAUAAAACADhnV1RFe9WQO4AAADpAAAATgAAAAAAAAAAAAAAtoEvcwAA
bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2VlLzcyYjQzYmY2OGNlYTJmMDYz
- NWNjMDE1ZGRlYzY4MTdlNTVkNzY0UEsBAhQAFAAAAAgA3XhTUbFitb44AAAAMwAAAE4AAAAAAAAA
+ NWNjMDE1ZGRlYzY4MTdlNTVkNzY0UEsBAhQAFAAAAAgA4Z1dUbFitb44AAAAMwAAAE4AAAAAAAAA
AAAAALaBiXQAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mMC9hYWQxMDYw
- ZmZlODNhYjM1YTA5ZWM4ZGQyYmUwZGJkMzk5YjJmY1BLAQIUABQAAAAIAN14U1HztfOWaAAAAGMA
+ ZmZlODNhYjM1YTA5ZWM4ZGQyYmUwZGJkMzk5YjJmY1BLAQIUABQAAAAIAOGdXVHztfOWaAAAAGMA
AABOAAAAAAAAAAAAAAC2gS11AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv
- ZjAvYzhhMzZiNWFkYTUyMzA1MmM3MTgxZjQ4Zjk2MmE4NTllOGIzNzdQSwECFAAUAAAACADdeFNR
+ ZjAvYzhhMzZiNWFkYTUyMzA1MmM3MTgxZjQ4Zjk2MmE4NTllOGIzNzdQSwECFAAUAAAACADhnV1R
ya9lWj4BAAA5AQAATgAAAAAAAAAAAAAAtoEBdgAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
dC9vYmplY3RzL2Y0L2VkNzM5YjlhNzViNWIyMzYzZTMzZDFjM2VmOTdlNTZiNDkzNjdiUEsBAhQA
- FAAAAAgA3XhTUeAtL5k+AQAAOQEAAE4AAAAAAAAAAAAAALaBq3cAAG5vZGVqcy1kb2NzLWhlbGxv
+ FAAAAAgA4Z1dUeAtL5k+AQAAOQEAAE4AAAAAAAAAAAAAALaBq3cAAG5vZGVqcy1kb2NzLWhlbGxv
LXdvcmxkLy5naXQvb2JqZWN0cy9mNy80OTFiODM1MmUwYjNkZmIxZDljYTY4NzQwM2VhYjE4ZTE0
- NWI3N1BLAQIUABQAAAAIAN14U1F4Yy5zowAAAJ4AAABOAAAAAAAAAAAAAAC2gVV5AABub2RlanMt
+ NWI3N1BLAQIUABQAAAAIAOGdXVF4Yy5zowAAAJ4AAABOAAAAAAAAAAAAAAC2gVV5AABub2RlanMt
ZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjcvYjM1ZDVkOGQ5YzgwM2UzZjJlZTUzZTlh
- N2NiYWY0MzQ2MzE5MGFQSwECFAAUAAAACADdeFNRUViJ7+4AAADpAAAATgAAAAAAAAAAAAAAtoFk
+ N2NiYWY0MzQ2MzE5MGFQSwECFAAUAAAACADhnV1RUViJ7+4AAADpAAAATgAAAAAAAAAAAAAAtoFk
egAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2ZhLzFhNzY1ZjJkZjhhNTFl
- YmUxODM1MTkwYjUzMjdlNTQ1NDJkYmMwUEsBAhQAFAAAAAgA3XhTUSoldayrBwAAFAsAAFsAAAAA
+ YmUxODM1MTkwYjUzMjdlNTQ1NDJkYmMwUEsBAhQAFAAAAAgA4Z1dUSoldayrBwAAFAsAAFsAAAAA
AAAAAAAAALaBvnsAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9wYWNrL3Bh
Y2stY2E1ZjIxODkwNTUzOGVkNzNhZTg1ZGNiMzA4ZmY2NTcyNzM2NTJiMy5pZHhQSwECFAAUAAAA
- CADdeFNRWmHjbiU1AADtNgAAXAAAAAAAAAAAAAAAtoHigwAAbm9kZWpzLWRvY3MtaGVsbG8td29y
+ CADhnV1RWmHjbiU1AADtNgAAXAAAAAAAAAAAAAAAtoHigwAAbm9kZWpzLWRvY3MtaGVsbG8td29y
bGQvLmdpdC9vYmplY3RzL3BhY2svcGFjay1jYTVmMjE4OTA1NTM4ZWQ3M2FlODVkY2IzMDhmZjY1
- NzI3MzY1MmIzLnBhY2tQSwECFAAUAAAACADdeFNRs/U4pykAAAApAAAALgAAAAAAAAAAAAAAtoGB
+ NzI3MzY1MmIzLnBhY2tQSwECFAAUAAAACADhnV1Rs/U4pykAAAApAAAALgAAAAAAAAAAAAAAtoGB
uQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9yZWZzL2hlYWRzL21hc3RlclBLAQIUABQA
- AAAIAN14U1Gz9TinKQAAACkAAAA3AAAAAAAAAAAAAAC2gfa5AABub2RlanMtZG9jcy1oZWxsby13
- b3JsZC8uZ2l0L3JlZnMvcmVtb3Rlcy9vcmlnaW4vbWFzdGVyUEsBAhQAFAAAAAgA3XhTUamxxldl
+ AAAIAOGdXVGz9TinKQAAACkAAAA3AAAAAAAAAAAAAAC2gfa5AABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC8uZ2l0L3JlZnMvcmVtb3Rlcy9vcmlnaW4vbWFzdGVyUEsBAhQAFAAAAAgA4Z1dUamxxldl
AQAAZwIAAC8AAAAAAAAAAAAAALaBdLoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVz
- c0FwcC8uZ2l0aWdub3JlUEsBAhQAFAAAAAgA3XhTUbrgEiLdAAAAQQEAAC0AAAAAAAAAAAAAALaB
+ c0FwcC8uZ2l0aWdub3JlUEsBAhQAFAAAAAgA4Z1dUbrgEiLdAAAAQQEAAC0AAAAAAAAAAAAAALaB
JrwAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9pbmRleC5qc1BLAQIUABQA
- AAAIAN14U1FBwXdOjwIAAJ8EAAAsAAAAAAAAAAAAAAC2gU69AABub2RlanMtZG9jcy1oZWxsby13
- b3JsZC9teUV4cHJlc3NBcHAvTElDRU5TRVBLAQIUABQAAAAIAN14U1GqDG7dTAAAAGEAAAA2AAAA
+ AAAIAOGdXVFBwXdOjwIAAJ8EAAAsAAAAAAAAAAAAAAC2gU69AABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC9teUV4cHJlc3NBcHAvTElDRU5TRVBLAQIUABQAAAAIAOGdXVGqDG7dTAAAAGEAAAA2AAAA
AAAAAAAAAAC2gSfAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NBcHAvcGFja2Fn
- ZS1sb2NrLmpzb25QSwECFAAUAAAACADdeFNRsDZHUq8AAAAaAQAAMQAAAAAAAAAAAAAAtoHHwAAA
+ ZS1sb2NrLmpzb25QSwECFAAUAAAACADhnV1RsDZHUq8AAAAaAQAAMQAAAAAAAAAAAAAAtoHHwAAA
bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3BhY2thZ2UuanNvblBLAQIUABQA
- AAAIAN14U1EgEDXUuAAAAFEBAAAxAAAAAAAAAAAAAAC2gcXBAABub2RlanMtZG9jcy1oZWxsby13
- b3JsZC9teUV4cHJlc3NBcHAvcHJvY2Vzcy5qc29uUEsBAhQAFAAAAAgA3XhTUaki5WtgAQAAzQIA
+ AAAIAOGdXVEgEDXUuAAAAFEBAAAxAAAAAAAAAAAAAAC2gcXBAABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC9teUV4cHJlc3NBcHAvcHJvY2Vzcy5qc29uUEsBAhQAFAAAAAgA4Z1dUaki5WtgAQAAzQIA
AC4AAAAAAAAAAAAAALaBzMIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9S
- RUFETUUubWRQSwECFAAUAAAACADdeFNRSegmiIYEAAAGCgAALwAAAAAAAAAAAAAAtoF4xAAAbm9k
+ RUFETUUubWRQSwECFAAUAAAACADhnV1RSegmiIYEAAAGCgAALwAAAAAAAAAAAAAAtoF4xAAAbm9k
ZWpzLWRvY3MtaGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3dlYi5jb25maWdQSwUGAAAAAFkAWQBZ
JwAAS8kAAAAA
headers:
@@ -2291,7 +2595,7 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.0
method: POST
uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
response:
@@ -2303,67 +2607,18 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Oct 2020 22:08:02 GMT
+ - Fri, 30 Oct 2020 02:47:52 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
+ - https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2020-10-30_02-47-52Z
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
+ - ARRAffinity=5d076cd2ec72c5bb64f1c1680cccc41266386e45c939f66f9f5956dd831a9c9e;Path=/;HttpOnly;Secure;Domain=up-nodeappxmosrakxisghlz.scm.azurewebsites.net
+ - ARRAffinitySameSite=5d076cd2ec72c5bb64f1c1680cccc41266386e45c939f66f9f5956dd831a9c9e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappxmosrakxisghlz.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2385,14 +2640,14 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"095c50f4949c4502b292a2b6fc7fa61b","status":1,"status_text":"Building
+ and Deploying ''095c50f4949c4502b292a2b6fc7fa61b''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Generating deployment script.","received_time":"2020-10-30T02:47:53.6296681Z","start_time":"2020-10-30T02:47:53.8328014Z","end_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
@@ -2401,7 +2656,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:08:11 GMT
+ - Fri, 30 Oct 2020 02:47:55 GMT
expires:
- '-1'
location:
@@ -2411,8 +2666,8 @@ interactions:
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
+ - ARRAffinity=5d076cd2ec72c5bb64f1c1680cccc41266386e45c939f66f9f5956dd831a9c9e;Path=/;HttpOnly;Secure;Domain=up-nodeappxmosrakxisghlz.scm.azurewebsites.net
+ - ARRAffinitySameSite=5d076cd2ec72c5bb64f1c1680cccc41266386e45c939f66f9f5956dd831a9c9e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappxmosrakxisghlz.scm.azurewebsites.net
x-aspnet-version:
- 4.0.30319
x-powered-by:
@@ -2434,22 +2689,22 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - AZURECLI/2.13.0
+ - AZURECLI/2.14.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}'
+ string: '{"id":"095c50f4949c4502b292a2b6fc7fa61b","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"","received_time":"2020-10-30T02:47:53.6296681Z","start_time":"2020-10-30T02:47:53.8328014Z","end_time":"2020-10-30T02:47:59.0227414Z","last_success_end_time":"2020-10-30T02:47:59.0227414Z","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","provisioningState":null}'
headers:
cache-control:
- no-cache
content-length:
- - '682'
+ - '681'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:08:17 GMT
+ - Fri, 30 Oct 2020 02:47:59 GMT
expires:
- '-1'
pragma:
@@ -2457,8 +2712,8 @@ interactions:
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
+ - ARRAffinity=5d076cd2ec72c5bb64f1c1680cccc41266386e45c939f66f9f5956dd831a9c9e;Path=/;HttpOnly;Secure;Domain=up-nodeappxmosrakxisghlz.scm.azurewebsites.net
+ - ARRAffinitySameSite=5d076cd2ec72c5bb64f1c1680cccc41266386e45c939f66f9f5956dd831a9c9e;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappxmosrakxisghlz.scm.azurewebsites.net
vary:
- Accept-Encoding
x-aspnet-version:
@@ -2483,7 +2738,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2491,18 +2746,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","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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-057.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-30T02:47:44.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-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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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'
+ - '5385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:08:18 GMT
+ - Fri, 30 Oct 2020 02:47:59 GMT
etag:
- - '"1D6A664476CE16B"'
+ - '"1D6AE670B1D2955"'
expires:
- '-1'
pragma:
@@ -2537,7 +2792,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2545,18 +2800,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","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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-057.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-30T02:47:44.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-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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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'
+ - '5385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:08:18 GMT
+ - Fri, 30 Oct 2020 02:48:00 GMT
etag:
- - '"1D6A664476CE16B"'
+ - '"1D6AE670B1D2955"'
expires:
- '-1'
pragma:
@@ -2591,7 +2846,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2599,18 +2854,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","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}}'
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-057.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-30T02:47:44.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-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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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'
+ - '5385'
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:08:19 GMT
+ - Fri, 30 Oct 2020 02:48:00 GMT
etag:
- - '"1D6A664476CE16B"'
+ - '"1D6AE670B1D2955"'
expires:
- '-1'
pragma:
@@ -2649,7 +2904,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -2658,17 +2913,17 @@ interactions:
body:
string:
@@ -2680,7 +2935,7 @@ interactions:
content-type:
- application/xml
date:
- - Mon, 19 Oct 2020 22:08:19 GMT
+ - Fri, 30 Oct 2020 02:48:00 GMT
expires:
- '-1'
pragma:
@@ -2719,7 +2974,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: POST
@@ -2736,7 +2991,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:08:20 GMT
+ - Fri, 30 Oct 2020 02:48:01 GMT
expires:
- '-1'
pragma:
@@ -2773,7 +3028,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2781,36 +3036,56 @@ interactions:
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":"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,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-23T22:01:58.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/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-20T23:43:01.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":"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/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/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/sites/up-pythonappi6wckwcifbxp","name":"up-pythonappi6wckwcifbxp","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappi6wckwcifbxp","state":"Running","hostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net"],"webSpace":"clitestbhc4dtatbkvnyoal7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestbhc4dtatbkvnyoal7-CentralUSwebspace/sites/up-pythonappi6wckwcifbxp","repositorySiteName":"up-pythonappi6wckwcifbxp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappi6wckwcifbxp.azurewebsites.net","up-pythonappi6wckwcifbxp.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-pythonappi6wckwcifbxp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappi6wckwcifbxp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbhc4dtatbkvnyoal7/providers/Microsoft.Web/serverfarms/up-pythonplanbifwjyzp2az","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:16:53.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":"up-pythonappi6wckwcifbxp","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-pythonappi6wckwcifbxp\\$up-pythonappi6wckwcifbxp","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":"clitestbhc4dtatbkvnyoal7","defaultHostName":"up-pythonappi6wckwcifbxp.azurewebsites.net","slotSwapStatus":null,"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/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/sites/up-nodeappx2fubpnk7nbb5j","name":"up-nodeappx2fubpnk7nbb5j","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappx2fubpnk7nbb5j","state":"Running","hostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net"],"webSpace":"clitest23eaxrvbsj5mxqlhn-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest23eaxrvbsj5mxqlhn-CentralUSwebspace/sites/up-nodeappx2fubpnk7nbb5j","repositorySiteName":"up-nodeappx2fubpnk7nbb5j","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappx2fubpnk7nbb5j.azurewebsites.net","up-nodeappx2fubpnk7nbb5j.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-nodeappx2fubpnk7nbb5j.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappx2fubpnk7nbb5j.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest23eaxrvbsj5mxqlhn/providers/Microsoft.Web/serverfarms/up-nodeplandoef3e26svtye","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:59.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappx2fubpnk7nbb5j","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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-nodeappx2fubpnk7nbb5j\\$up-nodeappx2fubpnk7nbb5j","ftpsHostName":"ftps://waws-prod-dm1-173.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.78.153,40.122.149.171,40.77.111.208,40.77.104.142,40.77.107.181","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":"clitest23eaxrvbsj5mxqlhn","defaultHostName":"up-nodeappx2fubpnk7nbb5j.azurewebsites.net","slotSwapStatus":null,"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/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/sites/up-nodeapprgsl75zevfnhwa","name":"up-nodeapprgsl75zevfnhwa","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapprgsl75zevfnhwa","state":"Running","hostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net"],"webSpace":"clitestej5hmmoi77m5cvgeh-CentralUSwebspace","selfLink":"https://waws-prod-dm1-173.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestej5hmmoi77m5cvgeh-CentralUSwebspace/sites/up-nodeapprgsl75zevfnhwa","repositorySiteName":"up-nodeapprgsl75zevfnhwa","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapprgsl75zevfnhwa.azurewebsites.net","up-nodeapprgsl75zevfnhwa.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":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapprgsl75zevfnhwa.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestej5hmmoi77m5cvgeh/providers/Microsoft.Web/serverfarms/up-nodeplanvihank422zqhw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:54.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapprgsl75zevfnhwa","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-nodeapprgsl75zevfnhwa\\$up-nodeapprgsl75zevfnhwa","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":"clitestej5hmmoi77m5cvgeh","defaultHostName":"up-nodeapprgsl75zevfnhwa.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/sites/up-nodeappbtz2gf7rebejy6","name":"up-nodeappbtz2gf7rebejy6","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappbtz2gf7rebejy6","state":"Running","hostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net"],"webSpace":"clitest5ocgmuvmnewsrjwcm-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest5ocgmuvmnewsrjwcm-CentralUSwebspace/sites/up-nodeappbtz2gf7rebejy6","repositorySiteName":"up-nodeappbtz2gf7rebejy6","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappbtz2gf7rebejy6.azurewebsites.net","up-nodeappbtz2gf7rebejy6.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-nodeappbtz2gf7rebejy6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappbtz2gf7rebejy6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5ocgmuvmnewsrjwcm/providers/Microsoft.Web/serverfarms/up-nodeplan73vcpcjhn3est","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:10:53.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":"up-nodeappbtz2gf7rebejy6","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappbtz2gf7rebejy6\\$up-nodeappbtz2gf7rebejy6","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest5ocgmuvmnewsrjwcm","defaultHostName":"up-nodeappbtz2gf7rebejy6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/sites/up-nodeappxva7xh4wkm2tvn","name":"up-nodeappxva7xh4wkm2tvn","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappxva7xh4wkm2tvn","state":"Running","hostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net"],"webSpace":"clitestrnog4q3oodaausvrc-CentralUSwebspace","selfLink":"https://waws-prod-dm1-181.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestrnog4q3oodaausvrc-CentralUSwebspace/sites/up-nodeappxva7xh4wkm2tvn","repositorySiteName":"up-nodeappxva7xh4wkm2tvn","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappxva7xh4wkm2tvn.azurewebsites.net","up-nodeappxva7xh4wkm2tvn.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":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappxva7xh4wkm2tvn.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrnog4q3oodaausvrc/providers/Microsoft.Web/serverfarms/up-nodeplant4gfslnhl4g4v","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:56:32.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeappxva7xh4wkm2tvn","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.3","possibleInboundIpAddresses":"20.40.202.3","ftpUsername":"up-nodeappxva7xh4wkm2tvn\\$up-nodeappxva7xh4wkm2tvn","ftpsHostName":"ftps://waws-prod-dm1-181.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169","possibleOutboundIpAddresses":"52.154.243.144,52.154.243.170,52.154.243.184,52.154.243.213,52.154.244.23,52.154.244.169,52.154.244.221,52.154.244.240,52.154.245.2,52.154.245.48,52.154.245.103,52.154.245.121,13.89.118.252,52.154.158.226,52.154.159.109,52.154.159.179,52.154.159.187,52.154.159.238","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-181","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestrnog4q3oodaausvrc","defaultHostName":"up-nodeappxva7xh4wkm2tvn.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":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":"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-rg/providers/Microsoft.Web/sites/asdfsdf230","name":"asdfsdf230","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf230","state":"Running","hostNames":["asdfsdf230.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/asdfsdf230","repositorySiteName":"asdfsdf230","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf230.azurewebsites.net","asdfsdf230.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":"asdfsdf230.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf230.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:53:43.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf230","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":"asdfsdf230\\$asdfsdf230","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":"asdfsdf230.azurewebsites.net","slotSwapStatus":null,"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-gh-action/providers/Microsoft.Web/sites/node-windows-gha-2","name":"node-windows-gha-2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"node-windows-gha-2","state":"Running","hostNames":["node-windows-gha-2.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/node-windows-gha-2","repositorySiteName":"node-windows-gha-2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["node-windows-gha-2.azurewebsites.net","node-windows-gha-2.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":"node-windows-gha-2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"node-windows-gha-2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-25T21:55:46.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-2","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":"node-windows-gha-2\\$node-windows-gha-2","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-gh-action","defaultHostName":"node-windows-gha-2.azurewebsites.net","slotSwapStatus":null,"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/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/asdfsdf300","name":"asdfsdf300","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf300","state":"Running","hostNames":["asdfsdf300.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/asdfsdf300","repositorySiteName":"asdfsdf300","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf300.azurewebsites.net","asdfsdf300.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":"asdfsdf300.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf300.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-28T08:28:28.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf300","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":"asdfsdf300\\$asdfsdf300","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":"asdfsdf300.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf223","name":"asdfsdf223","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf223","state":"Running","hostNames":["asdfsdf223.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/asdfsdf223","repositorySiteName":"asdfsdf223","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf223.azurewebsites.net","asdfsdf223.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"RUBY|2.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf223.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf223.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-20T23:49:13.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":"asdfsdf223","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":"asdfsdf223\\$asdfsdf223","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":"asdfsdf223.azurewebsites.net","slotSwapStatus":null,"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/asdfsdf231","name":"asdfsdf231","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Central
+ US","properties":{"name":"asdfsdf231","state":"Running","hostNames":["asdfsdf231.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/asdfsdf231","repositorySiteName":"asdfsdf231","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf231.azurewebsites.net","asdfsdf231.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|nginx"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf231.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf231.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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-22T16:59:03.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":"asdfsdf231","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,container","inboundIpAddress":"13.89.172.8","possibleInboundIpAddresses":"13.89.172.8","ftpUsername":"asdfsdf231\\$asdfsdf231","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":"asdfsdf231.azurewebsites.net","slotSwapStatus":null,"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":"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/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-057.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-30T02:47:44.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-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":"52.165.155.237","possibleInboundIpAddresses":"52.165.155.237","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","possibleOutboundIpAddresses":"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-057","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/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/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/sites/up-pythonappz7dq74fhwhci","name":"up-pythonappz7dq74fhwhci","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappz7dq74fhwhci","state":"Running","hostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net"],"webSpace":"clitest4vqgoco7zfwxvqegx-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest4vqgoco7zfwxvqegx-CentralUSwebspace/sites/up-pythonappz7dq74fhwhci","repositorySiteName":"up-pythonappz7dq74fhwhci","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappz7dq74fhwhci.azurewebsites.net","up-pythonappz7dq74fhwhci.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-pythonappz7dq74fhwhci.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappz7dq74fhwhci.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4vqgoco7zfwxvqegx/providers/Microsoft.Web/serverfarms/up-pythonplan6govarsw4fy","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:52:17.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappz7dq74fhwhci","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappz7dq74fhwhci\\$up-pythonappz7dq74fhwhci","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitest4vqgoco7zfwxvqegx","defaultHostName":"up-pythonappz7dq74fhwhci.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/sites/up-pythonappay4gmdlvggzv","name":"up-pythonappay4gmdlvggzv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappay4gmdlvggzv","state":"Running","hostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net"],"webSpace":"clitestoy5ox64xesfsk6oly-CentralUSwebspace","selfLink":"https://waws-prod-dm1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestoy5ox64xesfsk6oly-CentralUSwebspace/sites/up-pythonappay4gmdlvggzv","repositorySiteName":"up-pythonappay4gmdlvggzv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappay4gmdlvggzv.azurewebsites.net","up-pythonappay4gmdlvggzv.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-pythonappay4gmdlvggzv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappay4gmdlvggzv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestoy5ox64xesfsk6oly/providers/Microsoft.Web/serverfarms/up-pythonplanfqh35ryzgx2","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:21:47.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappay4gmdlvggzv","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.114.229","possibleInboundIpAddresses":"40.122.114.229","ftpUsername":"up-pythonappay4gmdlvggzv\\$up-pythonappay4gmdlvggzv","ftpsHostName":"ftps://waws-prod-dm1-129.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.122.114.229,40.113.234.66,23.99.222.236,23.99.210.196,40.113.247.163","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":"clitestoy5ox64xesfsk6oly","defaultHostName":"up-pythonappay4gmdlvggzv.azurewebsites.net","slotSwapStatus":null,"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-20T06:21:11.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/sites/up-nodeapp6sbx7lpbm6hayh","name":"up-nodeapp6sbx7lpbm6hayh","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp6sbx7lpbm6hayh","state":"Running","hostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net"],"webSpace":"clitestvuue7f2r62jchrcre-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestvuue7f2r62jchrcre-CentralUSwebspace/sites/up-nodeapp6sbx7lpbm6hayh","repositorySiteName":"up-nodeapp6sbx7lpbm6hayh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.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-nodeapp6sbx7lpbm6hayh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp6sbx7lpbm6hayh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvuue7f2r62jchrcre/providers/Microsoft.Web/serverfarms/up-nodeplanlsrdu3wuaiw4o","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:07.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp6sbx7lpbm6hayh","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":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","ftpUsername":"up-nodeapp6sbx7lpbm6hayh\\$up-nodeapp6sbx7lpbm6hayh","ftpsHostName":"ftps://waws-prod-dm1-043.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestvuue7f2r62jchrcre","defaultHostName":"up-nodeapp6sbx7lpbm6hayh.azurewebsites.net","slotSwapStatus":null,"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/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/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/sites/up-pythonappj2tyrqxta4y2","name":"up-pythonappj2tyrqxta4y2","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonappj2tyrqxta4y2","state":"Running","hostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net"],"webSpace":"clitestcmk6aee3c3f72xzxv-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcmk6aee3c3f72xzxv-CentralUSwebspace/sites/up-pythonappj2tyrqxta4y2","repositorySiteName":"up-pythonappj2tyrqxta4y2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonappj2tyrqxta4y2.azurewebsites.net","up-pythonappj2tyrqxta4y2.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-pythonappj2tyrqxta4y2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonappj2tyrqxta4y2.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcmk6aee3c3f72xzxv/providers/Microsoft.Web/serverfarms/up-pythonplankyrsgapi22r","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:59:29.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonappj2tyrqxta4y2","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-pythonappj2tyrqxta4y2\\$up-pythonappj2tyrqxta4y2","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":"clitestcmk6aee3c3f72xzxv","defaultHostName":"up-pythonappj2tyrqxta4y2.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/sites/up-nodeapp5znkpl4ecou7bu","name":"up-nodeapp5znkpl4ecou7bu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapp5znkpl4ecou7bu","state":"Running","hostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net"],"webSpace":"clitestdgtttwuut6cwc7ol7-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestdgtttwuut6cwc7ol7-CentralUSwebspace/sites/up-nodeapp5znkpl4ecou7bu","repositorySiteName":"up-nodeapp5znkpl4ecou7bu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp5znkpl4ecou7bu.azurewebsites.net","up-nodeapp5znkpl4ecou7bu.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-nodeapp5znkpl4ecou7bu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp5znkpl4ecou7bu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdgtttwuut6cwc7ol7/providers/Microsoft.Web/serverfarms/up-nodeplanmrurdeqypkmnr","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:11:06.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapp5znkpl4ecou7bu","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-nodeapp5znkpl4ecou7bu\\$up-nodeapp5znkpl4ecou7bu","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":"clitestdgtttwuut6cwc7ol7","defaultHostName":"up-nodeapp5znkpl4ecou7bu.azurewebsites.net","slotSwapStatus":null,"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-27T00:01:03.6733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-27T00:01:03.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/sites/up-nodeapppq4v6jgaoczkdv","name":"up-nodeapppq4v6jgaoczkdv","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeapppq4v6jgaoczkdv","state":"Running","hostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net"],"webSpace":"clitestr6l7zt757x3gciqlz-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestr6l7zt757x3gciqlz-CentralUSwebspace/sites/up-nodeapppq4v6jgaoczkdv","repositorySiteName":"up-nodeapppq4v6jgaoczkdv","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapppq4v6jgaoczkdv.azurewebsites.net","up-nodeapppq4v6jgaoczkdv.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-nodeapppq4v6jgaoczkdv.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapppq4v6jgaoczkdv.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestr6l7zt757x3gciqlz/providers/Microsoft.Web/serverfarms/up-nodeplaniozvhw7l6igm3","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:19.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-nodeapppq4v6jgaoczkdv","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-nodeapppq4v6jgaoczkdv\\$up-nodeapppq4v6jgaoczkdv","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":"clitestr6l7zt757x3gciqlz","defaultHostName":"up-nodeapppq4v6jgaoczkdv.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/sites/up-pythonapp2vbw4kdxlubh","name":"up-pythonapp2vbw4kdxlubh","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp2vbw4kdxlubh","state":"Running","hostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net"],"webSpace":"clitesttnu7nbokwwy53pf7q-CentralUSwebspace","selfLink":"https://waws-prod-dm1-179.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitesttnu7nbokwwy53pf7q-CentralUSwebspace/sites/up-pythonapp2vbw4kdxlubh","repositorySiteName":"up-pythonapp2vbw4kdxlubh","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp2vbw4kdxlubh.azurewebsites.net","up-pythonapp2vbw4kdxlubh.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-pythonapp2vbw4kdxlubh.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp2vbw4kdxlubh.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnu7nbokwwy53pf7q/providers/Microsoft.Web/serverfarms/up-pythonplanu4mujkl33qj","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:06.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":"up-pythonapp2vbw4kdxlubh","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-pythonapp2vbw4kdxlubh\\$up-pythonapp2vbw4kdxlubh","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":"clitesttnu7nbokwwy53pf7q","defaultHostName":"up-pythonapp2vbw4kdxlubh.azurewebsites.net","slotSwapStatus":null,"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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/sites/up-dotnetcoreapp5ic5tfgg","name":"up-dotnetcoreapp5ic5tfgg","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreapp5ic5tfgg","state":"Running","hostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net"],"webSpace":"clitestwhptnsbxrkhtrb75s-CentralUSwebspace","selfLink":"https://waws-prod-dm1-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestwhptnsbxrkhtrb75s-CentralUSwebspace/sites/up-dotnetcoreapp5ic5tfgg","repositorySiteName":"up-dotnetcoreapp5ic5tfgg","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreapp5ic5tfgg.azurewebsites.net","up-dotnetcoreapp5ic5tfgg.scm.azurewebsites.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-dotnetcoreapp5ic5tfgg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreapp5ic5tfgg.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/clitestwhptnsbxrkhtrb75s/providers/Microsoft.Web/serverfarms/up-dotnetcoreplanp65qrir","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:04:58.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":"up-dotnetcoreapp5ic5tfgg","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":"13.67.141.98","possibleInboundIpAddresses":"13.67.141.98","ftpUsername":"up-dotnetcoreapp5ic5tfgg\\$up-dotnetcoreapp5ic5tfgg","ftpsHostName":"ftps://waws-prod-dm1-049.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","possibleOutboundIpAddresses":"13.67.141.98,13.67.139.132,13.67.139.50,13.67.140.36,13.67.140.7","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestwhptnsbxrkhtrb75s","defaultHostName":"up-dotnetcoreapp5ic5tfgg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxdtkscvdgxedasgfg/providers/Microsoft.Web/sites/up-dotnetcoreappdgi4io2e","name":"up-dotnetcoreappdgi4io2e","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-dotnetcoreappdgi4io2e","state":"Running","hostNames":["up-dotnetcoreappdgi4io2e.azurewebsites.net"],"webSpace":"clitestxdtkscvdgxedasgfg-CentralUSwebspace","selfLink":"https://waws-prod-dm1-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestxdtkscvdgxedasgfg-CentralUSwebspace/sites/up-dotnetcoreappdgi4io2e","repositorySiteName":"up-dotnetcoreappdgi4io2e","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-dotnetcoreappdgi4io2e.azurewebsites.net","up-dotnetcoreappdgi4io2e.scm.azurewebsites.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-dotnetcoreappdgi4io2e.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-dotnetcoreappdgi4io2e.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/clitestxdtkscvdgxedasgfg/providers/Microsoft.Web/serverfarms/up-dotnetcoreplan447a3tj","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-30T02:47:44.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":"up-dotnetcoreappdgi4io2e","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.165.129.203","possibleInboundIpAddresses":"52.165.129.203","ftpUsername":"up-dotnetcoreappdgi4io2e\\$up-dotnetcoreappdgi4io2e","ftpsHostName":"ftps://waws-prod-dm1-059.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","possibleOutboundIpAddresses":"52.165.129.203,52.165.150.117,52.165.148.51,52.173.241.248,52.165.166.139","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestxdtkscvdgxedasgfg","defaultHostName":"up-dotnetcoreappdgi4io2e.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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":"node|10.14"}],"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-21T04:09:18.7966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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/asdfsdf301","name":"asdfsdf301","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf301","state":"Running","hostNames":["asdfsdf301.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/asdfsdf301","repositorySiteName":"asdfsdf301","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf301.azurewebsites.net","asdfsdf301.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":"asdfsdf301.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf301.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:21:09.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf301","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf301\\$asdfsdf301","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":"asdfsdf301.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/asdfsdf222","name":"asdfsdf222","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf222","state":"Running","hostNames":["asdfsdf222.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/asdfsdf222","repositorySiteName":"asdfsdf222","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf222.azurewebsites.net","asdfsdf222.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf222.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf222.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:46:17.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf222","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":"asdfsdf222\\$asdfsdf222","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":"asdfsdf222.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf221","name":"asdfsdf221","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf221","state":"Running","hostNames":["asdfsdf221.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/asdfsdf221","repositorySiteName":"asdfsdf221","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf221.azurewebsites.net","asdfsdf221.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":"asdfsdf221.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf221.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:19:33.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":"asdfsdf221","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf221\\$asdfsdf221","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":"asdfsdf221.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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
@@ -2823,27 +3098,36 @@ interactions:
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":"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/asdfsdf303","name":"asdfsdf303","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf303","state":"Running","hostNames":["asdfsdf303.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/asdfsdf303","repositorySiteName":"asdfsdf303","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf303.azurewebsites.net","asdfsdf303.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":"asdfsdf303.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf303.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:35:11.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf303","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":"asdfsdf303\\$asdfsdf303","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":"asdfsdf303.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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":"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/calvin-test-rg/providers/Microsoft.Web/sites/asdfsdf220","name":"asdfsdf220","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf220","state":"Running","hostNames":["asdfsdf220.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/asdfsdf220","repositorySiteName":"asdfsdf220","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf220.azurewebsites.net","asdfsdf220.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"asdfsdf220.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf220.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-20T23:39:40.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"asdfsdf220","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":"asdfsdf220\\$asdfsdf220","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":"asdfsdf220.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"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/asdfsdf302","name":"asdfsdf302","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"asdfsdf302","state":"Running","hostNames":["asdfsdf302.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/asdfsdf302","repositorySiteName":"asdfsdf302","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["asdfsdf302.azurewebsites.net","asdfsdf302.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":"asdfsdf302.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"asdfsdf302.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"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-28T09:23: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":"asdfsdf302","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"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":"asdfsdf302\\$asdfsdf302","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":"asdfsdf302.azurewebsites.net","slotSwapStatus":null,"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
+ 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/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/sites/up-pythonapptvmzeywq73aj","name":"up-pythonapptvmzeywq73aj","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapptvmzeywq73aj","state":"Running","hostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net"],"webSpace":"clitestq7a26p7cokvvaa5sw-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestq7a26p7cokvvaa5sw-CentralUSwebspace/sites/up-pythonapptvmzeywq73aj","repositorySiteName":"up-pythonapptvmzeywq73aj","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapptvmzeywq73aj.azurewebsites.net","up-pythonapptvmzeywq73aj.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-pythonapptvmzeywq73aj.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapptvmzeywq73aj.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestq7a26p7cokvvaa5sw/providers/Microsoft.Web/serverfarms/up-pythonplans4axor5v556","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:00:35.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":"up-pythonapptvmzeywq73aj","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-pythonapptvmzeywq73aj\\$up-pythonapptvmzeywq73aj","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":"clitestq7a26p7cokvvaa5sw","defaultHostName":"up-pythonapptvmzeywq73aj.azurewebsites.net","slotSwapStatus":null,"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/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/sites/up-pythonapp67cw6dxptqzy","name":"up-pythonapp67cw6dxptqzy","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-pythonapp67cw6dxptqzy","state":"Running","hostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net"],"webSpace":"clitestv6oim3l24cm6rlemb-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestv6oim3l24cm6rlemb-CentralUSwebspace/sites/up-pythonapp67cw6dxptqzy","repositorySiteName":"up-pythonapp67cw6dxptqzy","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-pythonapp67cw6dxptqzy.azurewebsites.net","up-pythonapp67cw6dxptqzy.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-pythonapp67cw6dxptqzy.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-pythonapp67cw6dxptqzy.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestv6oim3l24cm6rlemb/providers/Microsoft.Web/serverfarms/up-pythonplancigdg4kqq4h","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:33:21.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-pythonapp67cw6dxptqzy","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-pythonapp67cw6dxptqzy\\$up-pythonapp67cw6dxptqzy","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":"clitestv6oim3l24cm6rlemb","defaultHostName":"up-pythonapp67cw6dxptqzy.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/sites/up-nodeappmiscgdytghlftu","name":"up-nodeappmiscgdytghlftu","type":"Microsoft.Web/sites","kind":"app,linux","location":"Central
+ US","properties":{"name":"up-nodeappmiscgdytghlftu","state":"Running","hostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net"],"webSpace":"clitestx7jpicgnrhgnlnto5-CentralUSwebspace","selfLink":"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestx7jpicgnrhgnlnto5-CentralUSwebspace/sites/up-nodeappmiscgdytghlftu","repositorySiteName":"up-nodeappmiscgdytghlftu","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeappmiscgdytghlftu.azurewebsites.net","up-nodeappmiscgdytghlftu.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":"up-nodeappmiscgdytghlftu.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeappmiscgdytghlftu.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestx7jpicgnrhgnlnto5/providers/Microsoft.Web/serverfarms/up-nodeplanetb2zqqb5gy4x","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T09:46:02.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":"up-nodeappmiscgdytghlftu","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-nodeappmiscgdytghlftu\\$up-nodeappmiscgdytghlftu","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":"clitestx7jpicgnrhgnlnto5","defaultHostName":"up-nodeappmiscgdytghlftu.azurewebsites.net","slotSwapStatus":null,"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
+ 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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji","state":"Running","hostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net"],"webSpace":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf-FranceCentralwebspace/sites/functionappkeys4ll5aqfbajqxtqf657hl77rji","repositorySiteName":"functionappkeys4ll5aqfbajqxtqf657hl77rji","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeys4ll5aqfbajqxtqf657hl77rji.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"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.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf/providers/Microsoft.Web/serverfarms/functionappkeysplanbojkdjo5p55fjpa2r2v7u","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T18:08:47.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeys4ll5aqfbajqxtqf657hl77rji","trafficManagerHostNames":null,"sku":"Standard","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.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappkeys4ll5aqfbajqxtqf657hl77rji\\$functionappkeys4ll5aqfbajqxtqf657hl77rji","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg4kbtgpsieoqmg36jq7rhpjgybbrmshevwnkqataah25m6kymg5nac7xsp44gdczbf","defaultHostName":"functionappkeys4ll5aqfbajqxtqf657hl77rji.azurewebsites.net","slotSwapStatus":null,"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}}]}'
+ 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/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","state":"Running","hostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net"],"webSpace":"clitestcruf4qgwhzx4nged4-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestcruf4qgwhzx4nged4-EastUS2webspace/sites/up-name-exists-appwioj27zexfsqwr2r5mxsqo","repositorySiteName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","up-name-exists-appwioj27zexfsqwr2r5mxsqo.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-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcruf4qgwhzx4nged4/providers/Microsoft.Web/serverfarms/up-name-exists-plan24ze4vqsl75ncp7u3shlb","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T10:44:53.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":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":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-appwioj27zexfsqwr2r5mxsqo","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-appwioj27zexfsqwr2r5mxsqo\\$up-name-exists-appwioj27zexfsqwr2r5mxsqo","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestcruf4qgwhzx4nged4","defaultHostName":"up-name-exists-appwioj27zexfsqwr2r5mxsqo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7","state":"Running","hostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net"],"webSpace":"clitestze65rbeatzl46ebps-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitestze65rbeatzl46ebps-EastUS2webspace/sites/up-name-exists-approqxcmi2t45ilatt5rk4x7","repositorySiteName":"up-name-exists-approqxcmi2t45ilatt5rk4x7","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-name-exists-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","up-name-exists-approqxcmi2t45ilatt5rk4x7.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-approqxcmi2t45ilatt5rk4x7.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-name-exists-approqxcmi2t45ilatt5rk4x7.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestze65rbeatzl46ebps/providers/Microsoft.Web/serverfarms/up-name-exists-plan2aa7ok6tbyx7dz3ottdwe","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-10-28T08:08:16.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":"up-name-exists-approqxcmi2t45ilatt5rk4x7","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.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"up-name-exists-approqxcmi2t45ilatt5rk4x7\\$up-name-exists-approqxcmi2t45ilatt5rk4x7","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitestze65rbeatzl46ebps","defaultHostName":"up-name-exists-approqxcmi2t45ilatt5rk4x7.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'
+ - '450286'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 19 Oct 2020 22:08:21 GMT
+ - Fri, 30 Oct 2020 02:48:03 GMT
expires:
- '-1'
pragma:
@@ -2855,12 +3139,12 @@ interactions:
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
+ - 13a89680-57af-49c8-9539-3765cfb92829
+ - 0e8d4f08-6973-44cd-88c3-e8712fb88647
+ - 9d760b33-807f-4109-9b52-a943d4502f21
+ - 757e904e-90d2-4e1c-ab25-a22cca893d6a
+ - d4f1e81d-2727-47d2-8a97-168c70adb9fe
+ - 31c3a173-7394-4b4d-a6a4-2185ad25e6d6
status:
code: 200
message: OK
@@ -2879,7 +3163,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.48.0 Azure-SDK-For-Python AZURECLI/2.13.0
+ azure-mgmt-web/0.48.0 Azure-SDK-For-Python AZURECLI/2.14.0
accept-language:
- en-US
method: GET
@@ -2887,8 +3171,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":"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}}'
+ US","properties":{"serverFarmId":53664,"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-057_53664","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
@@ -2897,7 +3181,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 19 Oct 2020 22:08:22 GMT
+ - Fri, 30 Oct 2020 02:48:04 GMT
expires:
- '-1'
pragma:
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 85230b5c81a..b4c1a3dbc76 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
@@ -63,7 +63,7 @@ def test_webapp_up_node_e2e(self, resource_group):
])
self.cmd('webapp config show', checks=[
- JMESPathCheck('linuxFxVersion', result['runtime_version']),
+ JMESPathCheck('linuxFxVersion', 'NODE|10.14'),
JMESPathCheck('tags.cli', 'None'),
])
@@ -130,7 +130,7 @@ def test_webapp_up_python_e2e(self, resource_group):
])
self.cmd('webapp config show', checks=[
- JMESPathCheck('linuxFxVersion', result['runtime_version']),
+ JMESPathCheck('linuxFxVersion', 'PYTHON|3.7'),
JMESPathCheck('tags.cli', 'None'),
])
@@ -518,7 +518,7 @@ def test_webapp_up_choose_runtime(self, resource_group):
])
self.cmd('webapp config show', checks=[
- JMESPathCheck('linuxFxVersion', result['runtime_version']),
+ JMESPathCheck('linuxFxVersion', 'PYTHON|3.6'),
JMESPathCheck('tags.cli', 'None')
])
@@ -815,7 +815,7 @@ def test_webapp_up_change_runtime_version(self, resource_group):
# verify newer version
self.cmd('webapp config show', checks=[
- JMESPathCheck('linuxFxVersion', "node|12-lts"),
+ JMESPathCheck('linuxFxVersion', "NODE|12-lts"),
JMESPathCheck('tags.cli', 'None')
])
@@ -826,7 +826,7 @@ def test_webapp_up_change_runtime_version(self, resource_group):
# verify older version
self.cmd('webapp config show', checks=[
- JMESPathCheck('linuxFxVersion', "node|10.14"),
+ JMESPathCheck('linuxFxVersion', "NODE|10.14"),
JMESPathCheck('tags.cli', 'None')
])