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 75cf721d711..7e0704f1259 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/_constants.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/_constants.py
@@ -14,7 +14,7 @@
PYTHON_RUNTIME_NAME = "python"
OS_DEFAULT = "Windows"
STATIC_RUNTIME_NAME = "static" # not an official supported runtime but used for CLI logic
-NODE_VERSIONS = ['10.1', '10.10', '10.12', '10.14', '10.16']
+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']
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 f5918764425..5a5d4a4dbd0 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
@@ -21,15 +21,15 @@
"configs": {}
},
{
- "displayName": "node|10.0",
+ "displayName": "node|10.6",
"configs": {
- "WEBSITE_NODE_DEFAULT_VERSION": "10.0"
+ "WEBSITE_NODE_DEFAULT_VERSION": "10.6"
}
},
{
- "displayName": "node|10.6",
+ "displayName": "node|10.10",
"configs": {
- "WEBSITE_NODE_DEFAULT_VERSION": "10.6"
+ "WEBSITE_NODE_DEFAULT_VERSION": "10.10"
}
},
{
@@ -39,9 +39,9 @@
}
},
{
- "displayName": "node|10.15",
+ "displayName": "node|12-lts",
"configs": {
- "WEBSITE_NODE_DEFAULT_VERSION": "10.15"
+ "WEBSITE_NODE_DEFAULT_VERSION": "12.9"
}
},
{
@@ -56,74 +56,12 @@
"php_version": "7.3"
}
},
- {
- "displayName": "php|7.4",
- "configs": {
- "php_version": "7.4"
- }
- },
{
"displayName": "python|3.6",
"configs": {
"python_version": "3.4.0"
}
},
- {
- "displayName": "java|1.7|Tomcat|7.0",
- "configs": {
- "java_version": "1.7",
- "java_container": "tomcat",
- "java_container_version": "7.0"
- }
- },
- {
- "displayName": "java|1.7|Tomcat|8.0",
- "configs": {
- "java_version": "1.7",
- "java_container": "tomcat",
- "java_container_version": "8.0"
- }
- },
- {
- "displayName": "java|1.7|Tomcat|8.5",
- "configs": {
- "java_version": "1.7",
- "java_container": "tomcat",
- "java_container_version": "8.5"
- }
- },
- {
- "displayName": "java|1.7|Tomcat|9.0",
- "configs": {
- "java_version": "1.7",
- "java_container": "tomcat",
- "java_container_version": "9.0"
- }
- },
- {
- "displayName": "java|1.7|Jetty|9.1",
- "configs": {
- "java_version": "1.7",
- "java_container": "jetty",
- "java_container_version": "9.1"
- }
- },
- {
- "displayName": "java|1.7|Jetty|9.3",
- "configs": {
- "java_version": "1.7",
- "java_container": "jetty",
- "java_container_version": "9.3"
- }
- },
- {
- "displayName": "java|1.7|Java SE|8",
- "configs": {
- "java_version": "1.7",
- "java_container": "java",
- "java_container_version": "8"
- }
- },
{
"displayName": "java|1.8|Tomcat|7.0",
"configs": {
@@ -156,22 +94,6 @@
"java_container_version": "9.0"
}
},
- {
- "displayName": "java|1.8|Jetty|9.1",
- "configs": {
- "java_version": "1.8",
- "java_container": "jetty",
- "java_container_version": "9.1"
- }
- },
- {
- "displayName": "java|1.8|Jetty|9.3",
- "configs": {
- "java_version": "1.8",
- "java_container": "jetty",
- "java_container_version": "9.3"
- }
- },
{
"displayName": "java|1.8|Java SE|8",
"configs": {
@@ -212,22 +134,6 @@
"java_container_version": "9.0"
}
},
- {
- "displayName": "java|11|Jetty|9.1",
- "configs": {
- "java_version": "11",
- "java_container": "jetty",
- "java_container_version": "9.1"
- }
- },
- {
- "displayName": "java|11|Jetty|9.3",
- "configs": {
- "java_version": "11",
- "java_container": "jetty",
- "java_container_version": "9.3"
- }
- },
{
"displayName": "java|11|Java SE|8",
"configs": {
@@ -243,17 +149,15 @@
{"displayName": "NODE|12-lts"},
{"displayName": "NODE|10-lts"},
{"displayName": "NODE|10.1"},
- {"displayName": "NODE|10.10"},
- {"displayName": "NODE|10.12"},
+ {"displayName": "NODE|10.6"},
{"displayName": "NODE|10.14"},
- {"displayName": "NODE|10.16"},
- {"displayName": "NODE|12.9"},
{"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": "PYTHON|3.8"},
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml
index 2ee59d309dc..adc7bfd7933 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- --admin-enabled -g -n --sku
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:15:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:48:20Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:02 GMT
+ - Wed, 30 Sep 2020 00:48:19 GMT
expires:
- '-1'
pragma:
@@ -63,24 +63,24 @@ interactions:
ParameterSetName:
- --admin-enabled -g -n --sku
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-12-01-preview
response:
body:
- string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2020-07-19T21:15:06.1020107Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-07-19T21:15:07.666051+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}'
+ string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"calcha@microsoft.com","createdByType":"User","createdAt":"2020-09-30T00:48:23.3736406+00:00","lastModifiedBy":"calcha@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-30T00:48:23.3736406+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2020-09-30T00:48:23.3736406Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-09-30T00:48:25.1967493+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}'
headers:
cache-control:
- no-cache
content-length:
- - '907'
+ - '1150'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:08 GMT
+ - Wed, 30 Sep 2020 00:48:25 GMT
expires:
- '-1'
pragma:
@@ -96,7 +96,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 200
message: OK
@@ -114,15 +114,15 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:15:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:48:20Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -131,7 +131,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:09 GMT
+ - Wed, 30 Sep 2020 00:48:25 GMT
expires:
- '-1'
pragma:
@@ -165,8 +165,8 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -182,7 +182,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:09 GMT
+ - Wed, 30 Sep 2020 00:48:26 GMT
expires:
- '-1'
pragma:
@@ -220,15 +220,15 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:15:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:48:20Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -237,7 +237,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:09 GMT
+ - Wed, 30 Sep 2020 00:48:27 GMT
expires:
- '-1'
pragma:
@@ -271,8 +271,8 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -280,8 +280,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":8101,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_8101","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":9053,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9053","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -290,7 +290,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:22 GMT
+ - Wed, 30 Sep 2020 00:48:40 GMT
expires:
- '-1'
pragma:
@@ -308,7 +308,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -328,8 +328,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -337,8 +337,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":8101,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_8101","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":9053,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9053","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -347,7 +347,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:23 GMT
+ - Wed, 30 Sep 2020 00:48:41 GMT
expires:
- '-1'
pragma:
@@ -370,8 +370,8 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"name": "webappacrtest000003", "type": "Microsoft.Web/sites", "location":
- "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002"}}'''
+ body: '{"name": "webappacrtest000003", "type": "Microsoft.Web/sites", "location":
+ "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002"}}'
headers:
Accept:
- application/json
@@ -388,8 +388,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -405,7 +405,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:24 GMT
+ - Wed, 30 Sep 2020 00:48:41 GMT
expires:
- '-1'
pragma:
@@ -443,8 +443,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -452,8 +452,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":8101,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_8101","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":9053,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9053","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -462,7 +462,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:24 GMT
+ - Wed, 30 Sep 2020 00:48:43 GMT
expires:
- '-1'
pragma:
@@ -502,8 +502,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -519,7 +519,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:24 GMT
+ - Wed, 30 Sep 2020 00:48:43 GMT
expires:
- '-1'
pragma:
@@ -542,11 +542,11 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002",
+ body: '{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
- "v4.6", "linuxFxVersion": "node|10.16", "appSettings": [], "alwaysOn": true,
+ "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [], "alwaysOn": true,
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
- "httpsOnly": false}}'''
+ "httpsOnly": false}}'
headers:
Accept:
- application/json
@@ -563,8 +563,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -572,20 +572,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:15:29.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":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":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:48:48.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":[{"ipAddress":"Any","action":"Allow","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,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webappacrtest000003\\$webappacrtest000003","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.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":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":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webappacrtest000003\\$webappacrtest000003","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.rg000001","defaultHostName":"webappacrtest000003.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:
- - '5786'
+ - '5916'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:45 GMT
+ - Wed, 30 Sep 2020 00:49:07 GMT
etag:
- - '"1D65E11BAEA98C0"'
+ - '"1D696C37FE24795"'
expires:
- '-1'
pragma:
@@ -603,7 +603,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '498'
+ - '499'
x-powered-by:
- ASP.NET
status:
@@ -627,8 +627,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -637,19 +637,19 @@ interactions:
body:
string:
@@ -661,7 +661,7 @@ interactions:
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:15:45 GMT
+ - Wed, 30 Sep 2020 00:49:07 GMT
expires:
- '-1'
pragma:
@@ -695,24 +695,24 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-12-01-preview
response:
body:
- string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2020-07-19T21:15:06.1020107Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-07-19T21:15:07.666051+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}'
+ string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"calcha@microsoft.com","createdByType":"User","createdAt":"2020-09-30T00:48:23.3736406+00:00","lastModifiedBy":"calcha@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-30T00:48:23.3736406+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2020-09-30T00:48:23.3736406Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-09-30T00:48:25.1967493+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}'
headers:
cache-control:
- no-cache
content-length:
- - '907'
+ - '1150'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:46 GMT
+ - Wed, 30 Sep 2020 00:49:08 GMT
expires:
- '-1'
pragma:
@@ -746,15 +746,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-12-01-preview
response:
body:
- string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6"},{"name":"password2","value":"qsUWPQjd=ikrulnryorkr6uI9TNZkRFR"}]}'
+ string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"vWe417jvF0umsZdUVgrMAtnyW/fU8=4y"},{"name":"password2","value":"UH+R8m9lGT1vhGTnElX0yu5Zyh4rRmdq"}]}'
headers:
cache-control:
- no-cache
@@ -763,7 +763,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:48 GMT
+ - Wed, 30 Sep 2020 00:49:08 GMT
expires:
- '-1'
pragma:
@@ -779,7 +779,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 200
message: OK
@@ -797,24 +797,24 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{},"systemData":{"createdBy":"calcha@microsoft.com","createdByType":"User","createdAt":"2020-09-30T00:48:23.3736406Z","lastModifiedBy":"calcha@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-30T00:48:23.3736406Z"}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '388'
+ - '620'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:47 GMT
+ - Wed, 30 Sep 2020 00:49:09 GMT
expires:
- '-1'
pragma:
@@ -842,24 +842,24 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01
response:
body:
- string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2020-07-19T21:15:06.1020107Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-07-19T21:15:07.666051+00:00","status":"disabled"}}}}'
+ string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2020-09-30T00:48:23.3736406Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-09-30T00:48:25.1967493+00:00","status":"disabled"}}}}'
headers:
cache-control:
- no-cache
content-length:
- - '753'
+ - '754'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:49 GMT
+ - Wed, 30 Sep 2020 00:49:10 GMT
expires:
- '-1'
pragma:
@@ -893,15 +893,15 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-containerregistry/3.0.0rc14 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01
response:
body:
- string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6"},{"name":"password2","value":"qsUWPQjd=ikrulnryorkr6uI9TNZkRFR"}]}'
+ string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"vWe417jvF0umsZdUVgrMAtnyW/fU8=4y"},{"name":"password2","value":"UH+R8m9lGT1vhGTnElX0yu5Zyh4rRmdq"}]}'
headers:
cache-control:
- no-cache
@@ -910,7 +910,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:15:49 GMT
+ - Wed, 30 Sep 2020 00:49:10 GMT
expires:
- '-1'
pragma:
@@ -926,7 +926,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 200
message: OK
@@ -946,8 +946,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -964,7 +964,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:49 GMT
+ - Wed, 30 Sep 2020 00:49:10 GMT
expires:
- '-1'
pragma:
@@ -982,7 +982,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -991,7 +991,7 @@ interactions:
- request:
body: '{"kind": "", "properties": {"DOCKER_REGISTRY_SERVER_URL":
"https://webappacrtest000003.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME":
- "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": "q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6"}}'
+ "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": "vWe417jvF0umsZdUVgrMAtnyW/fU8=4y"}}'
headers:
Accept:
- application/json
@@ -1008,8 +1008,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1017,7 +1017,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East
- US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6"}}'
+ US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"vWe417jvF0umsZdUVgrMAtnyW/fU8=4y"}}'
headers:
cache-control:
- no-cache
@@ -1026,9 +1026,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:50 GMT
+ - Wed, 30 Sep 2020 00:49:12 GMT
etag:
- - '"1D65E11C76CE86B"'
+ - '"1D696C383627AAB"'
expires:
- '-1'
pragma:
@@ -1046,7 +1046,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -1068,8 +1068,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1077,7 +1077,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East
- US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6"}}'
+ US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"vWe417jvF0umsZdUVgrMAtnyW/fU8=4y"}}'
headers:
cache-control:
- no-cache
@@ -1086,7 +1086,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:51 GMT
+ - Wed, 30 Sep 2020 00:49:13 GMT
expires:
- '-1'
pragma:
@@ -1104,7 +1104,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -1124,8 +1124,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1142,7 +1142,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:50 GMT
+ - Wed, 30 Sep 2020 00:49:13 GMT
expires:
- '-1'
pragma:
@@ -1178,8 +1178,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1187,18 +1187,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:15:50.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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webappacrtest000003\\$webappacrtest000003","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.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ US 2","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:49:12.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":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webappacrtest000003\\$webappacrtest000003","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.rg000001","defaultHostName":"webappacrtest000003.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:
- - '5591'
+ - '5721'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:50 GMT
+ - Wed, 30 Sep 2020 00:49:14 GMT
etag:
- - '"1D65E11C76CE86B"'
+ - '"1D696C383627AAB"'
expires:
- '-1'
pragma:
@@ -1234,8 +1234,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1243,18 +1243,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"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":"node|10.16","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3215'
+ - '3651'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:51 GMT
+ - Wed, 30 Sep 2020 00:49:15 GMT
expires:
- '-1'
pragma:
@@ -1292,8 +1292,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1301,7 +1301,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East
- US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6"}}'
+ US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"vWe417jvF0umsZdUVgrMAtnyW/fU8=4y"}}'
headers:
cache-control:
- no-cache
@@ -1310,7 +1310,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:51 GMT
+ - Wed, 30 Sep 2020 00:49:15 GMT
expires:
- '-1'
pragma:
@@ -1328,7 +1328,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11997'
x-powered-by:
- ASP.NET
status:
@@ -1337,7 +1337,7 @@ interactions:
- request:
body: '{"kind": "", "properties": {"DOCKER_REGISTRY_SERVER_URL":
"https://webappacrtest000003.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME":
- "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": "q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6",
+ "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": "vWe417jvF0umsZdUVgrMAtnyW/fU8=4y",
"WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false"}}'
headers:
Accept:
@@ -1355,8 +1355,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1364,7 +1364,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East
- US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"q8ZA0EgBCDhOZ84dJGK0htfH5hEn3R/6","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}'
+ US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"vWe417jvF0umsZdUVgrMAtnyW/fU8=4y","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}'
headers:
cache-control:
- no-cache
@@ -1373,9 +1373,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:52 GMT
+ - Wed, 30 Sep 2020 00:49:15 GMT
etag:
- - '"1D65E11C8AE5C15"'
+ - '"1D696C385FED06B"'
expires:
- '-1'
pragma:
@@ -1434,8 +1434,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PATCH
@@ -1443,20 +1443,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","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":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3251'
+ - '3687'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:53 GMT
+ - Wed, 30 Sep 2020 00:49:18 GMT
etag:
- - '"1D65E11C8AE5C15"'
+ - '"1D696C385FED06B"'
expires:
- '-1'
pragma:
@@ -1474,7 +1474,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1494,8 +1494,8 @@ interactions:
ParameterSetName:
- -g -n --docker-custom-image-name --docker-registry-server-url
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1503,18 +1503,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"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":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3269'
+ - '3705'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:53 GMT
+ - Wed, 30 Sep 2020 00:49:18 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml
index 924481c0313..bce30af4911 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:14:15Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:40:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:14:14 GMT
+ - Wed, 30 Sep 2020 00:40:41 GMT
expires:
- '-1'
pragma:
@@ -63,8 +63,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -80,7 +80,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:13 GMT
+ - Wed, 30 Sep 2020 00:40:42 GMT
expires:
- '-1'
pragma:
@@ -98,7 +98,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -118,15 +118,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:14:15Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:40:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -135,7 +135,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:14:14 GMT
+ - Wed, 30 Sep 2020 00:40:42 GMT
expires:
- '-1'
pragma:
@@ -168,8 +168,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -177,8 +177,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":16524,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_16524","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":13407,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_13407","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -187,7 +187,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:27 GMT
+ - Wed, 30 Sep 2020 00:40:56 GMT
expires:
- '-1'
pragma:
@@ -225,8 +225,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -234,8 +234,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":16524,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_16524","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":13407,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_13407","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -244,7 +244,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:28 GMT
+ - Wed, 30 Sep 2020 00:40:57 GMT
expires:
- '-1'
pragma:
@@ -267,8 +267,8 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"name": "webapp-win-log000002", "type": "Microsoft.Web/sites", "location":
- "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003"}}'''
+ body: '{"name": "webapp-win-log000002", "type": "Microsoft.Web/sites", "location":
+ "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003"}}'
headers:
Accept:
- application/json
@@ -285,8 +285,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -302,7 +302,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:28 GMT
+ - Wed, 30 Sep 2020 00:40:57 GMT
expires:
- '-1'
pragma:
@@ -340,8 +340,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -349,8 +349,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":16524,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_16524","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":13407,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_13407","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -359,7 +359,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:29 GMT
+ - Wed, 30 Sep 2020 00:40:58 GMT
expires:
- '-1'
pragma:
@@ -399,8 +399,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -416,7 +416,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:30 GMT
+ - Wed, 30 Sep 2020 00:40:58 GMT
expires:
- '-1'
pragma:
@@ -439,11 +439,11 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003",
+ body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
"v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}],
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
- "httpsOnly": false}}'''
+ "httpsOnly": false}}'
headers:
Accept:
- application/json
@@ -460,8 +460,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -469,20 +469,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:14:38.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:41:05.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,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5733'
+ - '5894'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:57 GMT
+ - Wed, 30 Sep 2020 00:41:24 GMT
etag:
- - '"1D65E119CCBD26B"'
+ - '"1D696C261CB24D5"'
expires:
- '-1'
pragma:
@@ -520,8 +520,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -529,18 +529,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:14:39.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:41:06.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":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5538'
+ - '5694'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:14:58 GMT
+ - Wed, 30 Sep 2020 00:41:25 GMT
etag:
- - '"1D65E119CCBD26B"'
+ - '"1D696C261CB24D5"'
expires:
- '-1'
pragma:
@@ -581,8 +581,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -599,9 +599,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:09 GMT
+ - Wed, 30 Sep 2020 00:41:33 GMT
etag:
- - '"1D65E11AF4DAD0B"'
+ - '"1D696C272674280"'
expires:
- '-1'
pragma:
@@ -635,15 +635,15 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan
- West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-07-19T21:15:32.7785773
- https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-07-19_21-15-21Z"}}'
+ West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-09-30T00:41:57.7749451
+ https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-09-30_00-41-46Z"}}'
headers:
cache-control:
- no-cache
@@ -652,9 +652,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:15:44 GMT
+ - Wed, 30 Sep 2020 00:42:05 GMT
etag:
- - '"1D65E11AF4DAD0B"'
+ - '"1D696C272674280"'
expires:
- '-1'
pragma:
@@ -690,8 +690,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01
response:
@@ -706,9 +706,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:15 GMT
+ - Wed, 30 Sep 2020 00:42:35 GMT
etag:
- - '"1D65E11AF4DAD0B"'
+ - '"1D696C272674280"'
expires:
- '-1'
pragma:
@@ -748,8 +748,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -758,19 +758,19 @@ interactions:
body:
string:
@@ -782,7 +782,7 @@ interactions:
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:16:16 GMT
+ - Wed, 30 Sep 2020 00:42:38 GMT
expires:
- '-1'
pragma:
@@ -816,8 +816,8 @@ interactions:
ParameterSetName:
- -g -n --log-file
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -825,18 +825,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:15:10.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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ West","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:41:34.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":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-win-log000002\\$webapp-win-log000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5538'
+ - '5689'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:47 GMT
+ - Wed, 30 Sep 2020 00:43:08 GMT
etag:
- - '"1D65E11AF4DAD0B"'
+ - '"1D696C272674280"'
expires:
- '-1'
pragma:
@@ -876,8 +876,8 @@ interactions:
ParameterSetName:
- -g -n --log-file
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -886,19 +886,19 @@ interactions:
body:
string:
@@ -910,7 +910,7 @@ interactions:
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:16:49 GMT
+ - Wed, 30 Sep 2020 00:43:10 GMT
expires:
- '-1'
pragma:
@@ -946,8 +946,8 @@ interactions:
ParameterSetName:
- -g -n --log-file
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -955,7 +955,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishingcredentials/$webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan
- West","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"j6inskPzN3a2wEXkMywakidfQ6ph3fT161sK2BspFfqSHTq8o7Ts7vLt6Col","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:j6inskPzN3a2wEXkMywakidfQ6ph3fT161sK2BspFfqSHTq8o7Ts7vLt6Col@webapp-win-log000002.scm.azurewebsites.net"}}'
+ West","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"gGcflXxqZMzvh7tyyg1HeRp3sr7ojHBd3bqE9a4jkW9F1rkj2Xlx948Q6JoA","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:gGcflXxqZMzvh7tyyg1HeRp3sr7ojHBd3bqE9a4jkW9F1rkj2Xlx948Q6JoA@webapp-win-log000002.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -964,7 +964,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:50 GMT
+ - Wed, 30 Sep 2020 00:43:11 GMT
expires:
- '-1'
pragma:
@@ -982,7 +982,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -996,346 +996,378 @@ interactions:
response:
body:
string: !!binary |
- UEsDBBQACAAIAPmp81AAAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw
- l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACAD5
- qfNQAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj
- MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ61YXY7cuBF+ToDcQfBDPAaaDElRouS8zGLtbIBkjYV/sIAx
- wIItUd3KqkVFUs9s52kP4cdcJchd9gK5Qj6quyVqZlr2bGIPYNdQVV/9sVhVgglGmCI8fS/4Sx69
- FJKmsWSKRx9XH5pc92W9Cbr9emfzfWU6ulpna8ljZkghdUTkWidE59oQFYeMR0arSJsV+91vxQPJ
- EWWRkiyVH1fftabRrROdm6ayh52p+6CwbZDZ3a7sgzIPnmdZIgv8ScVzusoZE3wdCaCmikgjDEmk
- XBMjuGZxGCnFLqKKlCdhFH5cfWNq0x4t8mC7rC2bHobFcR5zlREuU0FkJiRJiygjcRZGLI7WKjMD
- xG8esyyMpIhSYHzonFX91sCcqrJ3jnJG6ToPehtsjioY3+6jAi+D5/of+9YEXdn7x8fTgBwCQmpL
- ctsTT3nSBs9evbzZ2p25cYw3cKzFf2x7eBYQe+9wYuxuemurDt9AaG7wj+P+TvfbeyyePITBBfYR
- +2PK01RGXCz7eIiwg6N/64LvzTp4B8xB5kOXxjRkSoYCafh2X9f3UuXkUUrpKtYIl8g5KYTSRAqR
- Es0NI0LxTBY61LnRF9UORcikS/WvjyF6ec/6Bw67Of6GZrv82SVvJE71mMfxx9WfEfbK6X62ehJ4
- 0ZkJVSoWqUyhVWuO6aqb5gdbFBBl6LbfXUYeWf+yz/fvDnVG37x+HxSt3SG/LiTKcyTm/dO7u7vW
- 2v75AhJulQr5x9UrU5mhShRlZSBnaztHdr1ue6ds9SVCvrbNwfnpJINuyr7c1LY1v4K50dmPeuOS
- zNYL7AlHOQoTF/sZdtPazHTdZ9lTlrIQGX+PvTPtrWnBvQCdMh4KCd7Rd18Y4JQKmfBYQuu/Wvvj
- 4DFUTXAD8A8jdLCvc9MeK4kL48VcS6lkXCSRK/ZD4RqiRvZNcCo7o8hLiQAJPE7SCMl+Kq8mD+7M
- mma2LsrNEvKZ782pIsBtXWnrLtC3uqz0ujKBrYdS2lS6x+uwC3SLDGM0poL9fqgBfwSVUOETPPUp
- Ec8oNaOSieKMRjOKzw8Fn50KOSc9FEgS93g9jXAazkWFnvY4lZ5lXNA55X8qaOjpIOiogqRsYpOU
- z4lRhKSCjpo4YnYyynYno7GShr600OcB7FkfSQHrE55uko4xkBQtwfRZPCc8AcmkATimzyIYN34W
- +bpF0GAUHfk4EbLHO1FzwpOW+CfphAP26QQvn094TsQD5p94lsa+BjH1NIhp6vPMQHH1z65yn40h
- ccSYuVBnrhyybeLinrfwJfclgvKlzAxBGo5SoO2kovKtV0iU0bHKt175wVB+MJTvCuW7whGjjcCZ
- o7IpHAjTBJtAoZELWeOfeBHAE+ufeJFOUE3GHEj8cDhi9IIjPBxfO/B7bgblQbnvJmBQXiqC4t6t
- cWQ0BciRyKhzLB3ppQoCxL1sc6RnrSOdlxZKOPoswdCXv8NbnvWo4Od+5VSTg+Gq0uBDZwL/eR3e
- a9fXZltrcaaDvCwK07p2/sS6BCvTGJ2SD9vsznzBYATnC1qf2cc5pSy7QfHDrgp0H8z6nVNHc+N9
- c0F0iLThTKUpmpsaCn3/1ds3c6sP+42uN3cE7xzB23uNGkBZ8Maiqz++m3jGViv+WK/8PwifWnG4
- 3VQ5PHsRQqQJdw3GE/V/+/qrV9++DjD26f+/8KrMTI0kWVQ+cpmNGdHNUuanpkUndo1rgQow5OQP
- pzn05nR2IYSQIljCZIwm+pdP//zl08/4CRAc3RjietIhZOGTuHXb6gMp0Ir0pgY//i7wC8HTCG3a
- hL7vy6ojO9NuzID+NO6BD5PfMb9s231WRqhS4S7XpMHO9FubO06U/gXdH3Jmrtk0mBE3te4xpA7g
- 8YKIKJQyQQgncPSD8FtP+kNzZJdPYi+QCdtrNGmLmscpU2Ie815voC3q8ALcQ7aztnnZDfM0LvQA
- vpQyCdItRSc92dyiShiCTQfaaCiBiragxEN2U2dojfftMVsXIhYyFoZs5u4GozzpLWnNBlcFunOq
- LoM/KgBaH7FDumB2yLF+iVEqJ7NvdXv4XJKFoeSJm3Entk4Xhqz37v24dp3dksGPcLu5i2B+6cvM
- gaNoLNiLnQH2VTN002Py663LT1sM6i8JiEUi3ITvqQ/ofWfc9cLju4Ct3IJtlifH64Ug4eV5EiPW
- CflnPf0Qz9akKOuy25r8Gr0d3q4rg4Ve2Xb90fAXT9Li79310MYuMKVYKcYzm6GArrZuPzLcDYQ7
- uNrXTXmqDmxJhYfSELqfDlhE5i0MQl8VXGFevNNtDgtd7o+9c9m4jzAtw1D01wso2FQqxmY5kpv1
- fgMA9NzB1a4boJYUfUREZ+pBI/egXaGc9611dwWhP/d2g1wk8EiXO1cwvVZx2/cNMW17fAXQaj/N
- CpfhpHQOwBCQwBCTl3qoyy185fWROyAPv3eWwodqCUckiouZt3SWmaZ3OCFVwVVtNrYvNVaTQMEE
- 79v3K1A+/eff/8KPe9fXNj9MVdY1xsHV+tDjKoZQe5xJWn1H3KcwxhsM7jtz1KvEG3BLKqwoh4sp
- 5JdY/6fTtcLKHNZ3XbGvqsOxBX6w40STIpUQTKFwn3eceGx6fzd8WnRedS/crjNKmMjSJCOKcY4V
- dc5IqpKCFGuO5bjSBlX10d07oKIIbwQH1Pu23GzMsHxvTXbIsGa5Qp91W5q7AN0Vds9l55Yv+QsA
- qpynIsR2X3Cs3ddGE0Q1JEmkU1GgxSwuA8ZxqFiEoeLVtOKfvEJXOuRJzIuYpFkaExmpGCv9IiTr
- TK8TzUWq8tQZ819QSwcIuTIWwTIIAACjGAAAUEsDBBQACAAIAO6p81AAAAAAAAAAAAAAAAA9AAAA
- ZGVwbG95bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5p
- ZmVzdNNLzyzJTM/LL0rl5SpITM5OTE/VyyrOzwPyivKTU4uLobzi1KKy1CIgh5dLD6iFlwsAUEsH
- CE08ibUyAAAAOQAAAFBLAwQUAAgACAD5qfNQAAAAAAAAAAAAAAAAPwAAAGRlcGxveW1lbnRzL2Nj
- ODRmZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbI2SQU7DMBBF
- 90jcIeq+ieMmJKlcl02BPVmxQa4zCZbiOLKd0p6NBUfiChi3iYJUJLzyzP/veyz76+OTbI+yDQ6g
- jVDdZhGHaBFAx1UlumazGGy9zBdbentDKuhbdZLQWVcFAREV5TxParcKzIoEJRwgLVKAPOcoBp4V
- OMF1vUcZiZzZQ2ywb0rT09CwrnlfSlNbEl2a3nA+BTR9FPZp2JNoasz4nWSiHUPupeBaGVXbkCs5
- pp0tnpFgDGuAsqoKzLCvlKM7t+t7pa27WDQavLvXqtGOoCSatl4wltnB0OeBcyeT6FLPtBKO1mFn
- wRdebJmxF2rXVaWQQDHCaImyZVyUOF7H6TpF4V1WrO5Q9kKiK4AP0sBBHOCPCJyEeZEWCU5dxC/r
- OKK21w/HaYiyFUJZ4kg3/cXnMfjXxKPLI+4V+hYs0FIPQKKp9KIwrxZkTx9Ya5w4lqOmgVWqa08z
- fWr9PNXsE34DUEsHCFjArwJnAQAAvAIAAFBLAwQUAAgACAD5qfNQAAAAAAAAAAAAAAAAFwAAAGRl
- cGxveW1lbnRzL2xhdGVzdC5qc29ujZJdb5swFIb/yuSrTSqpATPiXG1aqjXap5JcTb6xzYGiYsxs
- M5ZV/e87OF2Wm1TlCl6e857PB7JvDeyCNANZkYxmNKFlkvJ9lq7SYlXQH+SK7NoAX6UBJCZQchiS
- qe2Tzjaskoepz6b8Hqkt/BzBh02FmCwVlXnJE64YTxiVKlEpGpcpU8BUrSgFDPnU9jP9sQ23o5oT
- BRlGj8pu1Bq8R2kNQbbdrD0IsqkEWQmi9ZLV+PBMckaZBih4AbBcapqCLnnGshpTlIJciSdPjGOn
- jz38DtEoAu/HcGfdjcE0UTyMjeyb6Z1ptbPe1mGhrTkjz6HE+Bqt0PkLlisbiD9lVb3yo6osevb4
- NgzWBSH6CH53tnEI/y9gDUNnD+CicpxFJLegof0F1byhIy2u1zLA6xTbTXmeZ2zJizdCXEcch+fC
- ZbagZX5ib/rLrgV9W/IT+Vn68LSNlwd9sGboIMxVBzcCjmfj92BwDNIdUKxl54/qFmT1re/OxX/X
- Flu+dG+x41vrw3yXz5ILr81C/hkdoJfHS/aLHnBnj+TxL1BLBwhzX3h4nAEAAP0CAABQSwMEFAAA
- AAAA6qnzUAAAAAAAAAAAAAAAABMAAABkZXBsb3ltZW50cy9wZW5kaW5nUEsDBBQACAAIAOSp81AA
- AAAAAAAAAAAAAAAYAAAAZGVwbG95bWVudHMvc2V0dGluZ3MueG1se797v419RW6OQllqUXFmfp6t
- kqGegZJCal5yfkpmXrqtUmlJmq6Fkr0dL5dNcWpJCVCsGMhWULBJSS3Iya/MTc0rAfOBIokpKQrZ
- qZW2SklFiXnJGUoKZYk5pam2SrmJxSWpRUoK+hCN+ig6bfThxgIAUEsHCAwFZiRyAAAAjAAAAFBL
- AwQUAAgACADtqfNQAAAAAAAAAAAAAAAAHAAAAGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveS5jbWTF
- Vt9v4kYQfkfifxiQLN1VwUmurSqRUh0iyx09MBQ7uZyEZDn2Ar6YXddeh9CH/u2d2bX5EUju+nQ8
- gPHszH47+30z8z6eQ9NyeyPfm3Z7zB+yWza0muCwv6D5SxPe83ApQc7n9Vq91m5D6+RHmz7dXN/A
- NU8TuVlxocANszhV2nTLszyWog2X9oV9+durkbRxkvGM/13Eeax4fry8BINh4/kGhIy4/TWHWOQq
- SBIe1WvrJfprA7z7QxQJ0Fe9NuiDxabT8dQcU5/yAt7UawD6nKM4z2Ox2EbkTzwsVHCf8DNIEx7k
- vNqkWnIGmMAgyXgQbSobj2AVPHDIC8QQKwgDAfcccE24RNs8kysIiyyjJHHxGGdSUMJsgrGQSgLP
- MpnVa2/LY7pcFekuCfQ25yqRYZCgP6GLeBJs8PspDQQlmpa4zIPu1Bv0uz3P7Vj/RumFZduzIFPx
- PAgVZlXnwxl7cM36A4dd4+9kOP4yYo7nu+ObaY+Z1FCkI1MVsYSJmX0hktedfsAAOsnPIhlTx9rC
- tGbr9TqTElmjD/8sqsPuPH/UdQZ95nr+pOt93IU9th3EXQUinvMcA1OWn8WdTNntYHzjnooNQKBP
- r3hhBwAEfwo/KcR3vzg9vze6NtBRUgNDW3googLyjQi3dCwtxMhPZHRLI158AiJdVYTTruQJrQUq
- NI8TpFN5zsaO742S7/sco1WIYUhkSjbwtcgVZIUQtGeTENGeTVjLIomQ57nEx+yBvCgtBwfqWEGa
- RoEKrBlim1XOdrhCQWI69La7+kA3gTvfqDiJ1Qb6hQgVUveE2qnk6NUuT3ioHJR7WVBKDlf8NXDY
- kPU83xlfM/+WTd3B2DlIt7fkMJdJItd0xgAlGknBQQo8vhTwORaRXOfQ/YfU+5nf6xK0r1M6vL4B
- 67X9LCyrR6LBwnrw1gjg6C0bTazm998fspndDVzvWWyKMvN9qo5lumy1SpuGd+b+zlNULeaJ3bHO
- 74fIXvAmVFo/3+CV1gBAeYjX4KWr19BNRv6frpb6SwAP/f8XvhLdfuGq0rGfpepdh1JJPlrbJoMO
- AkQxd5qNalUD77hBr0vcDbzJt8CG7l41rbxQJxSPpFS5l5voLbRi2mzcN1pp/+CP1uu+gA/mAY1x
- 36o76sdARMl+S422AwL2Ox3x0tbVzRQ35PL5AIk8cPzJkAaSnYaqqeSypLDWYJvpFs17qwi9DuoR
- rm89wq8X0KIRZxen7G1kVoeGrRxbAg3HHYVcUrSc7gZkjaFpL2J1ZS8XV/buqFfmkUrhd+pa3z/m
- 950NpuqZYebRDFL1mjn8yYKIXj/b265CbSINwodgQYPUC6VCt2hrVq7DWUqKMslpkS8ps3vpq7JE
- zD26A818FERj25tarTSTUaGLeym4b9aOVKamZxBBfvSn7FxcICRN2JJyEMoVjhURZLJQMbYQtQwU
- rGPszWZoLvDfkotqnNuj6m6A009AJcTvWD+V92rp/1a9pofzXQNHhum5/KJpdugH2Okj4E+x6mFp
- 6uzPtmcVvM42Gq2D8/uDEVgfqZw38YR6qKzXNP5uiRyWQQ4y1BNrBFGRkZzX/B6oM8KO5KhnQwfa
- B2dWRlPskD9yHLx3hj5Ov1WvN7O5gXDsU8G93C7Y963X3hiN6Ht5Br0fizinWTsvwpDn+bzA4Qbx
- /QdQSwcIeiEzSekEAADuDAAAUEsDBBQACAAIAO2p81AAAAAAAAAAAAAAAAAkAAAAZGVwbG95bWVu
- dHMvdG9vbHMvZGVwbG95bWVudENhY2hlS2V5szDXMzIwNTLSMzEzNNAz4OXSrVTQ1c3L103JL9FN
- SS3Iya/MTc0rUdAtUlBysYrJyM9NjSnOLEmNKUotyAcy8osqlRR089EkERqLY0ry83OKgWqAhqak
- AimQ7oDEkgw0LUjm8XIBAFBLBwhpMe7/ZwAAAJYAAABQSwMEFAAIAAgA6KnzUAAAAAAAAAAAAAAA
- ABUAAABMb2dGaWxlcy9ldmVudGxvZy54bWzlmM9vmzAUx++T9j9YObWHBoMBAzJIFMgSLc2ihO6w
- qppQ8FY0fkTGSRdp2t8+D0KyqSTSdhga4QCPhzG2P7z3vkCCLc156ZDq6JDlruQ0c8icFdskpgzM
- oozagzHn63ka8U8Fy8ZRHqeUDaT9TRPfUSCERKq6EGdkSrc0dVQi1QYJo/KLIxpUR/KW7p4LFpdO
- YxCpsRwSJhn1GI04jUE9lp8ee6BABd5AfCOboSJbsmZB9cNhBAu6Eh2KJyOsGaaua/p+MIcLxHuK
- 8lwMyl2v02QV8aTIidQ4iVdk6w2nzFn4YiZoNNJuFRndihbNBbKkqw1L+E7MWmoWqZqwH/HIIdXe
- Pm6gZcVAnKYgLaJYzO3Y0gYP4cQHCEP4CB7mwtSgajwSqe64XtVf7X6xMnA3rJq3GbynrBRvA7hy
- cx4xWjaOawsYxhAO8VDVLhoRlo1uELnz+XTiueHk3ezjnTtz3wQLy2pxgm+APyWlDaHuQ+zDy6aF
- RN6tEtM/Tn4L+jkRtYPdFfEmpRZCquAyXgTL+2kILCDyarWBq+W95wWBH/jCK1/3H5astVcqE2IT
- dZT9PFHfv+5qVKNoxQu2s6yQsizJRek9BJTq6zIa7QNKgUZvK9Q5RhrqJqBaMp1lfW/xHnD9lv96
- jUs/FVIm1JVucB0V3Untt8lfqL86/fWaFT7BSoZI7Si0jqzsk7BeoNoLdYwUYy/UZdNQeyXU5TOs
- NLObuPoLoX6piLDWDaKWmnReqGsQIawadfK7VFpm88vkfxLqfwKr/gwpndevfgBQSwcI9gN3NE8C
- AABmEgAAUEsDBBQAAAAAABmq81AAAAAAAAAAAAAAAAAZAAAATG9nRmlsZXMva3VkdS9kZXBsb3lt
- ZW50L1BLAwQUAAgACADkqfNQAAAAAAAAAAAAAAAAUwAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAy
- MC0wNy0xOVQyMS0xNS0wOF82NzgwNTNfMDAxX1N0YXJ0dXBfUE9TVF9hcGktc2V0dGluZ3NfMHMu
- eG1sfY5BS8NAEIXvgv9hnHPXbLZJE0NSKPUSjG1xg3gLS7PoQrJZs5OD/96tUBAPXud7895XetIO
- yNCgK5SkZlocvOjPRXtC6BWFs+CCM56x+KEVcRGnBc/vYyEQjPWk7DlENlnO0zXCMg8VRsqZyGsi
- Y989wqjpY+orPB1li0BfLuTn64IzgaQ8yVditUGQ++dOPtWnTsqme9019eOurY+HCnlg57H9eT5M
- ViNsb28Ayt/6+0ErG/TfxgGa6TL9j38SGqNteccY9MusyEy2gHg9emAsVJfRpfkvT7Ir/wZQSwcI
- 9bkz2d0AAAA4AQAAUEsDBBQACAAIAOSp81AAAAAAAAAAAAAAAABPAAAATG9nRmlsZXMva3VkdS90
- cmFjZS8yMDIwLTA3LTE5VDIxLTE1LTA4XzY3ODA1M18wMDJfUE9TVF9hcGktc2V0dGluZ3NfMjA0
- XzFzLnhtbJ1T227aQBB9r9R/2O5zZr02BgzCkVxCWlRuwqakj7bZgFuz6+6uQ5Kv79gpTaUIqerr
- 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
- +CCRB/bjk7j/IDM53R1s+HRzeQFQ/B6z64x2Ycxr30E1nPy/azKBEG2KK8agnSdNdnA5iLT3wFhQ
- F9G3+S9PxJl/AVBLBwhBpTEP5wAAAEYBAABQSwMEFAAIAAgA6qnzUAAAAAAAAAAAAAAAAFYAAABM
- b2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDctMTlUMjEtMTUtMjBfNjc4MDUzXzAwMl9HRVRfYXBp
- LXNldHRpbmdzLVNjbVR5cGVfMjAwXzFzLnhtbJ2TUW/aMBDH3yftO3h+7jlOCE1gpFJGaRuVloqE
- 0T0mwYVsIXZtp7T99LvQsU2bkKa93v3vfPf370bGCkVsZWsR0aQp5bZq1mQuHlthLCWr3GLc4x4H
- HoA7yDx36PaHHme+F1BSNcbmTYmS0yDk/R4lra4j6uSqcoywFnsZJy232YsSlGyF3chVRC8nGSUW
- QxHVh4dUhQl3EPon3klIyVg2jShtJZuIXguhIK6rJ2wRt9hCV6/5W+pTbhhjlFxJYyO6E0WuFOyq
- Bmq59lf5y67xdr1vzJRblr+2WqDCVFYY1ghcbmGEhngtGqyNuzQsRZF2ecD3rZZ1LbQThoyzgPl9
- Sp5ha+DHyNANnAcFz3vBAAaFPwCf5wUULhoVuH4h/OKh4ByHvodlvExh0Qj0dyVWsJhPj5o0niaT
- 2wySO7SD+8xz+8x1mRucDnunPjpzD/F8DtPZJSTn/z5AmmQTOJ/cTWdfbvbtsfaYXZQs4xTFF/Fi
- msHVLM1u45vJcf0xe+/hQupdrruN77S0MqIba5XZ76BUKvRTVYq/Ur+Kstp8FtrsIXCZR8nZ+3eE
- jH4ndtbateyI1cIo2Rh0+xiy2CFEZA/cHeQIsG3NGP+l45xT8hbIxDNSMbumpJtT6IjeVKWWRj5Y
- SJLUcTlD7X8CMc7LjTgwFlGlqye8s70vRt0KCz/X9pG9Hu+5g/1JWEQVulvCj1eqrsr9GThfjWw+
- knKTa7y5qLUPgJw4Z6MPAGTV6r1oSPjWEAC0cOR0Dv6ZDoP+QfAdUEsHCJJSNy1FAgAAFAQAAFBL
- AwQUAAgACADqqfNQAAAAAAAAAAAAAAAASQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wNy0x
- OVQyMS0xNS0yMV82NzgwNTNfMDAzX1BPU1RfZGVwbG95XzIwMl8xcy54bWyVVE1z0zAQvTPDfxA6
- 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
- LnhtbK1UXXOcNhR970z/g6KHPkUgsWBgY9Ih9sbe6fpjdnGd9qUj4O5aLQtEEt44v74X/LFOG9xM
- JzxKl3OP7rnnHBoLLbHKVpDQeV00W1VvyBI+dmAsJaW0eO5xjzMeMhFnnpiKYOr7ThwJSlRtrKwL
- LDkIIx5MKOl0lVBXtsotoa2auy3U1rgVwhj78/0R6ORE2dMu/0lu2zdWbSHZN/jDE0wEzBO/U7IF
- e9OUCT2ZZZTYuxbb6EdircILEUf+a++18Cg5auoaCquaOqG/ALQsrdQtUJJ2iKHVZ3l/9U4ax3Eo
- OW2MTegOctm2bKdqVjUbv5R3u9rbTf5yTLF15OdOA1YYhdydGnAaVwY0Szf4pISm/TW7hnzV3zPs
- b3VTVaDdKHK4Ezp+QMkntjXsgTPrGcsw53ISxizO/Zj5XOYsFzjZUPg5+Pk65xxJf2DX6fWKXdWA
- gpRQsqvl4rtN9Wgxn51nbH6J8+O+44nAEcIR4cF0cuDHffN0uWSLixM2P/52wqt5NmPHs8vFxW9n
- Azz+OzZeSq7TFRa/T68WGTu9WGXn6dlsvH5Mjg/sfaN3UvcTutSNbRJ6Y21rhje07Qr0rSrgX1f7
- n7LK/AraDEsjHNyitz/+QMjhc0scP23xA5xzAnYJpqtedkeM6g9o34K3GOyxbzXuu8DhHDV6QB7F
- PpO13IDec8WZjFkZIT0k6749fMUYKTs9WGVKRBRtDWHsv3qRooj8NX6xJ2Of+wVAEAcAUVRwAUUY
- e763xsUOiTLkXaeqEhPmJTqeF32FDn9O5tDtNfonY2/i74tGSvxnj/pC6IvObpo++zSYtqkN2nB8
- Yl6AIjwm0mM5RqHtzBEadkhMSu4PMvjUx0VRQGuhpKTfI4xAeqYK3Zhmbdl8vnIFd/j/zosjWdzA
- YwQltNXqFjdqsIFpz8Gypy33MZomfCKQ/qIpHkJxMM3Udcf8+nX/faeQ74MTA5VlQ75jHFfqnpf7
- p2nqN6S4kdqATTq7Zi/uxYjg4ZPgfwNQSwcI0+rWYvgCAADrBgAAUEsDBBQACAAIAAeq81AAAAAA
- AAAAAAAAAABVAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTA3LTE5VDIxLTE2LTE1XzY3ODA1
- M18wMTBfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnhtbJ1TXXPaMBB870z/g6rnnG0Z
- 82GKM+MS0jAhIQOmpI+KOcCtsVxJDkl+fc9OaTrNkOn0Vbe3p9vbHRiLJbOZzTHi4yJVu6zYsBn+
- qNBYzlbS0rvv+R54XRBh4ou+6PRF2wn8DmdZYawsUoJ0uj2v3eKs0nnEXVlmrkFricu4d5ogW852
- aLdqFfHPo4Qz+1hSlz7MKTMqiLAXnPgnxDtURYGpzVQR8UvEEuI8u0fO4ooodPYkn0ufpHEch7ML
- ZWzE93gnyxL2WQG52gQr+bgv/H3ru2PSnSOfKo2EMJlF4xRIuy0Maog3WFBvXJdhiXfzug4032qV
- 56jdXs/xnK4TtDl7gJ2BX1+G5sMd0WuHawGBXHkQpIEE2U0lhCL0MQ3DVqu35uwWlvFyDosCSd4V
- rmAxmxzTaDgZj64TGN+QGl7g+CS0EI7odvqB6Hg1VzybwWT6GcZnBPnH+fNxMoKz0c1k+vWqoafe
- Y2pxtoznBD6PF5MELqbz5Dq+Gh3HH1P3Fs6V3ktdL3yjlVUR31pbmmaHspyjvs9SfFV6aUpy8wW1
- aTwgHJ+z0/fvGBv86ddhjrKoSna7y9lEbYj7Db8GROGeDj4AsFWlGwf1mbczDOA187SyG1UnQaMp
- VWHIe29Qt7svhj7AKRi2MkM6eJ0fOt3zQ4IPZLfpJWe1AqgjfpWlWhm1tjAez13hOYT9T6cNZbrF
- g3kjXursnvLbKG7Ka7TwW9CATN3yWiJssmYpA5A0iaQE5VnaqON+M6r4yNKt1JTlqLJr6L0l4cCt
- b/O3wkH3IPFPUEsHCJL3w/NUAgAAawQAAFBLAwQUAAgACAAZqvNQAAAAAAAAAAAAAAAARwAAAExv
- Z0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wNy0xOVQyMS0xNi01MV82NzgwNTNfMDExX0dFVF9kdW1w
- X3BlbmRpbmcueG1sfVLLbtswELwX6D+wPGcZUbb1MKwAqqMkQpTYsOTa7U2WFg5RiWJFKobz9aVd
- 9AEE7pU7M5zZnZk2qIgRpsGIprLqWiH3ZIU/BtSGkro09t11XAccH3hYuHzKvemEMz90KRFSm1JW
- FuL5gTMZUTL0TUSv66FVlLRoXro6ovdJQYk5KgvrfwsrYQc8DMZX7hXnlMw7KbEyopMRfURUEDfi
- FSmJqwqVgcQ6q62ziIoapbV7tKPByvfirfzF+lxqxhglD502ET3grlQKDkJC0+3HdXk8SPcw+s50
- 1bLybejRIrQwqJlEG3QLm3iTw1ri6SesYb3K/gSZZ2nyXEC6POVk3JswzkM28qeeG478EzlerSBb
- 3EN6G1Hk40kVTEKoA8+FcehVEO4CH0ZehZ7n7QKnsovaQp4WCdwmy2zx9eksb7mXbFOyiXMLvovX
- WQEPi7x4jp+Sy/jLMe+6/lD2p4TLvjNdRF+MUfqcQakc+1dR4bvRX1LR6C/Y6/OdOLMVuPn4gZDZ
- vy2aN1jKQZFt25Cs21vtyy0KHLu+65vZJwBSD/35lFPitJoAvFf+JlRueixb2xZja8AW0j79V993
- KPkJUEsHCMy1J8G/AQAA5AIAAFBLAwQUAAgACADkqfNQAAAAAAAAAAAAAAAASwAAAExvZ0ZpbGVz
- L2t1ZHUvdHJhY2UvUkQwMDAzRkY1QjIxM0ItYjUwM2ViYTMtYjU3YS00MjllLWE4NTAtZGEyZTgz
- ZjgwMmM3LnR4dDXLwQqCMBgA4HvQO/wPMHEbWbab1GVkKv2jq0iNGqSu7d+ht0+Czh+f5JJnfJeJ
- vZFCiULxEgBpCJQ8XOw72UgMUngpyAfv8miJ3PSIDEZLz/muoGvRMKCPtwrCP3i3SME3JZNsywAP
- 5x5PuusR6/5a1fpYGd02Cvhit9H8cjNPdr36AlBLBwhmYCO7hAAAAJEAAABQSwECFAAUAAgACAD5
- qfNQVf07dycAAAAoAAAAEgAAAAAAAAAAAAAAAAAAAAAAZGVwbG95bWVudHMvYWN0aXZlUEsBAhQA
- FAAIAAgA+anzULkyFsEyCAAAoxgAADwAAAAAAAAAAAAAAAAAZwAAAGRlcGxveW1lbnRzL2NjODRm
- ZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvbG9nLmxvZ1BLAQIUABQACAAIAO6p
- 81BNPIm1MgAAADkAAAA9AAAAAAAAAAAAAAAAAAMJAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0
- MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L21hbmlmZXN0UEsBAhQAFAAIAAgA+anzUFjArwJn
- AQAAvAIAAD8AAAAAAAAAAAAAAAAAoAkAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5
- NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbFBLAQIUABQACAAIAPmp81BzX3h4nAEAAP0C
- AAAXAAAAAAAAAAAAAAAAAHQLAABkZXBsb3ltZW50cy9sYXRlc3QuanNvblBLAQIUABQAAAAAAOqp
- 81AAAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAFUNAABkZXBsb3ltZW50cy9wZW5kaW5nUEsBAhQA
- FAAIAAgA5KnzUAwFZiRyAAAAjAAAABgAAAAAAAAAAAAAAAAAhg0AAGRlcGxveW1lbnRzL3NldHRp
- bmdzLnhtbFBLAQIUABQACAAIAO2p81B6ITNJ6QQAAO4MAAAcAAAAAAAAAAAAAAAAAD4OAABkZXBs
- b3ltZW50cy90b29scy9kZXBsb3kuY21kUEsBAhQAFAAIAAgA7anzUGkx7v9nAAAAlgAAACQAAAAA
- AAAAAAAAAAAAcRMAAGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRDYWNoZUtleVBLAQIUABQA
- CAAIAOip81D2A3c0TwIAAGYSAAAVAAAAAAAAAAAAAAAAACoUAABMb2dGaWxlcy9ldmVudGxvZy54
- bWxQSwECFAAUAAAAAAAZqvNQAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAC8FgAATG9nRmlsZXMv
- a3VkdS9kZXBsb3ltZW50L1BLAQIUABQACAAIAOSp81D1uTPZ3QAAADgBAABTAAAAAAAAAAAAAAAA
- APMWAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDctMTlUMjEtMTUtMDhfNjc4MDUzXzAwMV9T
- dGFydHVwX1BPU1RfYXBpLXNldHRpbmdzXzBzLnhtbFBLAQIUABQACAAIAOSp81DlPXQBXQIAAD0E
- AABPAAAAAAAAAAAAAAAAAFEYAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDctMTlUMjEtMTUt
- MDhfNjc4MDUzXzAwMl9QT1NUX2FwaS1zZXR0aW5nc18yMDRfMXMueG1sUEsBAhQAFAAIAAgA5anz
- UNbUUvFDAgAAFAQAAFYAAAAAAAAAAAAAAAAAKxsAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0w
- Ny0xOVQyMS0xNS0xMF82NzgwNTNfMDAzX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMu
- eG1sUEsBAhQAFAAIAAgA56nzUIvXcMySAAAAtgAAAEIAAAAAAAAAAAAAAAAA8h0AAExvZ0ZpbGVz
- L2t1ZHUvdHJhY2UvMjAyMC0wNy0xOVQyMS0xNS0xNV82NzgwNTNfMDA0X1NodXRkb3duXzBzLnht
- bFBLAQIUABQACAAIAOqp81BBpTEP5wAAAEYBAABaAAAAAAAAAAAAAAAAAPQeAABMb2dGaWxlcy9r
- dWR1L3RyYWNlLzIwMjAtMDctMTlUMjEtMTUtMjBfNjc4MDUzXzAwMV9TdGFydHVwX0dFVF9hcGkt
- c2V0dGluZ3MtU2NtVHlwZV8wcy54bWxQSwECFAAUAAgACADqqfNQklI3LUUCAAAUBAAAVgAAAAAA
- AAAAAAAAAABjIAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTA3LTE5VDIxLTE1LTIwXzY3ODA1
- M18wMDJfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8xcy54bWxQSwECFAAUAAgACADqqfNQ
- G/ADYcgCAABmBQAASQAAAAAAAAAAAAAAAAAsIwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTA3
- LTE5VDIxLTE1LTIxXzY3ODA1M18wMDNfUE9TVF9kZXBsb3lfMjAyXzFzLnhtbFBLAQIUABQACAAI
- APmp81AVEi3YzQMAAKsLAABRAAAAAAAAAAAAAAAAAGsmAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIw
- MjAtMDctMTlUMjEtMTUtMjFfNjc4MDUzXzAwNF9CYWNrZ3JvdW5kX1BPU1RfZGVwbG95XzI5cy54
- bWxQSwECFAAUAAgACADrqfNQdaRbje4CAADPBgAAWAAAAAAAAAAAAAAAAAC3KgAATG9nRmlsZXMv
- a3VkdS90cmFjZS8yMDIwLTA3LTE5VDIxLTE1LTIxXzY3ODA1M18wMDVfR0VUX2FwaS1kZXBsb3lt
- ZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIAPCp81Cb4/mPbwMAAFoIAABYAAAAAAAA
- AAAAAAAAACsuAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDctMTlUMjEtMTUtMzJfNjc4MDUz
- XzAwNl9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1sUEsBAhQAFAAIAAgA9qnz
- UPzRhF9bAgAAbwQAAFUAAAAAAAAAAAAAAAAAIDIAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0w
- Ny0xOVQyMS0xNS00NF82NzgwNTNfMDA3X0dFVF9hcGktc2V0dGluZ3MtYnJhbmNoXzIwMF8xcy54
- bWxQSwECFAAUAAgACAD2qfNQ0+rWYvgCAADrBgAAWAAAAAAAAAAAAAAAAAD+NAAATG9nRmlsZXMv
- a3VkdS90cmFjZS8yMDIwLTA3LTE5VDIxLTE1LTQ0XzY3ODA1M18wMDhfR0VUX2FwaS1kZXBsb3lt
- ZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIAAeq81CS98PzVAIAAGsEAABVAAAAAAAA
- AAAAAAAAAHw4AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDctMTlUMjEtMTYtMTVfNjc4MDUz
- XzAxMF9HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1sUEsBAhQAFAAIAAgAGarzUMy1
- J8G/AQAA5AIAAEcAAAAAAAAAAAAAAAAAUzsAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wNy0x
- OVQyMS0xNi01MV82NzgwNTNfMDExX0dFVF9kdW1wX3BlbmRpbmcueG1sUEsBAhQAFAAIAAgA5Knz
- UGZgI7uEAAAAkQAAAEsAAAAAAAAAAAAAAAAAhz0AAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvUkQwMDAz
- RkY1QjIxM0ItYjUwM2ViYTMtYjU3YS00MjllLWE4NTAtZGEyZTgzZjgwMmM3LnR4dFBLBQYAAAAA
- GgAaAO4KAACEPgAAAAA=
+ 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
+ dM4WK56IjZy20qxSNWM/EpFDq7PdHmDHkoE4TUFaRLGcXNvSBjfhyAeIyC/fgpvpQ4xM3L+lSt11
+ vbA/xieGC/aPg6v5o8E7xkv5Q4ALNxcRZ2WTuLSAYfRgT+8R7ZnSkSi50+l45Lnh6O3kw5U7cV8H
+ M8vakQRfgbhLShtqxMQ4gOcODJuNJh9YBWfsUyKrCL8q4lXKLIyJRDOcBfPrcQgsIGWuOsDF/Nrz
+ gsAPfJlVL8+BF1H3VS1d03TjODLoyWL/ZVPTGkQLUfCNZYWMZ0ku63C7rV6pMPCabaX2ETnZavVP
+ YtoheZb1bUe2JfaTEJ42MbR3YxENSyNXWbUDC2Hr8fa6wVX+xA9udfC0ceG9uDBGR9LBFpe9l9cT
+ Wo17R6ZhNHqoqdppuXfyK1wqOs7u+hP3fraUkPm/uHfi40GgG1sVfAYmDly0/s69/xavuiiXzssX
+ 3wFQSwcInL2xHEcCAACHEgAAUEsDBBQAAAAAAGYFPlEAAAAAAAAAAAAAAAAZAAAATG9nRmlsZXMv
+ a3VkdS9kZXBsb3ltZW50L1BLAwQUAAgACAAwBT5RAAAAAAAAAAAAAAAAUwAAAExvZ0ZpbGVzL2t1
+ ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS0zMl8xNDk5N2ZfMDAxX1N0YXJ0dXBfUE9TVF9hcGkt
+ c2V0dGluZ3NfMHMueG1sdY9NS8NAEIbvgv9hnHPXbDYxsiEplHoJxra4ofQWlmbVhWQTs5OD/96t
+ UBDB6zzvvB+FJzMBWepNiYr0TMsEr+ZzMZ4QOk3hLLjgjEuW8IbzPI3zRNwnUiJY50m7c5DEqZSP
+ bwjL3JcY6clG3hBZ9+4RBkMfY1fiYa8aBPqagn6+Jkw2ECFkkq3EKkNQ25dWPVeHVqm6PW7q6mnT
+ VPtdiTyw89D8fO9GZxDWtzcAxe/+295oF/qfhh7q8ZL9/4A0fkCI1sUdY9AtsyY7uhzibPDAWLAu
+ oovzX56IK/8GUEsHCFFXTKHeAAAAOQEAAFBLAwQUAAgACAAwBT5RAAAAAAAAAAAAAAAATwAAAExv
+ Z0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS0zMl8xNDk5N2ZfMDAyX1BPU1RfYXBp
+ LXNldHRpbmdzXzIwNF8xcy54bWydU8tu2zAQvBfoP7A8Z2lKluMHrACq4zRG/YIl1+lRj42tQBZV
+ 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
+ GJv8iuyiNRvZIatQN7LWhMhfmO05b+Adwolg0+op/UsHuuDs9SHBZ6JiccVZNyeqgF+XuZJa3huI
+ oth2hEWx/wnENM23eGAs4I0qH+nQ9r7o5gYN/FzbJ/Y84Tmj/UkYQhW6Ywo4gV6V+f4M7Act648s
+ 36aKji5ozT0MObNPJx8AWNGqfdCYiZ1mAGThxO4c/F32nIP+HVBLBwi15rSVPQIAABQEAABQSwME
+ FAAIAAgANAU+UQAAAAAAAAAAAAAAAEIAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDktMzBU
+ MDAtNDEtNDFfMTQ5OTdmXzAwNV9TaHV0ZG93bl8wcy54bWxVi0sOgjAURecm7uHZMcXXj0AJsgYT
+ 3UBDa2wCBelr3L51aHJG5547JPIbUKDZX9ltXyefEtxfmdz6iQycpeIlSuRouMIHYq9FodatZhBi
+ IhunkghtTPtksAVXemlUU8mqYZA3CkvZy++HqYVqZSc6BrNNtPt39on+ElV3Fy0MIoPzOJw4B5d3
+ S2GNPeCSgPPxePgCUEsHCFMisU+UAAAAtwAAAFBLAwQUAAgACAA3BT5RAAAAAAAAAAAAAAAAWgAA
+ AExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS00NV8xNDk5N2ZfMDAxX1N0YXJ0
+ dXBfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzBzLnhtbHWPUUvDMBSF3wX/w/U+L2ta286WZjDm
+ GMVOxRTxrYQ1zkCb1uYW9N8bkYEIvp7v8p17Ckd6BDLUaYGS1ETzCE/6fdaOEFpFPo54xBnP2DWv
+ Oc/jMI+TZbbKEIx1pOzRn4Rxlq1eEeapExio0QROExl7coE89vXnqBF6TW9DK3C/qxHIRwKnc9Fo
+ PIiSMEkX0SJFkNtDI+/Kx0bKqnneVOXtpi4f7gVyz36EAncfpCerur3xr64vLwCK32u2nVbWr3np
+ O6iGk/t/TrrkYYQQrIsrxqCdJ0VmsDnw3gFj3lwE3+K/OL458y9QSwcILxnhWugAAABGAQAAUEsD
+ BBQACAAIADcFPlEAAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTA5LTMw
+ VDAwLTQxLTQ2XzE0OTk3Zl8wMDJfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWyd
+ 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
+ rcU/UEsHCM8nknq/AQAA5QIAAFBLAwQUAAgACAAwBT5RAAAAAAAAAAAAAAAASwAAAExvZ0ZpbGVz
+ L2t1ZHUvdHJhY2UvUkQwMDAzRkY1MUQxMDEtYTM0ZDNhYjctOTZlMi00ZTg3LTg3N2UtYTQwNzY5
+ MzI5NzhkLnR4dDXLMQrCMBQA0F3wDv8AKf0mUmi2okuwtsUE11A0aMC2MfkZvL1FcH48jhwLrAuB
+ BlHud1JwAE1jpBzg4t7ZJWKQ40tCOQZfJkfk50diMDl6LncJQ68NA/oEJyH+Q/CrcF6LinFWMdCH
+ s9UnNVitW3ttWnVsjOo7CbjabTK/3S2z226+UEsHCABnCK6DAAAAkgAAAFBLAQIUABQACAAIAEoF
+ PlFV/Tt3JwAAACgAAAASAAAAAAAAAAAAAAAAAAAAAABkZXBsb3ltZW50cy9hY3RpdmVQSwECFAAU
+ AAgACABJBT5R8qJL7EQIAACyGAAAPAAAAAAAAAAAAAAAAABnAAAAZGVwbG95bWVudHMvY2M4NGZm
+ ZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9sb2cubG9nUEsBAhQAFAAIAAgAOwU+
+ UU08ibUyAAAAOQAAAD0AAAAAAAAAAAAAAAAAFQkAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQw
+ NGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvbWFuaWZlc3RQSwECFAAUAAgACABJBT5RDW8jjGgB
+ AAC8AgAAPwAAAAAAAAAAAAAAAACyCQAAZGVwbG95bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1
+ ZWU4OGMwMWVjNzkyNDJmZmIwNy9zdGF0dXMueG1sUEsBAhQAFAAIAAgASQU+URNqU6ydAQAA/QIA
+ ABcAAAAAAAAAAAAAAAAAhwsAAGRlcGxveW1lbnRzL2xhdGVzdC5qc29uUEsBAhQAFAAAAAAANwU+
+ UQAAAAAAAAAAAAAAABMAAAAAAAAAAAAAAAAAaQ0AAGRlcGxveW1lbnRzL3BlbmRpbmdQSwECFAAU
+ AAgACAAwBT5RDAVmJHIAAACMAAAAGAAAAAAAAAAAAAAAAACaDQAAZGVwbG95bWVudHMvc2V0dGlu
+ Z3MueG1sUEsBAhQAFAAIAAgAOQU+UXohM0npBAAA7gwAABwAAAAAAAAAAAAAAAAAUg4AAGRlcGxv
+ eW1lbnRzL3Rvb2xzL2RlcGxveS5jbWRQSwECFAAUAAgACAA5BT5RKCswaWcAAACWAAAAJAAAAAAA
+ AAAAAAAAAACFEwAAZGVwbG95bWVudHMvdG9vbHMvZGVwbG95bWVudENhY2hlS2V5UEsBAhQAFAAI
+ AAgANQU+UZy9sRxHAgAAhxIAABUAAAAAAAAAAAAAAAAAPhQAAExvZ0ZpbGVzL2V2ZW50bG9nLnht
+ bFBLAQIUABQAAAAAAGYFPlEAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAMgWAABMb2dGaWxlcy9r
+ dWR1L2RlcGxveW1lbnQvUEsBAhQAFAAIAAgAMAU+UVFXTKHeAAAAOQEAAFMAAAAAAAAAAAAAAAAA
+ /xYAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS0zMl8xNDk5N2ZfMDAxX1N0
+ YXJ0dXBfUE9TVF9hcGktc2V0dGluZ3NfMHMueG1sUEsBAhQAFAAIAAgAMAU+UaeJ+h1ZAgAAPAQA
+ AE8AAAAAAAAAAAAAAAAAXhgAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS0z
+ Ml8xNDk5N2ZfMDAyX1BPU1RfYXBpLXNldHRpbmdzXzIwNF8xcy54bWxQSwECFAAUAAgACAAxBT5R
+ jUmaQz4CAAAUBAAAVgAAAAAAAAAAAAAAAAA0GwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTA5
+ LTMwVDAwLTQxLTM0XzE0OTk3Zl8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54
+ bWxQSwECFAAUAAgACAAyBT5Rtea0lT0CAAAUBAAAVgAAAAAAAAAAAAAAAAD2HQAATG9nRmlsZXMv
+ a3VkdS90cmFjZS8yMDIwLTA5LTMwVDAwLTQxLTM3XzE0OTk3Zl8wMDRfR0VUX2FwaS1zZXR0aW5n
+ cy1TY21UeXBlXzIwMF8wcy54bWxQSwECFAAUAAgACAA0BT5RUyKxT5QAAAC3AAAAQgAAAAAAAAAA
+ AAAAAAC3IAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTA5LTMwVDAwLTQxLTQxXzE0OTk3Zl8w
+ MDVfU2h1dGRvd25fMHMueG1sUEsBAhQAFAAIAAgANwU+US8Z4VroAAAARgEAAFoAAAAAAAAAAAAA
+ AAAAuyEAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS00NV8xNDk5N2ZfMDAx
+ X1N0YXJ0dXBfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzBzLnhtbFBLAQIUABQACAAIADcFPlGz
+ jyiTQQIAABYEAABWAAAAAAAAAAAAAAAAACsjAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDkt
+ MzBUMDAtNDEtNDZfMTQ5OTdmXzAwMl9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnht
+ bFBLAQIUABQACAAIADcFPlFBBSHdygIAAGgFAABJAAAAAAAAAAAAAAAAAPAlAABMb2dGaWxlcy9r
+ dWR1L3RyYWNlLzIwMjAtMDktMzBUMDAtNDEtNDZfMTQ5OTdmXzAwM19QT1NUX2RlcGxveV8yMDJf
+ MHMueG1sUEsBAhQAFAAIAAgASgU+UcO/x7bJAwAAqAsAAFEAAAAAAAAAAAAAAAAAMSkAAExvZ0Zp
+ bGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0zMFQwMC00MS00Nl8xNDk5N2ZfMDA0X0JhY2tncm91bmRf
+ UE9TVF9kZXBsb3lfMzRzLnhtbFBLAQIUABQACAAIADcFPlEYtzcW5QIAAM8GAABYAAAAAAAAAAAA
+ AAAAAHktAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDktMzBUMDAtNDEtNDZfMTQ5OTdmXzAw
+ NV9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1sUEsBAhQAFAAIAAgAPAU+UV57
+ ENFmAwAAWwgAAFgAAAAAAAAAAAAAAAAA5DAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0z
+ MFQwMC00MS01N18xNDk5N2ZfMDA2X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54
+ bWxQSwECFAAUAAgACABCBT5RbBnyBD4CAAASBAAAVQAAAAAAAAAAAAAAAADQNAAATG9nRmlsZXMv
+ a3VkdS90cmFjZS8yMDIwLTA5LTMwVDAwLTQyLTA1XzE0OTk3Zl8wMDdfR0VUX2FwaS1zZXR0aW5n
+ cy1icmFuY2hfMjAwXzBzLnhtbFBLAQIUABQACAAIAEQFPlHW0v1HFwMAAEgHAABYAAAAAAAAAAAA
+ AAAAAJE3AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDktMzBUMDAtNDItMDhfMTQ5OTdmXzAw
+ OF9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1sUEsBAhQAFAAIAAgASQU+UfVL
+ lXMcAwAASQcAAFgAAAAAAAAAAAAAAAAALjsAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wOS0z
+ MFQwMC00Mi0xOF8xNDk5N2ZfMDA5X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8xcy54
+ bWxQSwECFAAUAAgACABSBT5RkxRyLDwCAAASBAAAVQAAAAAAAAAAAAAAAADQPgAATG9nRmlsZXMv
+ a3VkdS90cmFjZS8yMDIwLTA5LTMwVDAwLTQyLTM2XzE0OTk3Zl8wMTFfR0VUX2FwaS1zZXR0aW5n
+ cy1icmFuY2hfMjAwXzBzLnhtbFBLAQIUABQACAAIAGYFPlHPJ5J6vwEAAOUCAABHAAAAAAAAAAAA
+ AAAAAI9BAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDktMzBUMDAtNDMtMTJfMTQ5OTdmXzAx
+ Ml9HRVRfZHVtcF9wZW5kaW5nLnhtbFBLAQIUABQACAAIADAFPlEAZwiugwAAAJIAAABLAAAAAAAA
+ AAAAAAAAAMNDAABMb2dGaWxlcy9rdWR1L3RyYWNlL1JEMDAwM0ZGNTFEMTAxLWEzNGQzYWI3LTk2
+ ZTItNGU4Ny04NzdlLWE0MDc2OTMyOTc4ZC50eHRQSwUGAAAAABwAHAD4CwAAv0QAAAAA
headers:
cache-control:
- no-cache
content-disposition:
- - attachment; filename=dump-07-19-21-16-51.zip
+ - attachment; filename=dump-09-30-00-43-12.zip
content-type:
- application/zip
date:
- - Sun, 19 Jul 2020 21:16:51 GMT
+ - Wed, 30 Sep 2020 00:43:11 GMT
expires:
- '-1'
pragma:
@@ -1343,7 +1375,7 @@ interactions:
server:
- Microsoft-IIS/10.0
set-cookie:
- - ARRAffinity=67805356da7fd76f3f23fbfdb764fdb3a0ec1eada561eb233809b1c41da7ac8a;Path=/;HttpOnly;Domain=webapp-win-log4daywn2w3k.scm.azurewebsites.net
+ - ARRAffinity=14997f4c5744dc2dd6f1d030811af84714935ccafad4803799f4ee84048b04b3;Path=/;HttpOnly;Domain=webapp-win-logt5o3bhdrjt.scm.azurewebsites.net
transfer-encoding:
- chunked
x-aspnet-version:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml
index 606f73e0b9e..fc22ff90641 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:17:01Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:46:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:16:59 GMT
+ - Wed, 30 Sep 2020 00:46:22 GMT
expires:
- '-1'
pragma:
@@ -64,8 +64,8 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -81,7 +81,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:59 GMT
+ - Wed, 30 Sep 2020 00:46:22 GMT
expires:
- '-1'
pragma:
@@ -99,7 +99,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -119,15 +119,15 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:17:01Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:46:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -136,7 +136,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:17:00 GMT
+ - Wed, 30 Sep 2020 00:46:22 GMT
expires:
- '-1'
pragma:
@@ -170,8 +170,8 @@ interactions:
ParameterSetName:
- -g -n --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -179,8 +179,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":4791,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_4791","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":3475,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-073_3475","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:
- - Sun, 19 Jul 2020 21:17:11 GMT
+ - Wed, 30 Sep 2020 00:46:31 GMT
expires:
- '-1'
pragma:
@@ -227,8 +227,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -236,8 +236,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":4791,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_4791","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":3475,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-073_3475","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:
- - Sun, 19 Jul 2020 21:17:12 GMT
+ - Wed, 30 Sep 2020 00:46:32 GMT
expires:
- '-1'
pragma:
@@ -269,8 +269,8 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"name": "webapp-linux000003", "type": "Microsoft.Web/sites", "location":
- "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002"}}'''
+ body: '{"name": "webapp-linux000003", "type": "Microsoft.Web/sites", "location":
+ "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002"}}'
headers:
Accept:
- application/json
@@ -287,8 +287,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -304,7 +304,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:12 GMT
+ - Wed, 30 Sep 2020 00:46:32 GMT
expires:
- '-1'
pragma:
@@ -342,8 +342,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -351,8 +351,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":4791,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_4791","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":3475,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-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":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-073_3475","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:
- - Sun, 19 Jul 2020 21:17:14 GMT
+ - Wed, 30 Sep 2020 00:46:33 GMT
expires:
- '-1'
pragma:
@@ -401,8 +401,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -418,7 +418,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:14 GMT
+ - Wed, 30 Sep 2020 00:46:34 GMT
expires:
- '-1'
pragma:
@@ -441,11 +441,11 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002",
+ body: '{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
- "v4.6", "linuxFxVersion": "node|10.16", "appSettings": [], "alwaysOn": true,
+ "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [], "alwaysOn": true,
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
- "httpsOnly": false}}'''
+ "httpsOnly": false}}'
headers:
Accept:
- application/json
@@ -462,8 +462,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -471,20 +471,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:17:19.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":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":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:46:38.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":[{"ipAddress":"Any","action":"Allow","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,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux000003\\$webapp-linux000003","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webapp-linux000003\\$webapp-linux000003","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":"clitest.rg000001","defaultHostName":"webapp-linux000003.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:
- - '5791'
+ - '6050'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:36 GMT
+ - Wed, 30 Sep 2020 00:46:54 GMT
etag:
- - '"1D65E11FCB3B8E0"'
+ - '"1D696C327FB204B"'
expires:
- '-1'
pragma:
@@ -526,8 +526,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -536,12 +536,12 @@ interactions:
body:
string:
@@ -553,7 +553,7 @@ interactions:
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:17:37 GMT
+ - Wed, 30 Sep 2020 00:46:55 GMT
expires:
- '-1'
pragma:
@@ -587,8 +587,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -596,18 +596,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"node|10.16","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3215'
+ - '3651'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:37 GMT
+ - Wed, 30 Sep 2020 00:46:56 GMT
expires:
- '-1'
pragma:
@@ -643,8 +643,8 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -652,16 +652,16 @@ interactions:
response:
body:
string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:17:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux000003\\$webapp-linux000003","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}'
+ US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:46:38.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webapp-linux000003\\$webapp-linux000003","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":"clitest.rg000001","defaultHostName":"webapp-linux000003.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:
- - '5632'
+ - '5890'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:08 GMT
+ - Wed, 30 Sep 2020 00:47:26 GMT
expires:
- '-1'
pragma:
@@ -697,8 +697,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -706,18 +706,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:17:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux000003\\$webapp-linux000003","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:46:38.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webapp-linux000003\\$webapp-linux000003","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":"clitest.rg000001","defaultHostName":"webapp-linux000003.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:
- - '5592'
+ - '5850'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:09 GMT
+ - Wed, 30 Sep 2020 00:47:26 GMT
etag:
- - '"1D65E11FCB3B8E0"'
+ - '"1D696C327FB204B"'
expires:
- '-1'
pragma:
@@ -753,8 +753,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -762,18 +762,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:17:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux000003\\$webapp-linux000003","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:46:38.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webapp-linux000003\\$webapp-linux000003","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":"clitest.rg000001","defaultHostName":"webapp-linux000003.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:
- - '5592'
+ - '5850'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:09 GMT
+ - Wed, 30 Sep 2020 00:47:27 GMT
etag:
- - '"1D65E11FCB3B8E0"'
+ - '"1D696C327FB204B"'
expires:
- '-1'
pragma:
@@ -813,8 +813,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -823,12 +823,12 @@ interactions:
body:
string:
@@ -840,7 +840,7 @@ interactions:
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:18:10 GMT
+ - Wed, 30 Sep 2020 00:47:28 GMT
expires:
- '-1'
pragma:
@@ -874,8 +874,8 @@ interactions:
ParameterSetName:
- -g -n --startup-file
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -883,18 +883,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"node|10.16","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3215'
+ - '3651'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:11 GMT
+ - Wed, 30 Sep 2020 00:47:28 GMT
expires:
- '-1'
pragma:
@@ -921,7 +921,7 @@ interactions:
"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.16", "requestTracingEnabled": false, "remoteDebuggingEnabled": false,
+ "node|10.14", "requestTracingEnabled": false, "remoteDebuggingEnabled": false,
"httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled":
false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess":
true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "process.json",
@@ -950,8 +950,8 @@ interactions:
ParameterSetName:
- -g -n --startup-file
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PATCH
@@ -959,20 +959,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"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":"node|10.16","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3213'
+ - '3649'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:12 GMT
+ - Wed, 30 Sep 2020 00:47:29 GMT
etag:
- - '"1D65E11FCB3B8E0"'
+ - '"1D696C327FB204B"'
expires:
- '-1'
pragma:
@@ -990,7 +990,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -1012,8 +1012,8 @@ interactions:
ParameterSetName:
- -g -n --enable-cd
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1030,7 +1030,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:12 GMT
+ - Wed, 30 Sep 2020 00:47:30 GMT
expires:
- '-1'
pragma:
@@ -1072,8 +1072,8 @@ interactions:
ParameterSetName:
- -g -n --enable-cd
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1090,9 +1090,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:13 GMT
+ - Wed, 30 Sep 2020 00:47:31 GMT
etag:
- - '"1D65E121C63CD95"'
+ - '"1D696C347AB3500"'
expires:
- '-1'
pragma:
@@ -1110,7 +1110,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -1132,8 +1132,8 @@ interactions:
ParameterSetName:
- -g -n --enable-cd
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1150,7 +1150,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:13 GMT
+ - Wed, 30 Sep 2020 00:47:32 GMT
expires:
- '-1'
pragma:
@@ -1188,8 +1188,8 @@ interactions:
ParameterSetName:
- -g -n --enable-cd
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1206,7 +1206,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:14 GMT
+ - Wed, 30 Sep 2020 00:47:33 GMT
expires:
- '-1'
pragma:
@@ -1244,8 +1244,8 @@ interactions:
ParameterSetName:
- -g -n --enable-cd
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1253,7 +1253,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishingcredentials/$webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites/publishingcredentials","location":"East
- US 2","properties":{"name":null,"publishingUserName":"$webapp-linux000003","publishingPassword":"R0kHzYPzrxiZTKag0Eqk18a2FBzsgEeAsux0LteuWGtj2rqtFwci0i1Lo4Kl","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-linux000003:R0kHzYPzrxiZTKag0Eqk18a2FBzsgEeAsux0LteuWGtj2rqtFwci0i1Lo4Kl@webapp-linux000003.scm.azurewebsites.net"}}'
+ US 2","properties":{"name":null,"publishingUserName":"$webapp-linux000003","publishingPassword":"1eMZyKTqALYllB3GzLBwxPjHnWxbows4eTjNk4QK33881bWT6bhMWhtGfjs9","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-linux000003:1eMZyKTqALYllB3GzLBwxPjHnWxbows4eTjNk4QK33881bWT6bhMWhtGfjs9@webapp-linux000003.scm.azurewebsites.net"}}'
headers:
cache-control:
- no-cache
@@ -1262,7 +1262,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:14 GMT
+ - Wed, 30 Sep 2020 00:47:33 GMT
expires:
- '-1'
pragma:
@@ -1280,7 +1280,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -1303,8 +1303,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1321,7 +1321,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:15 GMT
+ - Wed, 30 Sep 2020 00:47:34 GMT
expires:
- '-1'
pragma:
@@ -1367,8 +1367,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1385,9 +1385,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:15 GMT
+ - Wed, 30 Sep 2020 00:47:34 GMT
etag:
- - '"1D65E121E07EDAB"'
+ - '"1D696C349C7E075"'
expires:
- '-1'
pragma:
@@ -1405,7 +1405,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -1428,8 +1428,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1446,7 +1446,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:16 GMT
+ - Wed, 30 Sep 2020 00:47:35 GMT
expires:
- '-1'
pragma:
@@ -1485,8 +1485,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1503,7 +1503,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:16 GMT
+ - Wed, 30 Sep 2020 00:47:35 GMT
expires:
- '-1'
pragma:
@@ -1540,8 +1540,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1549,18 +1549,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:18:16.0266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux000003\\$webapp-linux000003","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ US 2","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:47:35.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":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webapp-linux000003\\$webapp-linux000003","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":"clitest.rg000001","defaultHostName":"webapp-linux000003.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:
- - '5597'
+ - '5850'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:16 GMT
+ - Wed, 30 Sep 2020 00:47:36 GMT
etag:
- - '"1D65E121E07EDAB"'
+ - '"1D696C349C7E075"'
expires:
- '-1'
pragma:
@@ -1597,8 +1597,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1606,18 +1606,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"node|10.16","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3231'
+ - '3667'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:16 GMT
+ - Wed, 30 Sep 2020 00:47:37 GMT
expires:
- '-1'
pragma:
@@ -1656,8 +1656,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1674,7 +1674,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:17 GMT
+ - Wed, 30 Sep 2020 00:47:37 GMT
expires:
- '-1'
pragma:
@@ -1692,7 +1692,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1720,8 +1720,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1738,9 +1738,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:17 GMT
+ - Wed, 30 Sep 2020 00:47:38 GMT
etag:
- - '"1D65E121F4EF9A0"'
+ - '"1D696C34BB12CE0"'
expires:
- '-1'
pragma:
@@ -1758,7 +1758,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -1800,8 +1800,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PATCH
@@ -1809,20 +1809,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3219'
+ - '3655'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:19 GMT
+ - Wed, 30 Sep 2020 00:47:40 GMT
etag:
- - '"1D65E121F4EF9A0"'
+ - '"1D696C34BB12CE0"'
expires:
- '-1'
pragma:
@@ -1840,7 +1840,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1861,8 +1861,8 @@ interactions:
- -g -n --docker-custom-image-name --docker-registry-server-password --docker-registry-server-user
--docker-registry-server-url --enable-app-service-storage
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1870,18 +1870,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3237'
+ - '3673'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:20 GMT
+ - Wed, 30 Sep 2020 00:47:41 GMT
expires:
- '-1'
pragma:
@@ -1919,8 +1919,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1937,7 +1937,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:21 GMT
+ - Wed, 30 Sep 2020 00:47:41 GMT
expires:
- '-1'
pragma:
@@ -1975,8 +1975,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1993,7 +1993,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:21 GMT
+ - Wed, 30 Sep 2020 00:47:41 GMT
expires:
- '-1'
pragma:
@@ -2029,8 +2029,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2038,18 +2038,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3237'
+ - '3673'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:22 GMT
+ - Wed, 30 Sep 2020 00:47:41 GMT
expires:
- '-1'
pragma:
@@ -2085,8 +2085,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2094,18 +2094,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ 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":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3237'
+ - '3673'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:24 GMT
+ - Wed, 30 Sep 2020 00:47:42 GMT
expires:
- '-1'
pragma:
@@ -2143,8 +2143,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2161,7 +2161,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:24 GMT
+ - Wed, 30 Sep 2020 00:47:42 GMT
expires:
- '-1'
pragma:
@@ -2179,7 +2179,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -2199,8 +2199,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2217,7 +2217,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:30 GMT
+ - Wed, 30 Sep 2020 00:47:43 GMT
expires:
- '-1'
pragma:
@@ -2259,8 +2259,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -2277,9 +2277,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:33 GMT
+ - Wed, 30 Sep 2020 00:47:43 GMT
etag:
- - '"1D65E1228529CD5"'
+ - '"1D696C34ECAA1E0"'
expires:
- '-1'
pragma:
@@ -2297,7 +2297,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -2337,8 +2337,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PATCH
@@ -2347,20 +2347,20 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"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":"
- ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3204'
+ - '3640'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:35 GMT
+ - Wed, 30 Sep 2020 00:47:44 GMT
etag:
- - '"1D65E1228529CD5"'
+ - '"1D696C34ECAA1E0"'
expires:
- '-1'
pragma:
@@ -2378,7 +2378,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -2400,8 +2400,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2418,7 +2418,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:36 GMT
+ - Wed, 30 Sep 2020 00:47:45 GMT
expires:
- '-1'
pragma:
@@ -2456,8 +2456,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2474,7 +2474,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:36 GMT
+ - Wed, 30 Sep 2020 00:47:46 GMT
expires:
- '-1'
pragma:
@@ -2514,8 +2514,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -2532,9 +2532,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:36 GMT
+ - Wed, 30 Sep 2020 00:47:46 GMT
etag:
- - '"1D65E122AB8864B"'
+ - '"1D696C350839C80"'
expires:
- '-1'
pragma:
@@ -2574,8 +2574,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2592,7 +2592,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:37 GMT
+ - Wed, 30 Sep 2020 00:47:47 GMT
expires:
- '-1'
pragma:
@@ -2630,8 +2630,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2648,7 +2648,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:37 GMT
+ - Wed, 30 Sep 2020 00:47:47 GMT
expires:
- '-1'
pragma:
@@ -2684,8 +2684,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2694,18 +2694,18 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"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":"
- ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","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":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3222'
+ - '3658'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:38 GMT
+ - Wed, 30 Sep 2020 00:47:47 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml
index 4c7aa82cefc..a21eaf6c2bb 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:16:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:43:44Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:16:12 GMT
+ - Wed, 30 Sep 2020 00:43:44 GMT
expires:
- '-1'
pragma:
@@ -63,8 +63,8 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -80,7 +80,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:11 GMT
+ - Wed, 30 Sep 2020 00:43:46 GMT
expires:
- '-1'
pragma:
@@ -118,15 +118,15 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.0.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - 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.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-07-19T21:16:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:43:44Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -135,7 +135,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 19 Jul 2020 21:16:12 GMT
+ - Wed, 30 Sep 2020 00:43:46 GMT
expires:
- '-1'
pragma:
@@ -168,8 +168,8 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -177,8 +177,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":16526,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_16526","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ West","properties":{"serverFarmId":13408,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_13408","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -187,7 +187,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:26 GMT
+ - Wed, 30 Sep 2020 00:43:59 GMT
expires:
- '-1'
pragma:
@@ -225,8 +225,8 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -234,8 +234,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":16526,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_16526","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ West","properties":{"serverFarmId":13408,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_13408","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -244,7 +244,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:27 GMT
+ - Wed, 30 Sep 2020 00:44:00 GMT
expires:
- '-1'
pragma:
@@ -267,8 +267,8 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"name": "webapp-config-test000002", "type": "Microsoft.Web/sites",
- "location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003"}}'''
+ body: '{"name": "webapp-config-test000002", "type": "Microsoft.Web/sites", "location":
+ "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003"}}'
headers:
Accept:
- application/json
@@ -285,8 +285,8 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -302,7 +302,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:27 GMT
+ - Wed, 30 Sep 2020 00:44:01 GMT
expires:
- '-1'
pragma:
@@ -340,8 +340,8 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -349,8 +349,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":16526,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_16526","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ West","properties":{"serverFarmId":13408,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_13408","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -359,7 +359,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:28 GMT
+ - Wed, 30 Sep 2020 00:44:02 GMT
expires:
- '-1'
pragma:
@@ -399,8 +399,8 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -416,7 +416,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:29 GMT
+ - Wed, 30 Sep 2020 00:44:02 GMT
expires:
- '-1'
pragma:
@@ -439,11 +439,11 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003",
+ body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
"v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}],
"alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped":
- false, "httpsOnly": false}}'''
+ false, "httpsOnly": false}}'
headers:
Accept:
- application/json
@@ -460,8 +460,8 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -469,20 +469,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-JapanWestwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:16:36.5766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-JapanWestwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:44:10.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":[{"ipAddress":"Any","action":"Allow","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,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":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-config-test000002\\$webapp-config-test000002","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":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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-config-test000002\\$webapp-config-test000002","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":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5981'
+ - '6137'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:55 GMT
+ - Wed, 30 Sep 2020 00:44:29 GMT
etag:
- - '"1D65E11E3360BF5"'
+ - '"1D696C2D0274CEB"'
expires:
- '-1'
pragma:
@@ -524,8 +524,8 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -535,19 +535,19 @@ interactions:
string:
@@ -559,7 +559,7 @@ interactions:
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:16:56 GMT
+ - Wed, 30 Sep 2020 00:44:31 GMT
expires:
- '-1'
pragma:
@@ -573,7 +573,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -593,8 +593,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -602,18 +602,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3257'
+ - '3693'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:57 GMT
+ - Wed, 30 Sep 2020 00:44:32 GMT
expires:
- '-1'
pragma:
@@ -651,8 +651,8 @@ interactions:
--python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled
--min-tls-version --ftps-state
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -660,18 +660,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","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","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ 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:
- - '3257'
+ - '3693'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:16:58 GMT
+ - Wed, 30 Sep 2020 00:44:33 GMT
expires:
- '-1'
pragma:
@@ -729,8 +729,8 @@ interactions:
--python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled
--min-tls-version --ftps-state
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PATCH
@@ -738,20 +738,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"Japan
- West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.2","pythonVersion":"3.4","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.2","pythonVersion":"3.4","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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.0","ftpsState":"Disabled","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","scmMinTlsVersion":"1.0","ftpsState":"Disabled","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3243'
+ - '3679'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:00 GMT
+ - Wed, 30 Sep 2020 00:44:36 GMT
etag:
- - '"1D65E11E3360BF5"'
+ - '"1D696C2D0274CEB"'
expires:
- '-1'
pragma:
@@ -789,8 +789,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -798,18 +798,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.2","pythonVersion":"3.4","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.2","pythonVersion":"3.4","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","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.0","ftpsState":"Disabled","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","scmMinTlsVersion":"1.0","ftpsState":"Disabled","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3261'
+ - '3697'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:01 GMT
+ - Wed, 30 Sep 2020 00:44:38 GMT
expires:
- '-1'
pragma:
@@ -847,8 +847,8 @@ interactions:
ParameterSetName:
- -g -n --settings
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -865,7 +865,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:03 GMT
+ - Wed, 30 Sep 2020 00:44:38 GMT
expires:
- '-1'
pragma:
@@ -883,7 +883,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -908,8 +908,8 @@ interactions:
ParameterSetName:
- -g -n --settings
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -926,9 +926,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:04 GMT
+ - Wed, 30 Sep 2020 00:44:40 GMT
etag:
- - '"1D65E11F365510B"'
+ - '"1D696C2E18D574B"'
expires:
- '-1'
pragma:
@@ -946,7 +946,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -968,8 +968,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -986,7 +986,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:05 GMT
+ - Wed, 30 Sep 2020 00:44:42 GMT
expires:
- '-1'
pragma:
@@ -1024,8 +1024,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1042,7 +1042,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:06 GMT
+ - Wed, 30 Sep 2020 00:44:42 GMT
expires:
- '-1'
pragma:
@@ -1080,8 +1080,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1098,7 +1098,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:07 GMT
+ - Wed, 30 Sep 2020 00:44:43 GMT
expires:
- '-1'
pragma:
@@ -1116,7 +1116,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1136,8 +1136,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1154,7 +1154,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:08 GMT
+ - Wed, 30 Sep 2020 00:44:44 GMT
expires:
- '-1'
pragma:
@@ -1195,8 +1195,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1213,9 +1213,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:09 GMT
+ - Wed, 30 Sep 2020 00:44:45 GMT
etag:
- - '"1D65E11F642C175"'
+ - '"1D696C2E4AB602B"'
expires:
- '-1'
pragma:
@@ -1233,7 +1233,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1253,8 +1253,8 @@ interactions:
ParameterSetName:
- -g --webapp-name
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1271,9 +1271,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:10 GMT
+ - Wed, 30 Sep 2020 00:44:47 GMT
etag:
- - '"1D65E11F642C175"'
+ - '"1D696C2E4AB602B"'
expires:
- '-1'
pragma:
@@ -1315,8 +1315,8 @@ interactions:
ParameterSetName:
- -g -n -l --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1332,7 +1332,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:11 GMT
+ - Wed, 30 Sep 2020 00:44:47 GMT
expires:
- '-1'
pragma:
@@ -1376,8 +1376,8 @@ interactions:
ParameterSetName:
- -g -n -l --sku --is-linux
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1385,8 +1385,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":4792,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-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":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_4792","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":9052,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-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":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9052","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
@@ -1395,7 +1395,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:21 GMT
+ - Wed, 30 Sep 2020 00:45:04 GMT
expires:
- '-1'
pragma:
@@ -1433,8 +1433,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1442,8 +1442,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":4792,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-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":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_4792","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":9052,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-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":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9052","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
@@ -1452,7 +1452,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:23 GMT
+ - Wed, 30 Sep 2020 00:45:05 GMT
expires:
- '-1'
pragma:
@@ -1475,8 +1475,8 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"name": "webapp-linux000005", "type": "Microsoft.Web/sites", "location":
- "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004"}}'''
+ body: '{"name": "webapp-linux000005", "type": "Microsoft.Web/sites", "location":
+ "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004"}}'
headers:
Accept:
- application/json
@@ -1493,8 +1493,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1510,7 +1510,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:23 GMT
+ - Wed, 30 Sep 2020 00:45:05 GMT
expires:
- '-1'
pragma:
@@ -1548,8 +1548,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1557,8 +1557,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":4792,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-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":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_4792","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":9052,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-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":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-065_9052","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
@@ -1567,7 +1567,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:24 GMT
+ - Wed, 30 Sep 2020 00:45:07 GMT
expires:
- '-1'
pragma:
@@ -1607,8 +1607,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1624,7 +1624,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:24 GMT
+ - Wed, 30 Sep 2020 00:45:07 GMT
expires:
- '-1'
pragma:
@@ -1647,11 +1647,11 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004",
+ body: '{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
- "v4.6", "linuxFxVersion": "node|10.16", "appSettings": [], "alwaysOn": true,
+ "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [], "alwaysOn": true,
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
- "httpsOnly": false}}'''
+ "httpsOnly": false}}'
headers:
Accept:
- application/json
@@ -1668,8 +1668,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1677,20 +1677,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005","name":"webapp-linux000005","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
- US 2","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUS2webspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.16"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-19T21:17:30.8666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":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":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUS2webspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:45:18.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":[{"ipAddress":"Any","action":"Allow","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,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux000005\\$webapp-linux000005","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"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":"webapp-linux000005\\$webapp-linux000005","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":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5797'
+ - '5921'
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:47 GMT
+ - Wed, 30 Sep 2020 00:45:35 GMT
etag:
- - '"1D65E1203717DC0"'
+ - '"1D696C2F87B65AB"'
expires:
- '-1'
pragma:
@@ -1732,8 +1732,8 @@ interactions:
ParameterSetName:
- -g -n --plan --runtime
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1742,12 +1742,17 @@ interactions:
body:
string:
@@ -1755,11 +1760,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1150'
+ - '1730'
content-type:
- application/xml
date:
- - Sun, 19 Jul 2020 21:17:47 GMT
+ - Wed, 30 Sep 2020 00:45:35 GMT
expires:
- '-1'
pragma:
@@ -1796,8 +1801,8 @@ interactions:
- -g -n --custom-id --storage-type --account-name --share-name --access-key
--mount-path
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1814,7 +1819,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:47 GMT
+ - Wed, 30 Sep 2020 00:45:36 GMT
expires:
- '-1'
pragma:
@@ -1832,7 +1837,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1859,8 +1864,8 @@ interactions:
- -g -n --custom-id --storage-type --account-name --share-name --access-key
--mount-path
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1877,9 +1882,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:48 GMT
+ - Wed, 30 Sep 2020 00:45:37 GMT
etag:
- - '"1D65E120D9B1D60"'
+ - '"1D696C303AC7D35"'
expires:
- '-1'
pragma:
@@ -1919,8 +1924,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1937,7 +1942,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:48 GMT
+ - Wed, 30 Sep 2020 00:45:39 GMT
expires:
- '-1'
pragma:
@@ -1975,8 +1980,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1993,7 +1998,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:49 GMT
+ - Wed, 30 Sep 2020 00:45:39 GMT
expires:
- '-1'
pragma:
@@ -2031,8 +2036,8 @@ interactions:
ParameterSetName:
- -g -n --custom-id --mount-path
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2049,7 +2054,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:50 GMT
+ - Wed, 30 Sep 2020 00:45:40 GMT
expires:
- '-1'
pragma:
@@ -2093,8 +2098,8 @@ interactions:
ParameterSetName:
- -g -n --custom-id --mount-path
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -2111,9 +2116,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:50 GMT
+ - Wed, 30 Sep 2020 00:45:41 GMT
etag:
- - '"1D65E120F73A0EB"'
+ - '"1D696C305E9B600"'
expires:
- '-1'
pragma:
@@ -2131,7 +2136,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -2153,8 +2158,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2171,7 +2176,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:52 GMT
+ - Wed, 30 Sep 2020 00:45:41 GMT
expires:
- '-1'
pragma:
@@ -2209,8 +2214,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2227,7 +2232,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:52 GMT
+ - Wed, 30 Sep 2020 00:45:42 GMT
expires:
- '-1'
pragma:
@@ -2265,8 +2270,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2283,7 +2288,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:54 GMT
+ - Wed, 30 Sep 2020 00:45:42 GMT
expires:
- '-1'
pragma:
@@ -2321,8 +2326,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2339,7 +2344,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:53 GMT
+ - Wed, 30 Sep 2020 00:45:43 GMT
expires:
- '-1'
pragma:
@@ -2377,8 +2382,8 @@ interactions:
ParameterSetName:
- -g -n --custom-id
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2395,7 +2400,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:54 GMT
+ - Wed, 30 Sep 2020 00:45:44 GMT
expires:
- '-1'
pragma:
@@ -2433,8 +2438,8 @@ interactions:
ParameterSetName:
- -g -n --custom-id
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2451,7 +2456,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:55 GMT
+ - Wed, 30 Sep 2020 00:45:44 GMT
expires:
- '-1'
pragma:
@@ -2491,8 +2496,8 @@ interactions:
ParameterSetName:
- -g -n --custom-id
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -2509,9 +2514,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:56 GMT
+ - Wed, 30 Sep 2020 00:45:45 GMT
etag:
- - '"1D65E12120F7475"'
+ - '"1D696C30879548B"'
expires:
- '-1'
pragma:
@@ -2551,8 +2556,8 @@ interactions:
ParameterSetName:
- -t -g -n --settings --slot-settings
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2569,7 +2574,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:55 GMT
+ - Wed, 30 Sep 2020 00:45:46 GMT
expires:
- '-1'
pragma:
@@ -2613,8 +2618,8 @@ interactions:
ParameterSetName:
- -t -g -n --settings --slot-settings
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -2631,9 +2636,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:56 GMT
+ - Wed, 30 Sep 2020 00:45:47 GMT
etag:
- - '"1D65E1212953940"'
+ - '"1D696C309761E15"'
expires:
- '-1'
pragma:
@@ -2651,7 +2656,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -2671,8 +2676,8 @@ interactions:
ParameterSetName:
- -t -g -n --settings --slot-settings
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2689,7 +2694,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:56 GMT
+ - Wed, 30 Sep 2020 00:45:47 GMT
expires:
- '-1'
pragma:
@@ -2729,8 +2734,8 @@ interactions:
ParameterSetName:
- -t -g -n --settings --slot-settings
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -2747,7 +2752,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:56 GMT
+ - Wed, 30 Sep 2020 00:45:47 GMT
expires:
- '-1'
pragma:
@@ -2765,7 +2770,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -2787,8 +2792,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2805,7 +2810,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:57 GMT
+ - Wed, 30 Sep 2020 00:45:48 GMT
expires:
- '-1'
pragma:
@@ -2823,7 +2828,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -2843,8 +2848,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2861,7 +2866,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:57 GMT
+ - Wed, 30 Sep 2020 00:45:48 GMT
expires:
- '-1'
pragma:
@@ -2899,8 +2904,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -2917,7 +2922,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:58 GMT
+ - Wed, 30 Sep 2020 00:45:50 GMT
expires:
- '-1'
pragma:
@@ -2955,8 +2960,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -2973,7 +2978,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:58 GMT
+ - Wed, 30 Sep 2020 00:45:50 GMT
expires:
- '-1'
pragma:
@@ -3014,8 +3019,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -3032,7 +3037,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:59 GMT
+ - Wed, 30 Sep 2020 00:45:50 GMT
expires:
- '-1'
pragma:
@@ -3075,8 +3080,8 @@ interactions:
ParameterSetName:
- -g -n --setting-names
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -3093,9 +3098,9 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:17:59 GMT
+ - Wed, 30 Sep 2020 00:45:51 GMT
etag:
- - '"1D65E1214ACCEA0"'
+ - '"1D696C30BE01935"'
expires:
- '-1'
pragma:
@@ -3135,8 +3140,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -3153,7 +3158,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:00 GMT
+ - Wed, 30 Sep 2020 00:45:51 GMT
expires:
- '-1'
pragma:
@@ -3191,8 +3196,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -3209,7 +3214,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:01 GMT
+ - Wed, 30 Sep 2020 00:45:51 GMT
expires:
- '-1'
pragma:
@@ -3243,8 +3248,8 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -3260,7 +3265,7 @@ interactions:
content-type:
- application/json
date:
- - Sun, 19 Jul 2020 21:18:02 GMT
+ - Wed, 30 Sep 2020 00:45:52 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml
index ac311009abc..4e897f2f25f 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-07-22T05:32:50Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:30:00Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 22 Jul 2020 05:32:57 GMT
+ - Wed, 30 Sep 2020 00:30:00 GMT
expires:
- '-1'
pragma:
@@ -63,8 +63,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -80,7 +80,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:32:58 GMT
+ - Wed, 30 Sep 2020 00:30:02 GMT
expires:
- '-1'
pragma:
@@ -118,15 +118,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-07-22T05:32:50Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:30:00Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -135,7 +135,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 22 Jul 2020 05:32:58 GMT
+ - Wed, 30 Sep 2020 00:30:01 GMT
expires:
- '-1'
pragma:
@@ -168,8 +168,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -177,17 +177,17 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":9255,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"04b0639d-85d8-445a-bada-8da78e50ff30","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_9255","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18495,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18495","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1531'
+ - '1533'
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:10 GMT
+ - Wed, 30 Sep 2020 00:30:15 GMT
expires:
- '-1'
pragma:
@@ -205,7 +205,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -225,8 +225,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -234,17 +234,17 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":9255,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"04b0639d-85d8-445a-bada-8da78e50ff30","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_9255","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18495,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18495","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1531'
+ - '1533'
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:13 GMT
+ - Wed, 30 Sep 2020 00:30:16 GMT
expires:
- '-1'
pragma:
@@ -267,8 +267,8 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"name": "webapp-quick-cd000002", "type": "Microsoft.Web/sites", "location":
- "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003"}}'''
+ body: '{"name": "webapp-quick-cd000002", "type": "Microsoft.Web/sites", "location":
+ "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003"}}'
headers:
Accept:
- application/json
@@ -285,8 +285,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -302,7 +302,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:15 GMT
+ - Wed, 30 Sep 2020 00:30:16 GMT
expires:
- '-1'
pragma:
@@ -320,7 +320,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -340,8 +340,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -349,17 +349,17 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":9255,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"04b0639d-85d8-445a-bada-8da78e50ff30","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_9255","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18495,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18495","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1531'
+ - '1533'
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:17 GMT
+ - Wed, 30 Sep 2020 00:30:17 GMT
expires:
- '-1'
pragma:
@@ -399,8 +399,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -416,7 +416,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:19 GMT
+ - Wed, 30 Sep 2020 00:30:18 GMT
expires:
- '-1'
pragma:
@@ -439,11 +439,11 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003",
+ body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
- "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.15"}],
+ "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}],
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
- "httpsOnly": false}}'''
+ "httpsOnly": false}}'
headers:
Accept:
- application/json
@@ -460,8 +460,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -469,20 +469,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-22T05:33:28.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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:30:26.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":[{"ipAddress":"Any","action":"Allow","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,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5759'
+ - '5863'
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:47 GMT
+ - Wed, 30 Sep 2020 00:30:45 GMT
etag:
- - '"1D65FE9A147D62B"'
+ - '"1D696C0E4D20CEB"'
expires:
- '-1'
pragma:
@@ -520,8 +520,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -529,18 +529,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-07-22T05:33:29.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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}'
+ West","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:30:27.0866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick-cd000002\\$webapp-quick-cd000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5564'
+ - '5668'
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:33:48 GMT
+ - Wed, 30 Sep 2020 00:30:46 GMT
etag:
- - '"1D65FE9A147D62B"'
+ - '"1D696C0E4D20CEB"'
expires:
- '-1'
pragma:
@@ -581,8 +581,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -599,9 +599,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:34:31 GMT
+ - Wed, 30 Sep 2020 00:30:56 GMT
etag:
- - '"1D65FE9C628F540"'
+ - '"1D696C0F65926D5"'
expires:
- '-1'
pragma:
@@ -615,7 +615,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -635,15 +635,15 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan
- West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-07-22T05:35:00.1039196
- https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-07-22_05-34-49Z"}}'
+ West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-09-30T00:31:18.3770517
+ https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-09-30_00-31-07Z"}}'
headers:
cache-control:
- no-cache
@@ -652,9 +652,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:35:06 GMT
+ - Wed, 30 Sep 2020 00:31:29 GMT
etag:
- - '"1D65FE9C628F540"'
+ - '"1D696C0F65926D5"'
expires:
- '-1'
pragma:
@@ -690,8 +690,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01
response:
@@ -706,9 +706,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 22 Jul 2020 05:36:00 GMT
+ - Wed, 30 Sep 2020 00:32:00 GMT
etag:
- - '"1D65FE9C628F540"'
+ - '"1D696C0F65926D5"'
expires:
- '-1'
pragma:
@@ -748,8 +748,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-source-url -r
User-Agent:
- - python/3.7.6 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-web/0.46.0
- Azure-SDK-For-Python AZURECLI/2.9.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -758,19 +758,19 @@ interactions:
body:
string:
@@ -782,7 +782,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 22 Jul 2020 05:36:02 GMT
+ - Wed, 30 Sep 2020 00:32:02 GMT
expires:
- '-1'
pragma:
@@ -796,7 +796,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -824,13 +824,13 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Wed, 22 Jul 2020 05:36:39 GMT
+ - Wed, 30 Sep 2020 00:32:38 GMT
etag:
- W/"1f-5wgfifX1chdI4CmMe+Iov0qAB9Q"
server:
- Microsoft-IIS/10.0
set-cookie:
- - ARRAffinity=7371fedae7a35d85eba8bcdde160ab2346e016065648cd4e5af478e79a9dd7d6;Path=/;HttpOnly;Domain=webapp-quick-cdbv4vl5fqz.azurewebsites.net
+ - ARRAffinity=fee32919d2c92a18a9513bc2956a7bd6178b03d988ba5663272b18c259f8760c;Path=/;HttpOnly;Domain=webapp-quick-cdhfubzjj22.azurewebsites.net
vary:
- Accept-Encoding
x-powered-by:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml
index 32162bd630f..cea6f42339c 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.1.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-08-13T03:38:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:27:52Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 13 Aug 2020 03:38:56 GMT
+ - Wed, 30 Sep 2020 00:27:54 GMT
expires:
- '-1'
pragma:
@@ -63,8 +63,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -80,7 +80,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:38:56 GMT
+ - Wed, 30 Sep 2020 00:27:55 GMT
expires:
- '-1'
pragma:
@@ -118,15 +118,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-resource/10.1.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-08-13T03:38:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-09-30T00:27:52Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -135,7 +135,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 13 Aug 2020 03:38:57 GMT
+ - Wed, 30 Sep 2020 00:27:55 GMT
expires:
- '-1'
pragma:
@@ -168,8 +168,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -177,8 +177,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":10756,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_10756","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18494,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18494","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -187,7 +187,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:12 GMT
+ - Wed, 30 Sep 2020 00:28:10 GMT
expires:
- '-1'
pragma:
@@ -225,8 +225,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -234,8 +234,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":10756,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_10756","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18494,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18494","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -244,7 +244,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:14 GMT
+ - Wed, 30 Sep 2020 00:28:11 GMT
expires:
- '-1'
pragma:
@@ -285,8 +285,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -302,7 +302,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:14 GMT
+ - Wed, 30 Sep 2020 00:28:12 GMT
expires:
- '-1'
pragma:
@@ -340,8 +340,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -349,8 +349,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":10756,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_10756","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18494,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18494","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -359,7 +359,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:15 GMT
+ - Wed, 30 Sep 2020 00:28:12 GMT
expires:
- '-1'
pragma:
@@ -399,8 +399,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -416,7 +416,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:15 GMT
+ - Wed, 30 Sep 2020 00:28:13 GMT
expires:
- '-1'
pragma:
@@ -441,7 +441,7 @@ interactions:
- request:
body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
- "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.15"}],
+ "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}],
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
"httpsOnly": false}}'
headers:
@@ -460,8 +460,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -469,20 +469,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-08-13T03:39:25.6666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:28:21.2333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5639'
+ - '5613'
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:44 GMT
+ - Wed, 30 Sep 2020 00:28:41 GMT
etag:
- - '"1D6712357D13F15"'
+ - '"1D696C09A3D3C80"'
expires:
- '-1'
pragma:
@@ -520,8 +520,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -529,18 +529,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-08-13T03:39:26.5133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
+ West","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:28:21.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000002\\$webapp-quick000002","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5439'
+ - '5408'
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:45 GMT
+ - Wed, 30 Sep 2020 00:28:42 GMT
etag:
- - '"1D6712357D13F15"'
+ - '"1D696C09A3D3C80"'
expires:
- '-1'
pragma:
@@ -581,8 +581,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -601,9 +601,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:47 GMT
+ - Wed, 30 Sep 2020 00:28:43 GMT
etag:
- - '"1D6712357D13F15"'
+ - '"1D696C09A3D3C80"'
expires:
- '-1'
pragma:
@@ -641,8 +641,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -658,7 +658,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:47 GMT
+ - Wed, 30 Sep 2020 00:28:44 GMT
expires:
- '-1'
pragma:
@@ -694,8 +694,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -712,9 +712,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:48 GMT
+ - Wed, 30 Sep 2020 00:28:45 GMT
etag:
- - '"1D67123642E6D8B"'
+ - '"1D696C0A7403AE0"'
expires:
- '-1'
pragma:
@@ -754,8 +754,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -764,17 +764,17 @@ interactions:
body:
string:
@@ -786,7 +786,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 13 Aug 2020 03:39:49 GMT
+ - Wed, 30 Sep 2020 00:28:46 GMT
expires:
- '-1'
pragma:
@@ -800,7 +800,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -822,8 +822,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -831,7 +831,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.15"}}'
+ West","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}'
headers:
cache-control:
- no-cache
@@ -840,7 +840,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:51 GMT
+ - Wed, 30 Sep 2020 00:28:48 GMT
expires:
- '-1'
pragma:
@@ -878,8 +878,8 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -896,7 +896,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:51 GMT
+ - Wed, 30 Sep 2020 00:28:48 GMT
expires:
- '-1'
pragma:
@@ -932,8 +932,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -941,8 +941,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":10756,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_10756","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18494,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18494","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -951,7 +951,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:53 GMT
+ - Wed, 30 Sep 2020 00:28:49 GMT
expires:
- '-1'
pragma:
@@ -992,8 +992,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1009,7 +1009,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:54 GMT
+ - Wed, 30 Sep 2020 00:28:50 GMT
expires:
- '-1'
pragma:
@@ -1047,8 +1047,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1056,8 +1056,8 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","name":"plan-quick000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":10756,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_10756","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":18494,"name":"plan-quick000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-JapanWestwebspace","subscription":"5700fc96-77b4-4f8d-afce-c353d8c443bd","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-011_18494","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -1066,7 +1066,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:55 GMT
+ - Wed, 30 Sep 2020 00:28:51 GMT
expires:
- '-1'
pragma:
@@ -1106,8 +1106,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1123,7 +1123,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:39:56 GMT
+ - Wed, 30 Sep 2020 00:28:51 GMT
expires:
- '-1'
pragma:
@@ -1167,8 +1167,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1176,20 +1176,20 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003","name":"webapp-quick000003","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-08-13T03:40:03.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
+ West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:28:58.9733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5639'
+ - '5613'
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:40:21 GMT
+ - Wed, 30 Sep 2020 00:29:17 GMT
etag:
- - '"1D671236E67D1A0"'
+ - '"1D696C0B0AA9C2B"'
expires:
- '-1'
pragma:
@@ -1227,8 +1227,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1236,18 +1236,18 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/webapp-quick000003","name":"webapp-quick000003","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-08-13T03:40:04.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":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
+ West","properties":{"name":"webapp-quick000003","state":"Running","hostNames":["webapp-quick000003.azurewebsites.net"],"webSpace":"clitest000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-JapanWestwebspace/sites/webapp-quick000003","repositorySiteName":"webapp-quick000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000003.azurewebsites.net","webapp-quick000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/plan-quick000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-09-30T00:28:59.5866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-quick000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5B12E93C19D795D34DF79C449C2C3BAF58329ACBE54CAAF49EDCD93822ACCE8","kind":"app","inboundIpAddress":"104.215.11.176","possibleInboundIpAddresses":"104.215.11.176","ftpUsername":"webapp-quick000003\\$webapp-quick000003","ftpsHostName":"ftps://waws-prod-os1-011.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97","possibleOutboundIpAddresses":"104.215.11.176,104.215.12.60,104.215.10.163,104.215.12.212,104.215.8.97,104.215.12.167,104.215.13.127","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"webapp-quick000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '5434'
+ - '5413'
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:40:24 GMT
+ - Wed, 30 Sep 2020 00:29:18 GMT
etag:
- - '"1D671236E67D1A0"'
+ - '"1D696C0B0AA9C2B"'
expires:
- '-1'
pragma:
@@ -1288,8 +1288,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: PUT
@@ -1308,9 +1308,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:40:25 GMT
+ - Wed, 30 Sep 2020 00:29:20 GMT
etag:
- - '"1D671236E67D1A0"'
+ - '"1D696C0B0AA9C2B"'
expires:
- '-1'
pragma:
@@ -1348,8 +1348,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1365,7 +1365,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:40:25 GMT
+ - Wed, 30 Sep 2020 00:29:20 GMT
expires:
- '-1'
pragma:
@@ -1401,8 +1401,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: GET
@@ -1419,9 +1419,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 13 Aug 2020 03:40:27 GMT
+ - Wed, 30 Sep 2020 00:29:22 GMT
etag:
- - '"1D671237AF551E0"'
+ - '"1D696C0BD117495"'
expires:
- '-1'
pragma:
@@ -1461,8 +1461,8 @@ interactions:
ParameterSetName:
- -g -n --plan --deployment-local-git -r
User-Agent:
- - python/3.7.2 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.9 msrest_azure/0.6.3
- azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.10.1
+ - python/3.6.7 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-web/0.47.0 Azure-SDK-For-Python AZURECLI/2.12.0
accept-language:
- en-US
method: POST
@@ -1471,17 +1471,17 @@ interactions:
body:
string:
@@ -1493,7 +1493,7 @@ interactions:
content-type:
- application/xml
date:
- - Thu, 13 Aug 2020 03:40:28 GMT
+ - Wed, 30 Sep 2020 00:29:23 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py
index 8da0e98760f..5baf798729b 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py
@@ -151,12 +151,12 @@ def test_win_webapp_quick_create_runtime(self, resource_group):
webapp_name_2 = self.create_random_name(prefix='webapp-quick', length=24)
plan = self.create_random_name(prefix='plan-quick', length=24)
self.cmd('appservice plan create -g {} -n {}'.format(resource_group, plan))
- r = self.cmd('webapp create -g {} -n {} --plan {} --deployment-local-git -r "node|10.15"'.format(
+ r = self.cmd('webapp create -g {} -n {} --plan {} --deployment-local-git -r "node|10.14"'.format(
resource_group, webapp_name, plan)).get_output_in_json()
self.assertTrue(r['ftpPublishingUrl'].startswith('ftp://'))
self.cmd('webapp config appsettings list -g {} -n {}'.format(resource_group, webapp_name), checks=[
JMESPathCheck('[0].name', 'WEBSITE_NODE_DEFAULT_VERSION'),
- JMESPathCheck('[0].value', '10.15'),
+ JMESPathCheck('[0].value', '10.14'),
])
r = self.cmd('webapp create -g {} -n {} --plan {} --deployment-local-git -r "DOTNETCORE|3.1"'.format(
resource_group, webapp_name_2, plan)).get_output_in_json()
@@ -167,7 +167,7 @@ def test_win_webapp_quick_create_cd(self, resource_group):
webapp_name = self.create_random_name(prefix='webapp-quick-cd', length=24)
plan = self.create_random_name(prefix='plan-quick', length=24)
self.cmd('appservice plan create -g {} -n {}'.format(resource_group, plan))
- self.cmd('webapp create -g {} -n {} --plan {} --deployment-source-url {} -r "node|10.15"'.format(
+ self.cmd('webapp create -g {} -n {} --plan {} --deployment-source-url {} -r "node|10.14"'.format(
resource_group, webapp_name, plan, TEST_REPO_URL))
# 30 seconds should be enough for the deployment finished(Skipped under playback mode)
time.sleep(30)
@@ -314,7 +314,7 @@ def test_download_win_web_log(self, resource_group):
prefix='webapp-win-log', length=24)
plan = self.create_random_name(prefix='win-log', length=24)
self.cmd('appservice plan create -g {} -n {}'.format(resource_group, plan))
- self.cmd('webapp create -g {} -n {} --plan {} --deployment-source-url {} -r "node|10.15"'.format(
+ self.cmd('webapp create -g {} -n {} --plan {} --deployment-source-url {} -r "node|10.14"'.format(
resource_group, webapp_name, plan, TEST_REPO_URL))
# 30 seconds should be enough for the deployment finished(Skipped under playback mode)
time.sleep(30)
@@ -465,7 +465,7 @@ def test_webapp_config(self, resource_group):
JMESPathCheck('[0].name', '{0}.azurewebsites.net'.format(webapp_name))])
# site azure storage account configurations tests
- runtime = 'node|10.16'
+ runtime = 'node|10.14'
linux_plan = self.create_random_name(
prefix='webapp-linux-plan', length=24)
linux_webapp = self.create_random_name(
@@ -715,7 +715,7 @@ def test_appservice_error_polish(self, resource_group, resource_group2):
class LinuxWebappScenarioTest(ScenarioTest):
@ResourceGroupPreparer(location=LINUX_ASP_LOCATION_WEBAPP)
def test_linux_webapp(self, resource_group):
- runtime = 'node|10.16'
+ runtime = 'node|10.14'
plan = self.create_random_name(prefix='webapp-linux-plan', length=24)
webapp = self.create_random_name(prefix='webapp-linux', length=24)
self.cmd('appservice plan create -g {} -n {} --sku S1 --is-linux' .format(resource_group, plan), checks=[
@@ -895,7 +895,7 @@ class WebappACRScenarioTest(ScenarioTest):
def test_acr_integration(self, resource_group):
plan = self.create_random_name(prefix='acrtestplan', length=24)
webapp = self.create_random_name(prefix='webappacrtest', length=24)
- runtime = 'node|10.16'
+ runtime = 'node|10.14'
acr_registry_name = webapp
self.cmd('acr create --admin-enabled -g {} -n {} --sku Basic'.format(
resource_group, acr_registry_name))