From b45c820fe044af2870c0b69ade5328a8fa259031 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Fri, 25 Feb 2022 21:20:01 +0530
Subject: [PATCH 1/9] Fix #17184 : `Get-AzWebApp` to return SiteConfig details
in the response when requested the WebApps under subscreption
---
src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
index 6d4edf218b75..18ebabf0637f 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
@@ -169,6 +169,7 @@ private void GetBySubscription()
{
foreach(var item in result)
{
+ WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
list.Add(new PSSite(item));
}
}
From a643f8df35ce5e3aefdce9ac1e8a07a07298b468 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Tue, 1 Mar 2022 14:34:07 +0530
Subject: [PATCH 2/9] Revert "Fix #17184 : `Get-AzWebApp` to return SiteConfig
details in the response when requested the WebApps under subscreption"
This reverts commit 96a4d287408760f0838fe13b92015d5411ceaa7f.
---
src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
index 18ebabf0637f..6d4edf218b75 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
@@ -169,7 +169,6 @@ private void GetBySubscription()
{
foreach(var item in result)
{
- WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
list.Add(new PSSite(item));
}
}
From ee3d5bfe748981242d62094b88589623c857f64e Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Fri, 25 Feb 2022 21:20:01 +0530
Subject: [PATCH 3/9] Fix #17184 : `Get-AzWebApp` to return SiteConfig details
in the response when requested the WebApps under subscreption
---
src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
index 6d4edf218b75..18ebabf0637f 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
@@ -169,6 +169,7 @@ private void GetBySubscription()
{
foreach(var item in result)
{
+ WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
list.Add(new PSSite(item));
}
}
From ab4a1a8636f1d41c63f506db69c6bf50ac62aa3a Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Tue, 1 Mar 2022 14:34:07 +0530
Subject: [PATCH 4/9] Revert "Fix #17184 : `Get-AzWebApp` to return SiteConfig
details in the response when requested the WebApps under subscreption"
This reverts commit 96a4d287408760f0838fe13b92015d5411ceaa7f.
---
src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
index 18ebabf0637f..6d4edf218b75 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
@@ -169,7 +169,6 @@ private void GetBySubscription()
{
foreach(var item in result)
{
- WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
list.Add(new PSSite(item));
}
}
From 7b939b23ad65dd8fd2f6d50e0e83b9939e827673 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Tue, 19 Jul 2022 20:25:41 +0530
Subject: [PATCH 5/9] [AppService]: fix #18028- Publish-AzWebapp doesn't handle
relative paths properly
---
.../TestPublishWebAppFromZip.json | 727 ++++++++----------
.../Cmdlets/WebApps/PublishAzureWebApp.cs | 2 +
2 files changed, 337 insertions(+), 392 deletions(-)
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
index 8148640d2ec0..1df365d3e29e 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecc8390d-2832-437b-8c32-a2e74f9b9621"
+ "9676eeb8-a654-488b-9766-760ab3131f11"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -30,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "3c1e2e54-33ec-4d87-92ae-bdaf010e219c"
+ "a4b1bb70-0e7a-412c-8551-12116f1c8068"
],
"x-ms-correlation-request-id": [
- "3c1e2e54-33ec-4d87-92ae-bdaf010e219c"
+ "a4b1bb70-0e7a-412c-8551-12116f1c8068"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175719Z:3c1e2e54-33ec-4d87-92ae-bdaf010e219c"
+ "JIOINDIACENTRAL:20220719T144727Z:a4b1bb70-0e7a-412c-8551-12116f1c8068"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:19 GMT"
+ "Tue, 19 Jul 2022 14:47:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,29 +54,29 @@
"-1"
],
"Content-Length": [
- "55164"
+ "60691"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateGithubAccessTokenForAppserviceCLI\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webAppStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/webAppStacks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functionAppStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/functionAppStacks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/previewStaticSiteWorkflowFile\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/userProvidedFunctionApps\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/builds\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/builds/userProvidedFunctionApps\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"kubeEnvironments\",\r\n \"locations\": [\r\n \"North Central US (Stage)\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/firstPartyApps\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/firstPartyApps/keyVaultSettings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workerApps\",\r\n \"locations\": [\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"containerApps\",\r\n \"locations\": [\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n {\r\n \"applicationId\": \"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c\",\r\n \"roleDefinitionId\": \"39a74f72-b40f-4bdc-b639-562fe2260bf0\"\r\n },\r\n {\r\n \"applicationId\": \"3734c1a4-2bed-4998-a37a-ff1a9e7bf019\",\r\n \"roleDefinitionId\": \"5c779a4f-5cb2-4547-8c41-478d9be8ba90\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateGithubAccessTokenForAppserviceCLI\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webAppStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/webAppStacks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functionAppStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/functionAppStacks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/previewStaticSiteWorkflowFile\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/userProvidedFunctionApps\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/linkedBackends\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/builds/linkedBackends\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/builds\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"staticSites/builds/userProvidedFunctionApps\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"kubeEnvironments\",\r\n \"locations\": [\r\n \"North Central US (Stage)\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Jio India West\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateDeleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Brazil Southeast\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"West US 3\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/firstPartyApps\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/firstPartyApps/keyVaultSettings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway West\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"South Africa West\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workerApps\",\r\n \"locations\": [\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"containerApps\",\r\n \"locations\": [\r\n \"North Central US (Stage)\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customhostnameSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Sweden Central\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-15\",\r\n \"2021-01-01\",\r\n \"2020-12-01\",\r\n \"2020-10-01\",\r\n \"2020-09-01\",\r\n \"2020-06-01\",\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps7531?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNzUzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps4974?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNDk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9658e478-a3b5-4ec7-930a-d9af5097f1dc"
+ "e19e1cf5-d6fd-461f-9419-acbbd1b4ab80"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "5a58cad3-d3f0-46e1-af96-6ff0074e475d"
+ "e3798eba-e668-4dcc-a3fb-bbc87c86018e"
],
"x-ms-correlation-request-id": [
- "5a58cad3-d3f0-46e1-af96-6ff0074e475d"
+ "e3798eba-e668-4dcc-a3fb-bbc87c86018e"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175722Z:5a58cad3-d3f0-46e1-af96-6ff0074e475d"
+ "JIOINDIACENTRAL:20220719T144732Z:e3798eba-e668-4dcc-a3fb-bbc87c86018e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:21 GMT"
+ "Tue, 19 Jul 2022 14:47:32 GMT"
],
"Content-Length": [
"165"
@@ -123,25 +123,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531\",\r\n \"name\": \"ps7531\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974\",\r\n \"name\": \"ps4974\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM4NDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"reserved\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e18a9e2f-ca11-4bc4-b4e8-6f25c3cb7c26"
+ "b96cb65d-97e5-487e-8c0a-4ef321913b2d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
],
"Content-Type": [
@@ -162,7 +162,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bed6e8a4-b94a-455a-8731-0e2b408f9ae3"
+ "ccddd2f2-9e91-4851-acce-f2f8b6727963"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -174,22 +174,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "a19c566e-7792-418b-a0b0-4e3425b2f3fa"
+ "12085bf5-60c2-426a-bdb3-d6de1f74ed77"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175738Z:a19c566e-7792-418b-a0b0-4e3425b2f3fa"
+ "JIOINDIACENTRAL:20220719T144747Z:12085bf5-60c2-426a-bdb3-d6de1f74ed77"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:37 GMT"
+ "Tue, 19 Jul 2022 14:47:47 GMT"
],
"Content-Length": [
- "1416"
+ "1418"
],
"Content-Type": [
"application/json"
@@ -198,25 +198,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842\",\r\n \"name\": \"ps3842\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 9350,\r\n \"name\": \"ps3842\",\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n },\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps7531-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps7531\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-177_9350\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n },\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2021-01-15",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"ps3049\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"ps2910\",\r\n \"type\": \"Site\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
],
"Content-Type": [
@@ -237,7 +237,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "be34e573-0557-4f8c-a351-8d89c8ab75db"
+ "52464739-ae2a-4507-8e6c-b77295b9b2b9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -249,19 +249,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11999"
],
"x-ms-correlation-request-id": [
- "8ed4007c-e265-4152-8820-0bee05736f08"
+ "c7214306-fad5-46c6-b84e-5913b7c706fa"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175740Z:8ed4007c-e265-4152-8820-0bee05736f08"
+ "CENTRALINDIA:20220719T144748Z:c7214306-fad5-46c6-b84e-5913b7c706fa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:40 GMT"
+ "Tue, 19 Jul 2022 14:47:47 GMT"
],
"Content-Length": [
"47"
@@ -277,21 +277,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM4NDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -306,7 +306,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1190c2ff-84ea-47dd-9609-236da96c7e00"
+ "e1ff9ddf-e1d2-4dde-a84d-313392e4498b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -318,22 +318,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11998"
],
"x-ms-correlation-request-id": [
- "7d0c8124-1b29-44ee-a071-20eecd6f0156"
+ "4cd8face-8ebd-41d9-94ce-a543dbf5a392"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175740Z:7d0c8124-1b29-44ee-a071-20eecd6f0156"
+ "CENTRALINDIA:20220719T144748Z:4cd8face-8ebd-41d9-94ce-a543dbf5a392"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:40 GMT"
+ "Tue, 19 Jul 2022 14:47:48 GMT"
],
"Content-Length": [
- "1342"
+ "1344"
],
"Content-Type": [
"application/json"
@@ -342,25 +342,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842\",\r\n \"name\": \"ps3842\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 9350,\r\n \"name\": \"ps3842\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps7531-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps7531\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-177_9350\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM4NDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -375,7 +375,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "57d7440f-4db9-4f44-9da3-a8ae2fb61e4b"
+ "606b1ba8-5f53-4e8b-9ad7-c33d16cba962"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -387,22 +387,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11999"
],
"x-ms-correlation-request-id": [
- "19c87341-c5bc-4ada-b039-f529a63ad3f7"
+ "fd648300-da81-4858-859e-ec8baebe2a7a"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175741Z:19c87341-c5bc-4ada-b039-f529a63ad3f7"
+ "CENTRALINDIA:20220719T144751Z:fd648300-da81-4858-859e-ec8baebe2a7a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:41 GMT"
+ "Tue, 19 Jul 2022 14:47:51 GMT"
],
"Content-Length": [
- "1342"
+ "1344"
],
"Content-Type": [
"application/json"
@@ -411,25 +411,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842\",\r\n \"name\": \"ps3842\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 9350,\r\n \"name\": \"ps3842\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps7531-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps7531\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-177_9350\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM4NDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -444,7 +444,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7dc6232c-5361-41e3-9520-a1dc978a13a4"
+ "cb9cddd6-af20-4220-99a1-5a348da6d845"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -456,22 +456,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11997"
],
"x-ms-correlation-request-id": [
- "12790319-a266-401d-a8f9-d0af1ed5d9ee"
+ "b4400c62-2aba-4691-a162-18a045ceb405"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175741Z:12790319-a266-401d-a8f9-d0af1ed5d9ee"
+ "CENTRALINDIA:20220719T144751Z:b4400c62-2aba-4691-a162-18a045ceb405"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:41 GMT"
+ "Tue, 19 Jul 2022 14:47:50 GMT"
],
"Content-Length": [
- "1342"
+ "1344"
],
"Content-Type": [
"application/json"
@@ -480,25 +480,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842\",\r\n \"name\": \"ps3842\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 9350,\r\n \"name\": \"ps3842\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps7531-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps7531\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-177_9350\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -513,13 +513,13 @@
"gateway"
],
"x-ms-request-id": [
- "34341222-b3ff-49b3-8603-e87a75cdb257"
+ "6c0e3a7d-da76-43c2-ae53-8b2f56320a25"
],
"x-ms-correlation-request-id": [
- "34341222-b3ff-49b3-8603-e87a75cdb257"
+ "6c0e3a7d-da76-43c2-ae53-8b2f56320a25"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175741Z:34341222-b3ff-49b3-8603-e87a75cdb257"
+ "CENTRALINDIA:20220719T144750Z:6c0e3a7d-da76-43c2-ae53-8b2f56320a25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -528,7 +528,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:40 GMT"
+ "Tue, 19 Jul 2022 14:47:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -540,25 +540,25 @@
"204"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps3049' under resource group 'ps7531' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps2910' under resource group 'ps4974' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daf259a-abfe-4d28-88a1-82860ee82b25"
+ "3967b4c0-1e57-4d69-bea9-01f59355384b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -570,13 +570,13 @@
"no-cache"
],
"ETag": [
- "\"1D7C6A526D43FEB\""
+ "\"1D89B7E8B9CF415\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c2d9b5f1-b4c6-4210-9894-cf8b84ec83ea"
+ "c63d09b5-1e77-4de4-a281-4af89405d270"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -588,22 +588,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11999"
],
"x-ms-correlation-request-id": [
- "bb2a8241-8b78-4cbd-8fe8-efc7b54d1847"
+ "e1a55732-dc56-44cf-9024-a00590941a15"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175821Z:bb2a8241-8b78-4cbd-8fe8-efc7b54d1847"
+ "CENTRALINDIA:20220719T144836Z:e1a55732-dc56-44cf-9024-a00590941a15"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:21 GMT"
+ "Tue, 19 Jul 2022 14:48:36 GMT"
],
"Content-Length": [
- "5747"
+ "5945"
],
"Content-Type": [
"application/json"
@@ -612,26 +612,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049\",\r\n \"name\": \"ps3049\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps3049\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps3049.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps7531-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-177.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps7531-WestUSwebspace/sites/ps3049\",\r\n \"repositorySiteName\": \"ps3049\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps3049.azurewebsites.net\",\r\n \"ps3049.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps3049.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps3049.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-10-21T17:57:45.4066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"ps3049\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.56\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.56\",\r\n \"ftpUsername\": \"ps3049\\\\$ps3049\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-177.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.78.93.74,40.78.93.119,40.78.94.159,13.64.195.155,13.64.195.223,13.64.193.139,40.112.243.56\",\r\n \"possibleOutboundIpAddresses\": \"40.78.93.74,40.78.93.119,40.78.94.159,13.64.195.155,13.64.195.223,13.64.193.139,13.64.193.199,13.64.49.75,13.64.62.100,13.64.196.69,13.64.196.89,40.85.153.50,13.64.196.174,13.64.197.23,13.64.199.205,13.83.47.153,13.83.46.13,13.64.62.232,13.83.46.112,13.83.46.127,13.83.46.158,13.83.46.19,13.83.40.163,40.78.49.97,13.83.47.99,13.83.40.63,13.83.49.71,13.83.49.249,13.83.54.97,13.64.56.149,40.112.243.56\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-177\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps7531\",\r\n \"defaultHostName\": \"ps3049.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2910\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2910.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-207.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps4974-WestUSwebspace/sites/ps2910\",\r\n \"repositorySiteName\": \"ps2910\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2910.azurewebsites.net\",\r\n \"ps2910.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2910.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2910.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-19T14:48:01.7933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2910\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.98\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.98\",\r\n \"ftpUsername\": \"ps2910\\\\$ps2910\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-207.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,40.112.243.98\",\r\n \"possibleOutboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,168.62.23.85,104.45.218.86,168.61.4.102,168.61.5.109,138.91.193.216,168.61.7.97,104.210.41.255,168.61.5.129,40.83.255.141,168.61.1.126,168.61.5.130,13.91.3.6,13.91.3.142,13.91.3.239,13.91.6.177,138.91.150.213,13.91.1.59,168.62.214.226,138.91.184.197,40.83.253.255,13.91.4.184,168.62.202.142,13.91.5.2,138.91.184.74,40.112.243.98\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-207\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps4974\",\r\n \"defaultHostName\": \"ps2910.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps7531?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNzUzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps4974?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNDk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -642,16 +642,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-request-id": [
- "1de8bef6-6edf-4d56-916d-23e11ceff9bd"
+ "76d8fbe6-f588-4dc9-8876-8352a0650722"
],
"x-ms-correlation-request-id": [
- "1de8bef6-6edf-4d56-916d-23e11ceff9bd"
+ "76d8fbe6-f588-4dc9-8876-8352a0650722"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175741Z:1de8bef6-6edf-4d56-916d-23e11ceff9bd"
+ "CENTRALINDIA:20220719T144750Z:76d8fbe6-f588-4dc9-8876-8352a0650722"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -660,7 +660,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:57:41 GMT"
+ "Tue, 19 Jul 2022 14:47:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -672,25 +672,25 @@
"165"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531\",\r\n \"name\": \"ps7531\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974\",\r\n \"name\": \"ps4974\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverFarms/ps3842\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverFarms/ps4505\"\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
],
"Content-Type": [
@@ -708,13 +708,13 @@
"no-cache"
],
"ETag": [
- "\"1D7C6A526D43FEB\""
+ "\"1D89B7E8B9CF415\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e5e5195-6977-4ef4-92b6-cf22a77b45ea"
+ "cefc47f9-4306-46eb-a3f3-41c57297fadf"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -729,19 +729,19 @@
"499"
],
"x-ms-correlation-request-id": [
- "0bcd60e3-dbe6-4447-a024-df27d1c997d5"
+ "fe756356-909b-4dbd-a239-ae04d29832f7"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175805Z:0bcd60e3-dbe6-4447-a024-df27d1c997d5"
+ "CENTRALINDIA:20220719T144819Z:fe756356-909b-4dbd-a239-ae04d29832f7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:05 GMT"
+ "Tue, 19 Jul 2022 14:48:19 GMT"
],
"Content-Length": [
- "5942"
+ "6145"
],
"Content-Type": [
"application/json"
@@ -750,25 +750,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049\",\r\n \"name\": \"ps3049\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps3049\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps3049.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps7531-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-177.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps7531-WestUSwebspace/sites/ps3049\",\r\n \"repositorySiteName\": \"ps3049\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps3049.azurewebsites.net\",\r\n \"ps3049.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps3049.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps3049.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/serverfarms/ps3842\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-10-21T17:57:45.33\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"ps3049\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.56\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.56\",\r\n \"ftpUsername\": \"ps3049\\\\$ps3049\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-177.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.78.93.74,40.78.93.119,40.78.94.159,13.64.195.155,13.64.195.223,13.64.193.139,40.112.243.56\",\r\n \"possibleOutboundIpAddresses\": \"40.78.93.74,40.78.93.119,40.78.94.159,13.64.195.155,13.64.195.223,13.64.193.139,13.64.193.199,13.64.49.75,13.64.62.100,13.64.196.69,13.64.196.89,40.85.153.50,13.64.196.174,13.64.197.23,13.64.199.205,13.83.47.153,13.83.46.13,13.64.62.232,13.83.46.112,13.83.46.127,13.83.46.158,13.83.46.19,13.83.40.163,40.78.49.97,13.83.47.99,13.83.40.63,13.83.49.71,13.83.49.249,13.83.54.97,13.64.56.149,40.112.243.56\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-177\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps7531\",\r\n \"defaultHostName\": \"ps3049.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2910\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2910.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-207.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps4974-WestUSwebspace/sites/ps2910\",\r\n \"repositorySiteName\": \"ps2910\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2910.azurewebsites.net\",\r\n \"ps2910.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2910.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2910.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-19T14:48:01.7133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2910\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.98\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.98\",\r\n \"ftpUsername\": \"ps2910\\\\$ps2910\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-207.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,40.112.243.98\",\r\n \"possibleOutboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,168.62.23.85,104.45.218.86,168.61.4.102,168.61.5.109,138.91.193.216,168.61.7.97,104.210.41.255,168.61.5.129,40.83.255.141,168.61.1.126,168.61.5.130,13.91.3.6,13.91.3.142,13.91.3.239,13.91.6.177,138.91.150.213,13.91.1.59,168.62.214.226,138.91.184.197,40.83.253.255,13.91.4.184,168.62.202.142,13.91.5.2,138.91.184.74,40.112.243.98\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-207\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps4974\",\r\n \"defaultHostName\": \"ps2910.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/web?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -783,7 +783,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8435e979-e0f9-4f82-81cc-95d72f4d7b5a"
+ "69d286fc-3715-4515-851d-0354e713ded9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -795,22 +795,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11996"
],
"x-ms-correlation-request-id": [
- "2e7402a9-3c46-479c-966b-cd3f10d0f7c5"
+ "2e81cf33-f08d-4b99-a5d1-0d6b8e4b6d3b"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175806Z:2e7402a9-3c46-479c-966b-cd3f10d0f7c5"
+ "CENTRALINDIA:20220719T144820Z:2e81cf33-f08d-4b99-a5d1-0d6b8e4b6d3b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:05 GMT"
+ "Tue, 19 Jul 2022 14:48:20 GMT"
],
"Content-Length": [
- "3645"
+ "3781"
],
"Content-Type": [
"application/json"
@@ -819,25 +819,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/web\",\r\n \"name\": \"ps3049\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps3049\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2910\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/web?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daf259a-abfe-4d28-88a1-82860ee82b25"
+ "3967b4c0-1e57-4d69-bea9-01f59355384b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -852,7 +852,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a557dd65-03d6-405c-8bbb-d3ddeec8ac76"
+ "935a4866-f89f-448f-8b22-b2503dfa4311"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -864,22 +864,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11998"
],
"x-ms-correlation-request-id": [
- "cf9666ed-7027-41ca-86fe-1e0850ab44d1"
+ "f6a46a79-8af7-4520-866e-0b7b25af7a15"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175822Z:cf9666ed-7027-41ca-86fe-1e0850ab44d1"
+ "CENTRALINDIA:20220719T144837Z:f6a46a79-8af7-4520-866e-0b7b25af7a15"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:21 GMT"
+ "Tue, 19 Jul 2022 14:48:36 GMT"
],
"Content-Length": [
- "3645"
+ "3781"
],
"Content-Type": [
"application/json"
@@ -888,25 +888,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/web\",\r\n \"name\": \"ps3049\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps3049\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2910\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/appsettings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -921,7 +921,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84c13894-0ab0-45be-b18f-dfaed454368d"
+ "10abb056-0c80-4865-a67a-d099e045b319"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -936,16 +936,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "ab23e1df-fc02-40c1-bf7c-980a7f7b2ed0"
+ "b0448f90-1773-4f7e-8328-679976095d66"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175806Z:ab23e1df-fc02-40c1-bf7c-980a7f7b2ed0"
+ "CENTRALINDIA:20220719T144821Z:b0448f90-1773-4f7e-8328-679976095d66"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:06 GMT"
+ "Tue, 19 Jul 2022 14:48:20 GMT"
],
"Content-Length": [
"270"
@@ -957,25 +957,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/appsettings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daf259a-abfe-4d28-88a1-82860ee82b25"
+ "3967b4c0-1e57-4d69-bea9-01f59355384b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -990,7 +990,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "45c6b135-7eab-4d6f-b2d9-fd1f2265e467"
+ "dc3a4b40-ea73-4af8-8518-6735712719fc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1002,19 +1002,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11998"
],
"x-ms-correlation-request-id": [
- "267ab5d2-15b6-45d7-b511-680308e28274"
+ "c5b11711-f23f-41f4-87c9-dc3f445d78b4"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175822Z:267ab5d2-15b6-45d7-b511-680308e28274"
+ "CENTRALINDIA:20220719T144837Z:c5b11711-f23f-41f4-87c9-dc3f445d78b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:21 GMT"
+ "Tue, 19 Jul 2022 14:48:37 GMT"
],
"Content-Length": [
"270"
@@ -1026,25 +1026,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/connectionstrings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -1059,7 +1059,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9175d466-940e-4daa-a8a0-a6776b89d52a"
+ "e92e12cb-b448-42cc-afdf-50d38c3ee323"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1074,16 +1074,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "5a466871-13dc-4879-80c2-4046a7fd7123"
+ "1c0b7f46-a84a-4b6d-a9a9-207746cf9a5c"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175807Z:5a466871-13dc-4879-80c2-4046a7fd7123"
+ "CENTRALINDIA:20220719T144821Z:1c0b7f46-a84a-4b6d-a9a9-207746cf9a5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:06 GMT"
+ "Tue, 19 Jul 2022 14:48:21 GMT"
],
"Content-Length": [
"244"
@@ -1095,25 +1095,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/connectionstrings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daf259a-abfe-4d28-88a1-82860ee82b25"
+ "3967b4c0-1e57-4d69-bea9-01f59355384b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -1128,7 +1128,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18c6f0c5-df2c-4031-ad79-d6bff27414cd"
+ "fb4de440-dbd4-424f-976e-d3d3e9a16bbb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1140,19 +1140,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11997"
],
"x-ms-correlation-request-id": [
- "e882570d-861f-4151-9730-42c10f7ad36c"
+ "94867d91-40be-48c7-b34a-17a979953def"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175823Z:e882570d-861f-4151-9730-42c10f7ad36c"
+ "CENTRALINDIA:20220719T144838Z:94867d91-40be-48c7-b34a-17a979953def"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:22 GMT"
+ "Tue, 19 Jul 2022 14:48:37 GMT"
],
"Content-Length": [
"244"
@@ -1164,25 +1164,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/publishxml?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/publishxml?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9ec88eb-a087-48b9-9ac8-e98dfc373e87"
+ "b1d0e338-b78b-467d-9990-b9c37a8eff16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
],
"Content-Type": [
@@ -1215,19 +1215,19 @@
"11999"
],
"x-ms-request-id": [
- "7a198d95-f4c8-4343-8e02-add465c88dfc"
+ "8230bdcc-90fa-4ef3-ac16-e04295378cad"
],
"x-ms-correlation-request-id": [
- "7a198d95-f4c8-4343-8e02-add465c88dfc"
+ "8230bdcc-90fa-4ef3-ac16-e04295378cad"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175808Z:7a198d95-f4c8-4343-8e02-add465c88dfc"
+ "CENTRALINDIA:20220719T144822Z:8230bdcc-90fa-4ef3-ac16-e04295378cad"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:08 GMT"
+ "Tue, 19 Jul 2022 14:48:21 GMT"
],
"Content-Length": [
"1433"
@@ -1239,25 +1239,25 @@
"-1"
]
},
- "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/publishingcredentials/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL3B1Ymxpc2hpbmdjcmVkZW50aWFscy9saXN0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/publishingcredentials/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL3B1Ymxpc2hpbmdjcmVkZW50aWFscy9saXN0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daf259a-abfe-4d28-88a1-82860ee82b25"
+ "3967b4c0-1e57-4d69-bea9-01f59355384b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -1272,7 +1272,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2bc4a69c-f4cf-4458-82f5-7449cbe97b41"
+ "a74b17a4-87d2-4bda-b014-c960806a16c0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1284,19 +1284,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11999"
],
"x-ms-correlation-request-id": [
- "55773f68-f799-495c-8541-8070a682bf66"
+ "93b92595-7744-4ca8-a94a-6d42fae1cc36"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175808Z:55773f68-f799-495c-8541-8070a682bf66"
+ "CENTRALINDIA:20220719T144824Z:93b92595-7744-4ca8-a94a-6d42fae1cc36"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:08 GMT"
+ "Tue, 19 Jul 2022 14:48:23 GMT"
],
"Content-Length": [
"594"
@@ -1308,25 +1308,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/publishingcredentials/$ps3049\",\r\n \"name\": \"ps3049\",\r\n \"type\": \"Microsoft.Web/sites/publishingcredentials\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": null,\r\n \"publishingUserName\": \"$ps3049\",\r\n \"publishingPassword\": \"4L9wmb71z7lmL1Qy1adJmKKsPbnrxT9ofW5cvgqc5Ho8HWQCu8pcr8CDZG8G\",\r\n \"publishingPasswordHash\": null,\r\n \"publishingPasswordHashSalt\": null,\r\n \"metadata\": null,\r\n \"isDeleted\": false,\r\n \"scmUri\": \"https://$ps3049:4L9wmb71z7lmL1Qy1adJmKKsPbnrxT9ofW5cvgqc5Ho8HWQCu8pcr8CDZG8G@ps3049.scm.azurewebsites.net\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/publishingcredentials/$ps2910\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites/publishingcredentials\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": null,\r\n \"publishingUserName\": \"$ps2910\",\r\n \"publishingPassword\": \"ikMPHLgzE5Tae48znMdbgnlnr67tqZTuxixXREwbJ2bYEWTC1bAC6jnAg0Nk\",\r\n \"publishingPasswordHash\": null,\r\n \"publishingPasswordHashSalt\": null,\r\n \"metadata\": null,\r\n \"isDeleted\": false,\r\n \"scmUri\": \"https://$ps2910:ikMPHLgzE5Tae48znMdbgnlnr67tqZTuxixXREwbJ2bYEWTC1bAC6jnAg0Nk@ps2910.scm.azurewebsites.net\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/azurestorageaccounts/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNzUzMS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczMwNDkvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/azurestorageaccounts/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6daf259a-abfe-4d28-88a1-82860ee82b25"
+ "3967b4c0-1e57-4d69-bea9-01f59355384b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2"
]
},
@@ -1341,7 +1341,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ec93c46b-43df-4793-865e-fb3ed8573c9d"
+ "ee5dbda8-36d7-4579-8b4c-1bb60bdc8224"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1353,19 +1353,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11996"
],
"x-ms-correlation-request-id": [
- "54cab642-fc74-4c7c-8b42-0fab8a631b2c"
+ "4c30fc4f-315c-48f4-b184-1408d318fc3c"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175823Z:54cab642-fc74-4c7c-8b42-0fab8a631b2c"
+ "CENTRALINDIA:20220719T144839Z:4c30fc4f-315c-48f4-b184-1408d318fc3c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:23 GMT"
+ "Tue, 19 Jul 2022 14:48:38 GMT"
],
"Content-Length": [
"241"
@@ -1377,26 +1377,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps7531/providers/Microsoft.Web/sites/ps3049/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps7531?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNzUzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps4974?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNDk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "085280df-9876-4a37-a746-fbfc8a906923"
+ "443341f1-8d11-4904-a6b8-fdc05303e75b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1407,7 +1407,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1416,13 +1416,13 @@
"14999"
],
"x-ms-request-id": [
- "9cfda5bf-c08f-4ed0-886f-7f10052af75e"
+ "b392badb-07b6-49bb-be1a-b8712b5b3257"
],
"x-ms-correlation-request-id": [
- "9cfda5bf-c08f-4ed0-886f-7f10052af75e"
+ "b392badb-07b6-49bb-be1a-b8712b5b3257"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175827Z:9cfda5bf-c08f-4ed0-886f-7f10052af75e"
+ "JIOINDIACENTRAL:20220719T144845Z:b392badb-07b6-49bb-be1a-b8712b5b3257"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1431,7 +1431,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:27 GMT"
+ "Tue, 19 Jul 2022 14:48:44 GMT"
],
"Expires": [
"-1"
@@ -1444,16 +1444,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1464,79 +1464,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "e2369714-d6cf-4107-8380-5e2e07ad8470"
- ],
- "x-ms-correlation-request-id": [
- "e2369714-d6cf-4107-8380-5e2e07ad8470"
- ],
- "x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175843Z:e2369714-d6cf-4107-8380-5e2e07ad8470"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 21 Oct 2021 17:58:42 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.30411.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "ec775f19-818c-48e5-9949-3f052be27561"
+ "26a699ba-2a05-476d-9d5c-030760cb60ff"
],
"x-ms-correlation-request-id": [
- "ec775f19-818c-48e5-9949-3f052be27561"
+ "26a699ba-2a05-476d-9d5c-030760cb60ff"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175858Z:ec775f19-818c-48e5-9949-3f052be27561"
+ "JIOINDIACENTRAL:20220719T144900Z:26a699ba-2a05-476d-9d5c-030760cb60ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1545,7 +1488,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:58:58 GMT"
+ "Tue, 19 Jul 2022 14:49:00 GMT"
],
"Expires": [
"-1"
@@ -1558,16 +1501,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1578,22 +1521,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-request-id": [
- "c27b0be7-e52f-404d-bf39-f94e1754ea7c"
+ "93839cc7-5dce-45da-8817-5e458ff3159b"
],
"x-ms-correlation-request-id": [
- "c27b0be7-e52f-404d-bf39-f94e1754ea7c"
+ "93839cc7-5dce-45da-8817-5e458ff3159b"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175914Z:c27b0be7-e52f-404d-bf39-f94e1754ea7c"
+ "JIOINDIACENTRAL:20220719T144916Z:93839cc7-5dce-45da-8817-5e458ff3159b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1602,7 +1545,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:59:14 GMT"
+ "Tue, 19 Jul 2022 14:49:16 GMT"
],
"Expires": [
"-1"
@@ -1615,16 +1558,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1635,22 +1578,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11996"
],
"x-ms-request-id": [
- "c09dc27e-aae0-4db6-ad13-4fba0631fc12"
+ "e7869b2f-a547-4f54-9a71-950efe35e54a"
],
"x-ms-correlation-request-id": [
- "c09dc27e-aae0-4db6-ad13-4fba0631fc12"
+ "e7869b2f-a547-4f54-9a71-950efe35e54a"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175929Z:c09dc27e-aae0-4db6-ad13-4fba0631fc12"
+ "JIOINDIACENTRAL:20220719T144931Z:e7869b2f-a547-4f54-9a71-950efe35e54a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1659,7 +1602,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:59:29 GMT"
+ "Tue, 19 Jul 2022 14:49:31 GMT"
],
"Expires": [
"-1"
@@ -1672,16 +1615,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1692,22 +1635,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11995"
],
"x-ms-request-id": [
- "336a5fed-49d2-4da5-98a7-684eea2a20ce"
+ "52447af7-f3ce-4e62-8ee9-f2d88dc3288d"
],
"x-ms-correlation-request-id": [
- "336a5fed-49d2-4da5-98a7-684eea2a20ce"
+ "52447af7-f3ce-4e62-8ee9-f2d88dc3288d"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T175945Z:336a5fed-49d2-4da5-98a7-684eea2a20ce"
+ "JIOINDIACENTRAL:20220719T144947Z:52447af7-f3ce-4e62-8ee9-f2d88dc3288d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1716,7 +1659,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:59:44 GMT"
+ "Tue, 19 Jul 2022 14:49:46 GMT"
],
"Expires": [
"-1"
@@ -1729,16 +1672,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1749,22 +1692,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11994"
],
"x-ms-request-id": [
- "96cf3f75-cb35-44ef-8c3a-ce5e4d95a513"
+ "b217ffdd-b3aa-40b1-a9e7-58e16d888e17"
],
"x-ms-correlation-request-id": [
- "96cf3f75-cb35-44ef-8c3a-ce5e4d95a513"
+ "b217ffdd-b3aa-40b1-a9e7-58e16d888e17"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T180000Z:96cf3f75-cb35-44ef-8c3a-ce5e4d95a513"
+ "JIOINDIACENTRAL:20220719T145003Z:b217ffdd-b3aa-40b1-a9e7-58e16d888e17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1773,7 +1716,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 17:59:59 GMT"
+ "Tue, 19 Jul 2022 14:50:03 GMT"
],
"Expires": [
"-1"
@@ -1786,16 +1729,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1806,22 +1749,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11993"
],
"x-ms-request-id": [
- "a145fd66-3307-4a86-b9ef-42e548091292"
+ "4ebd95c7-7932-4a2e-8c0f-cadf74a8a613"
],
"x-ms-correlation-request-id": [
- "a145fd66-3307-4a86-b9ef-42e548091292"
+ "4ebd95c7-7932-4a2e-8c0f-cadf74a8a613"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T180016Z:a145fd66-3307-4a86-b9ef-42e548091292"
+ "JIOINDIACENTRAL:20220719T145018Z:4ebd95c7-7932-4a2e-8c0f-cadf74a8a613"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1773,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 18:00:15 GMT"
+ "Tue, 19 Jul 2022 14:50:17 GMT"
],
"Expires": [
"-1"
@@ -1843,16 +1786,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1863,22 +1806,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11992"
],
"x-ms-request-id": [
- "9329cfd5-ba0d-43eb-aea8-c300d9802fa0"
+ "13864ffd-6621-4e6a-8681-a56631139b73"
],
"x-ms-correlation-request-id": [
- "9329cfd5-ba0d-43eb-aea8-c300d9802fa0"
+ "13864ffd-6621-4e6a-8681-a56631139b73"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T180031Z:9329cfd5-ba0d-43eb-aea8-c300d9802fa0"
+ "JIOINDIACENTRAL:20220719T145034Z:13864ffd-6621-4e6a-8681-a56631139b73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1887,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 18:00:31 GMT"
+ "Tue, 19 Jul 2022 14:50:33 GMT"
],
"Expires": [
"-1"
@@ -1900,16 +1843,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1920,16 +1863,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11991"
],
"x-ms-request-id": [
- "f6965cbb-46e6-4656-8be3-8ce6bacf446a"
+ "92f0014d-0ee8-4c27-98e9-0751f1f4d55c"
],
"x-ms-correlation-request-id": [
- "f6965cbb-46e6-4656-8be3-8ce6bacf446a"
+ "92f0014d-0ee8-4c27-98e9-0751f1f4d55c"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T180047Z:f6965cbb-46e6-4656-8be3-8ce6bacf446a"
+ "JIOINDIACENTRAL:20220719T145049Z:92f0014d-0ee8-4c27-98e9-0751f1f4d55c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1938,7 +1881,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 18:00:47 GMT"
+ "Tue, 19 Jul 2022 14:50:49 GMT"
],
"Expires": [
"-1"
@@ -1951,16 +1894,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MzEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU16RXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30411.01",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.59"
]
},
"ResponseHeaders": {
@@ -1971,16 +1914,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11990"
],
"x-ms-request-id": [
- "695a5547-46a8-46d5-a156-58728ddbce14"
+ "60bf7ba8-5408-4a14-891e-caf1a2df0067"
],
"x-ms-correlation-request-id": [
- "695a5547-46a8-46d5-a156-58728ddbce14"
+ "60bf7ba8-5408-4a14-891e-caf1a2df0067"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20211021T180047Z:695a5547-46a8-46d5-a156-58728ddbce14"
+ "JIOINDIACENTRAL:20220719T145050Z:60bf7ba8-5408-4a14-891e-caf1a2df0067"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1989,7 +1932,7 @@
"nosniff"
],
"Date": [
- "Thu, 21 Oct 2021 18:00:47 GMT"
+ "Tue, 19 Jul 2022 14:50:49 GMT"
],
"Expires": [
"-1"
@@ -2004,9 +1947,9 @@
],
"Names": {
"Test-PublishAzureWebAppFromZip": [
- "ps7531",
- "ps3049",
- "ps3842"
+ "ps4974",
+ "ps2910",
+ "ps4505"
]
},
"Variables": {
diff --git a/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
index 23f2058bc6cc..21bf670fbcc9 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
@@ -74,6 +74,8 @@ public override void ExecuteCmdlet()
Action zipDeployAction = () =>
{
+ if (!Path.IsPathRooted(ArchivePath))
+ ArchivePath = (this.SessionState.Path.CurrentFileSystemLocation).Path + ArchivePath.Split(new string[] { ".." }, StringSplitOptions.None)[1];
using (var s = File.OpenRead(ArchivePath))
{
HttpClient client = new HttpClient();
From e5371fa1e919f51fc5fdd47323affe4d5ef39a24 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Tue, 19 Jul 2022 20:43:18 +0530
Subject: [PATCH 6/9] Updated changelog.md
---
src/Websites/Websites/ChangeLog.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index e44e151c31cb..2c6b73139cee 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -18,7 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
-
+* Fixed `Publish-AzWebapp` to handle relative paths properly [#18028]
## Version 2.11.2
* Updated `Get-AzWebApp` and `Get-AzWebAppSlot` to expose `VirtualNetworkSubnetId` property [#18042]
* Updated `Publish-AzWebApp` to avoid the false positive result when zip deploy is not reachable.
From d75fedd932c7bf1b2dba71ef6d1bd4913feaea24 Mon Sep 17 00:00:00 2001
From: Beisi Zhou
Date: Wed, 20 Jul 2022 11:10:17 +0800
Subject: [PATCH 7/9] Update src/Websites/Websites/ChangeLog.md
---
src/Websites/Websites/ChangeLog.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index 2c6b73139cee..461b598798a1 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -19,6 +19,7 @@
-->
## Upcoming Release
* Fixed `Publish-AzWebapp` to handle relative paths properly [#18028]
+
## Version 2.11.2
* Updated `Get-AzWebApp` and `Get-AzWebAppSlot` to expose `VirtualNetworkSubnetId` property [#18042]
* Updated `Publish-AzWebApp` to avoid the false positive result when zip deploy is not reachable.
From d5af7143e5404c7120803c45b9dad46ef76e3384 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Wed, 20 Jul 2022 16:31:14 +0530
Subject: [PATCH 8/9] Fixed an issue
---
.../TestPublishWebAppFromZip.json | 486 +++++++++---------
.../Cmdlets/WebApps/PublishAzureWebApp.cs | 2 +-
2 files changed, 244 insertions(+), 244 deletions(-)
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
index 1df365d3e29e..9a2da3ef5519 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9676eeb8-a654-488b-9766-760ab3131f11"
+ "b629a8ad-459b-454a-8495-ad4053df4a07"
],
"Accept-Language": [
"en-US"
@@ -30,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "a4b1bb70-0e7a-412c-8551-12116f1c8068"
+ "7751a9fb-4394-415b-8c41-3655b3a20609"
],
"x-ms-correlation-request-id": [
- "a4b1bb70-0e7a-412c-8551-12116f1c8068"
+ "7751a9fb-4394-415b-8c41-3655b3a20609"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144727Z:a4b1bb70-0e7a-412c-8551-12116f1c8068"
+ "CENTRALINDIA:20220720T105629Z:7751a9fb-4394-415b-8c41-3655b3a20609"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:26 GMT"
+ "Wed, 20 Jul 2022 10:56:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -61,13 +61,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps4974?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNDk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps6826?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNjgyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e19e1cf5-d6fd-461f-9419-acbbd1b4ab80"
+ "7ff4bc56-16fe-4546-8d2e-7462b299847e"
],
"Accept-Language": [
"en-US"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "e3798eba-e668-4dcc-a3fb-bbc87c86018e"
+ "ff88ab1e-edc7-4884-b103-75747ef8bc5e"
],
"x-ms-correlation-request-id": [
- "e3798eba-e668-4dcc-a3fb-bbc87c86018e"
+ "ff88ab1e-edc7-4884-b103-75747ef8bc5e"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144732Z:e3798eba-e668-4dcc-a3fb-bbc87c86018e"
+ "CENTRALINDIA:20220720T105634Z:ff88ab1e-edc7-4884-b103-75747ef8bc5e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:32 GMT"
+ "Wed, 20 Jul 2022 10:56:34 GMT"
],
"Content-Length": [
"165"
@@ -123,17 +123,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974\",\r\n \"name\": \"ps4974\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826\",\r\n \"name\": \"ps6826\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"reserved\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b96cb65d-97e5-487e-8c0a-4ef321913b2d"
+ "a52e76ec-a363-4c4f-8007-1b89f3926f50"
],
"Accept-Language": [
"en-US"
@@ -162,7 +162,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ccddd2f2-9e91-4851-acce-f2f8b6727963"
+ "8781b55e-7495-4652-8ebc-5e6a7f3d8f94"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -177,16 +177,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "12085bf5-60c2-426a-bdb3-d6de1f74ed77"
+ "9d1bbb03-153b-45bf-989f-f41a11ab3e8c"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144747Z:12085bf5-60c2-426a-bdb3-d6de1f74ed77"
+ "CENTRALINDIA:20220720T105647Z:9d1bbb03-153b-45bf-989f-f41a11ab3e8c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:47 GMT"
+ "Wed, 20 Jul 2022 10:56:47 GMT"
],
"Content-Length": [
"1418"
@@ -198,17 +198,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n },\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n },\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2021-01-15",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"ps2910\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"ps2270\",\r\n \"type\": \"Site\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -237,7 +237,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52464739-ae2a-4507-8e6c-b77295b9b2b9"
+ "3db03c05-6322-4805-a9b9-eb981ba15a7d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -252,16 +252,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "c7214306-fad5-46c6-b84e-5913b7c706fa"
+ "1434254c-6948-450c-ad1d-4446c3a7f649"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144748Z:c7214306-fad5-46c6-b84e-5913b7c706fa"
+ "JIOINDIAWEST:20220720T105648Z:1434254c-6948-450c-ad1d-4446c3a7f649"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:47 GMT"
+ "Wed, 20 Jul 2022 10:56:47 GMT"
],
"Content-Length": [
"47"
@@ -277,13 +277,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -306,7 +306,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e1ff9ddf-e1d2-4dde-a84d-313392e4498b"
+ "187f1581-3a5e-43f6-a5f7-08887c9ddddd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -321,16 +321,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "4cd8face-8ebd-41d9-94ce-a543dbf5a392"
+ "cb2d3926-3b27-41b7-b4d9-142a9ece01b2"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144748Z:4cd8face-8ebd-41d9-94ce-a543dbf5a392"
+ "JIOINDIAWEST:20220720T105649Z:cb2d3926-3b27-41b7-b4d9-142a9ece01b2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:48 GMT"
+ "Wed, 20 Jul 2022 10:56:48 GMT"
],
"Content-Length": [
"1344"
@@ -342,17 +342,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -375,7 +375,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "606b1ba8-5f53-4e8b-9ad7-c33d16cba962"
+ "337833b9-7bfa-4042-b12c-b9320da9ddd7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -390,16 +390,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fd648300-da81-4858-859e-ec8baebe2a7a"
+ "85f0e158-0cd1-4b2b-b73d-e8099306e98e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144751Z:fd648300-da81-4858-859e-ec8baebe2a7a"
+ "JIOINDIAWEST:20220720T105651Z:85f0e158-0cd1-4b2b-b73d-e8099306e98e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:51 GMT"
+ "Wed, 20 Jul 2022 10:56:50 GMT"
],
"Content-Length": [
"1344"
@@ -411,17 +411,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczQ1MDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -444,7 +444,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cb9cddd6-af20-4220-99a1-5a348da6d845"
+ "6a643ff7-0d6c-495b-beda-de020ee3db62"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -459,16 +459,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "b4400c62-2aba-4691-a162-18a045ceb405"
+ "5a9f1d47-c45a-42d6-8abc-89289cff3ef2"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144751Z:b4400c62-2aba-4691-a162-18a045ceb405"
+ "JIOINDIAWEST:20220720T105652Z:5a9f1d47-c45a-42d6-8abc-89289cff3ef2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:50 GMT"
+ "Wed, 20 Jul 2022 10:56:52 GMT"
],
"Content-Length": [
"1344"
@@ -480,17 +480,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"name\": \"ps4505\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 13299,\r\n \"name\": \"ps4505\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps4974\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-207_13299\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -513,13 +513,13 @@
"gateway"
],
"x-ms-request-id": [
- "6c0e3a7d-da76-43c2-ae53-8b2f56320a25"
+ "b20f8563-15e4-4158-ad2b-40470c383d8c"
],
"x-ms-correlation-request-id": [
- "6c0e3a7d-da76-43c2-ae53-8b2f56320a25"
+ "b20f8563-15e4-4158-ad2b-40470c383d8c"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144750Z:6c0e3a7d-da76-43c2-ae53-8b2f56320a25"
+ "JIOINDIAWEST:20220720T105650Z:b20f8563-15e4-4158-ad2b-40470c383d8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -528,7 +528,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:50 GMT"
+ "Wed, 20 Jul 2022 10:56:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -540,17 +540,17 @@
"204"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps2910' under resource group 'ps4974' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps2270' under resource group 'ps6826' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3967b4c0-1e57-4d69-bea9-01f59355384b"
+ "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
],
"Accept-Language": [
"en-US"
@@ -570,13 +570,13 @@
"no-cache"
],
"ETag": [
- "\"1D89B7E8B9CF415\""
+ "\"1D89C2770AF71B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c63d09b5-1e77-4de4-a281-4af89405d270"
+ "cafb6d8d-1696-4112-bbbd-33d413e9794a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -588,22 +588,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11990"
],
"x-ms-correlation-request-id": [
- "e1a55732-dc56-44cf-9024-a00590941a15"
+ "6548010f-e388-4b90-acbd-46d96b2e34c8"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144836Z:e1a55732-dc56-44cf-9024-a00590941a15"
+ "JIOINDIACENTRAL:20220720T105743Z:6548010f-e388-4b90-acbd-46d96b2e34c8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:36 GMT"
+ "Wed, 20 Jul 2022 10:57:43 GMT"
],
"Content-Length": [
- "5945"
+ "5960"
],
"Content-Type": [
"application/json"
@@ -612,17 +612,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2910\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2910.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-207.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps4974-WestUSwebspace/sites/ps2910\",\r\n \"repositorySiteName\": \"ps2910\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2910.azurewebsites.net\",\r\n \"ps2910.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2910.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2910.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-19T14:48:01.7933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2910\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.98\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.98\",\r\n \"ftpUsername\": \"ps2910\\\\$ps2910\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-207.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,40.112.243.98\",\r\n \"possibleOutboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,168.62.23.85,104.45.218.86,168.61.4.102,168.61.5.109,138.91.193.216,168.61.7.97,104.210.41.255,168.61.5.129,40.83.255.141,168.61.1.126,168.61.5.130,13.91.3.6,13.91.3.142,13.91.3.239,13.91.6.177,138.91.150.213,13.91.1.59,168.62.214.226,138.91.184.197,40.83.253.255,13.91.4.184,168.62.202.142,13.91.5.2,138.91.184.74,40.112.243.98\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-207\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps4974\",\r\n \"defaultHostName\": \"ps2910.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2270\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2270.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-197.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps6826-WestUSwebspace/sites/ps2270\",\r\n \"repositorySiteName\": \"ps2270\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2270.azurewebsites.net\",\r\n \"ps2270.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2270.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2270.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-20T10:57:01.5633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2270\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.66\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.66\",\r\n \"ftpUsername\": \"ps2270\\\\$ps2270\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-197.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,40.112.243.66\",\r\n \"possibleOutboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,138.91.243.158,138.91.251.247,138.91.249.225,138.91.248.210,138.91.248.20,23.99.86.21,138.91.248.132,23.99.86.61,23.99.86.122,138.91.251.255,23.99.86.230,23.99.86.48,23.99.84.6,157.56.167.194,23.99.84.65,23.99.84.85,23.99.84.112,23.99.84.237,104.40.26.248,137.135.49.75,138.91.246.140,138.91.245.60,23.99.84.253,23.99.85.58,40.112.243.66\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-197\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps6826\",\r\n \"defaultHostName\": \"ps2270.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps4974?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNDk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps6826?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNjgyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -645,13 +645,13 @@
"11999"
],
"x-ms-request-id": [
- "76d8fbe6-f588-4dc9-8876-8352a0650722"
+ "89001dd3-1a05-4d6a-a518-7ccc949f4460"
],
"x-ms-correlation-request-id": [
- "76d8fbe6-f588-4dc9-8876-8352a0650722"
+ "89001dd3-1a05-4d6a-a518-7ccc949f4460"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144750Z:76d8fbe6-f588-4dc9-8876-8352a0650722"
+ "JIOINDIAWEST:20220720T105650Z:89001dd3-1a05-4d6a-a518-7ccc949f4460"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -660,7 +660,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:47:50 GMT"
+ "Wed, 20 Jul 2022 10:56:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -672,17 +672,17 @@
"165"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974\",\r\n \"name\": \"ps4974\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826\",\r\n \"name\": \"ps6826\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverFarms/ps4505\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverFarms/ps3443\"\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -708,13 +708,13 @@
"no-cache"
],
"ETag": [
- "\"1D89B7E8B9CF415\""
+ "\"1D89C2770AF71B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cefc47f9-4306-46eb-a3f3-41c57297fadf"
+ "f32f3b3a-4107-4151-8d12-b54742f432fe"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -729,19 +729,19 @@
"499"
],
"x-ms-correlation-request-id": [
- "fe756356-909b-4dbd-a239-ae04d29832f7"
+ "f3dbc6fd-3efe-4c29-ae20-1160833d5aa5"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144819Z:fe756356-909b-4dbd-a239-ae04d29832f7"
+ "JIOINDIAWEST:20220720T105721Z:f3dbc6fd-3efe-4c29-ae20-1160833d5aa5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:19 GMT"
+ "Wed, 20 Jul 2022 10:57:21 GMT"
],
"Content-Length": [
- "6145"
+ "6160"
],
"Content-Type": [
"application/json"
@@ -750,17 +750,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2910\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2910.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps4974-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-207.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps4974-WestUSwebspace/sites/ps2910\",\r\n \"repositorySiteName\": \"ps2910\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2910.azurewebsites.net\",\r\n \"ps2910.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2910.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2910.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/serverfarms/ps4505\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-19T14:48:01.7133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2910\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.98\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.98\",\r\n \"ftpUsername\": \"ps2910\\\\$ps2910\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-207.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,40.112.243.98\",\r\n \"possibleOutboundIpAddresses\": \"138.91.188.91,104.210.40.78,104.210.42.202,104.210.43.242,13.64.112.177,13.91.2.165,168.62.23.85,104.45.218.86,168.61.4.102,168.61.5.109,138.91.193.216,168.61.7.97,104.210.41.255,168.61.5.129,40.83.255.141,168.61.1.126,168.61.5.130,13.91.3.6,13.91.3.142,13.91.3.239,13.91.6.177,138.91.150.213,13.91.1.59,168.62.214.226,138.91.184.197,40.83.253.255,13.91.4.184,168.62.202.142,13.91.5.2,138.91.184.74,40.112.243.98\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-207\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps4974\",\r\n \"defaultHostName\": \"ps2910.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2270\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2270.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-197.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps6826-WestUSwebspace/sites/ps2270\",\r\n \"repositorySiteName\": \"ps2270\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2270.azurewebsites.net\",\r\n \"ps2270.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2270.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2270.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-20T10:57:01.4966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2270\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.66\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.66\",\r\n \"ftpUsername\": \"ps2270\\\\$ps2270\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-197.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,40.112.243.66\",\r\n \"possibleOutboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,138.91.243.158,138.91.251.247,138.91.249.225,138.91.248.210,138.91.248.20,23.99.86.21,138.91.248.132,23.99.86.61,23.99.86.122,138.91.251.255,23.99.86.230,23.99.86.48,23.99.84.6,157.56.167.194,23.99.84.65,23.99.84.85,23.99.84.112,23.99.84.237,104.40.26.248,137.135.49.75,138.91.246.140,138.91.245.60,23.99.84.253,23.99.85.58,40.112.243.66\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-197\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps6826\",\r\n \"defaultHostName\": \"ps2270.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -783,7 +783,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69d286fc-3715-4515-851d-0354e713ded9"
+ "e6cc9876-1ae3-43ce-95a6-3b90f766e175"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -798,16 +798,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "2e81cf33-f08d-4b99-a5d1-0d6b8e4b6d3b"
+ "02d30dd1-41b4-4ce5-ad41-767bb15a3249"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144820Z:2e81cf33-f08d-4b99-a5d1-0d6b8e4b6d3b"
+ "JIOINDIAWEST:20220720T105722Z:02d30dd1-41b4-4ce5-ad41-767bb15a3249"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:20 GMT"
+ "Wed, 20 Jul 2022 10:57:22 GMT"
],
"Content-Length": [
"3781"
@@ -819,17 +819,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2910\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2270\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3967b4c0-1e57-4d69-bea9-01f59355384b"
+ "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
],
"Accept-Language": [
"en-US"
@@ -852,7 +852,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "935a4866-f89f-448f-8b22-b2503dfa4311"
+ "930a599c-6dc8-46a3-a392-9a927582b575"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -864,19 +864,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11989"
],
"x-ms-correlation-request-id": [
- "f6a46a79-8af7-4520-866e-0b7b25af7a15"
+ "b52b2dc4-418d-4283-9bca-14794a02ddd5"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144837Z:f6a46a79-8af7-4520-866e-0b7b25af7a15"
+ "JIOINDIACENTRAL:20220720T105745Z:b52b2dc4-418d-4283-9bca-14794a02ddd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:36 GMT"
+ "Wed, 20 Jul 2022 10:57:44 GMT"
],
"Content-Length": [
"3781"
@@ -888,17 +888,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/web\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2910\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2270\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -921,7 +921,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10abb056-0c80-4865-a67a-d099e045b319"
+ "ef3e7a46-3bef-48a8-8457-3b556a9c04f7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -936,16 +936,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b0448f90-1773-4f7e-8328-679976095d66"
+ "74a717c6-8bc9-48f3-a345-5a7e4691221f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144821Z:b0448f90-1773-4f7e-8328-679976095d66"
+ "JIOINDIAWEST:20220720T105723Z:74a717c6-8bc9-48f3-a345-5a7e4691221f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:20 GMT"
+ "Wed, 20 Jul 2022 10:57:23 GMT"
],
"Content-Length": [
"270"
@@ -957,17 +957,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3967b4c0-1e57-4d69-bea9-01f59355384b"
+ "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
],
"Accept-Language": [
"en-US"
@@ -990,7 +990,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dc3a4b40-ea73-4af8-8518-6735712719fc"
+ "95ae7582-5245-4f11-8028-bf766601e0d3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1005,16 +1005,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "c5b11711-f23f-41f4-87c9-dc3f445d78b4"
+ "9a232c59-d424-4070-bd8d-99fc1085b344"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144837Z:c5b11711-f23f-41f4-87c9-dc3f445d78b4"
+ "JIOINDIACENTRAL:20220720T105746Z:9a232c59-d424-4070-bd8d-99fc1085b344"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:37 GMT"
+ "Wed, 20 Jul 2022 10:57:45 GMT"
],
"Content-Length": [
"270"
@@ -1026,17 +1026,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -1059,7 +1059,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e92e12cb-b448-42cc-afdf-50d38c3ee323"
+ "6c1224a4-9f9d-467c-9a65-e21bb6e85880"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1074,16 +1074,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1c0b7f46-a84a-4b6d-a9a9-207746cf9a5c"
+ "a67387d2-6cb2-4317-8f82-3698e49f8c47"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144821Z:1c0b7f46-a84a-4b6d-a9a9-207746cf9a5c"
+ "JIOINDIAWEST:20220720T105724Z:a67387d2-6cb2-4317-8f82-3698e49f8c47"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:21 GMT"
+ "Wed, 20 Jul 2022 10:57:24 GMT"
],
"Content-Length": [
"244"
@@ -1095,17 +1095,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3967b4c0-1e57-4d69-bea9-01f59355384b"
+ "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
],
"Accept-Language": [
"en-US"
@@ -1128,7 +1128,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fb4de440-dbd4-424f-976e-d3d3e9a16bbb"
+ "3d14a74c-613e-410d-a32c-4dd024a109a3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1143,16 +1143,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "94867d91-40be-48c7-b34a-17a979953def"
+ "a1538def-4e61-45c3-8e51-578208b72705"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144838Z:94867d91-40be-48c7-b34a-17a979953def"
+ "JIOINDIACENTRAL:20220720T105746Z:a1538def-4e61-45c3-8e51-578208b72705"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:37 GMT"
+ "Wed, 20 Jul 2022 10:57:45 GMT"
],
"Content-Length": [
"244"
@@ -1164,17 +1164,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/publishxml?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/publishxml?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1d0e338-b78b-467d-9990-b9c37a8eff16"
+ "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
],
"Accept-Language": [
"en-US"
@@ -1215,19 +1215,19 @@
"11999"
],
"x-ms-request-id": [
- "8230bdcc-90fa-4ef3-ac16-e04295378cad"
+ "8347e7f7-f96f-4705-8b0e-8ea661a554ac"
],
"x-ms-correlation-request-id": [
- "8230bdcc-90fa-4ef3-ac16-e04295378cad"
+ "8347e7f7-f96f-4705-8b0e-8ea661a554ac"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144822Z:8230bdcc-90fa-4ef3-ac16-e04295378cad"
+ "JIOINDIAWEST:20220720T105725Z:8347e7f7-f96f-4705-8b0e-8ea661a554ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:21 GMT"
+ "Wed, 20 Jul 2022 10:57:25 GMT"
],
"Content-Length": [
"1433"
@@ -1239,17 +1239,17 @@
"-1"
]
},
- "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/publishingcredentials/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL3B1Ymxpc2hpbmdjcmVkZW50aWFscy9saXN0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/publishingcredentials/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL3B1Ymxpc2hpbmdjcmVkZW50aWFscy9saXN0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3967b4c0-1e57-4d69-bea9-01f59355384b"
+ "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
],
"Accept-Language": [
"en-US"
@@ -1272,7 +1272,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a74b17a4-87d2-4bda-b014-c960806a16c0"
+ "287efecb-d748-49ff-a620-b14771d973cf"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1287,16 +1287,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "93b92595-7744-4ca8-a94a-6d42fae1cc36"
+ "66236864-7751-4f9e-bee9-d802176c5d6f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144824Z:93b92595-7744-4ca8-a94a-6d42fae1cc36"
+ "JIOINDIACENTRAL:20220720T105727Z:66236864-7751-4f9e-bee9-d802176c5d6f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:23 GMT"
+ "Wed, 20 Jul 2022 10:57:26 GMT"
],
"Content-Length": [
"594"
@@ -1308,17 +1308,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/publishingcredentials/$ps2910\",\r\n \"name\": \"ps2910\",\r\n \"type\": \"Microsoft.Web/sites/publishingcredentials\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": null,\r\n \"publishingUserName\": \"$ps2910\",\r\n \"publishingPassword\": \"ikMPHLgzE5Tae48znMdbgnlnr67tqZTuxixXREwbJ2bYEWTC1bAC6jnAg0Nk\",\r\n \"publishingPasswordHash\": null,\r\n \"publishingPasswordHashSalt\": null,\r\n \"metadata\": null,\r\n \"isDeleted\": false,\r\n \"scmUri\": \"https://$ps2910:ikMPHLgzE5Tae48znMdbgnlnr67tqZTuxixXREwbJ2bYEWTC1bAC6jnAg0Nk@ps2910.scm.azurewebsites.net\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/publishingcredentials/$ps2270\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites/publishingcredentials\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": null,\r\n \"publishingUserName\": \"$ps2270\",\r\n \"publishingPassword\": \"CqxiQ3cjoPt0fuenoqZYTqbqv0DfGnbfnCccHT4Fnu8co9wrd2CEgCevJfEm\",\r\n \"publishingPasswordHash\": null,\r\n \"publishingPasswordHashSalt\": null,\r\n \"metadata\": null,\r\n \"isDeleted\": false,\r\n \"scmUri\": \"https://$ps2270:CqxiQ3cjoPt0fuenoqZYTqbqv0DfGnbfnCccHT4Fnu8co9wrd2CEgCevJfEm@ps2270.scm.azurewebsites.net\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/azurestorageaccounts/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNDk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI5MTAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/azurestorageaccounts/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3967b4c0-1e57-4d69-bea9-01f59355384b"
+ "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
],
"Accept-Language": [
"en-US"
@@ -1341,7 +1341,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ee5dbda8-36d7-4579-8b4c-1bb60bdc8224"
+ "98596da9-ff3d-428b-a7ec-d9c507f6c657"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1356,16 +1356,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4c30fc4f-315c-48f4-b184-1408d318fc3c"
+ "772ebcd8-7138-4780-b688-315b578ed05a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220719T144839Z:4c30fc4f-315c-48f4-b184-1408d318fc3c"
+ "JIOINDIACENTRAL:20220720T105747Z:772ebcd8-7138-4780-b688-315b578ed05a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:38 GMT"
+ "Wed, 20 Jul 2022 10:57:46 GMT"
],
"Content-Length": [
"241"
@@ -1377,17 +1377,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps4974/providers/Microsoft.Web/sites/ps2910/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps4974?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNDk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps6826?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNjgyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "443341f1-8d11-4904-a6b8-fdc05303e75b"
+ "905aaf8a-cf2f-42f4-b0c4-b3494d613fad"
],
"Accept-Language": [
"en-US"
@@ -1407,7 +1407,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1416,13 +1416,13 @@
"14999"
],
"x-ms-request-id": [
- "b392badb-07b6-49bb-be1a-b8712b5b3257"
+ "950749a7-7f1f-4cfc-a7e3-a5f233b18a4f"
],
"x-ms-correlation-request-id": [
- "b392badb-07b6-49bb-be1a-b8712b5b3257"
+ "950749a7-7f1f-4cfc-a7e3-a5f233b18a4f"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144845Z:b392badb-07b6-49bb-be1a-b8712b5b3257"
+ "CENTRALINDIA:20220720T105755Z:950749a7-7f1f-4cfc-a7e3-a5f233b18a4f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1431,7 +1431,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:48:44 GMT"
+ "Wed, 20 Jul 2022 10:57:55 GMT"
],
"Expires": [
"-1"
@@ -1444,8 +1444,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1464,22 +1464,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-request-id": [
- "26a699ba-2a05-476d-9d5c-030760cb60ff"
+ "da8c5543-932f-4526-bf82-ef2d873c6bcc"
],
"x-ms-correlation-request-id": [
- "26a699ba-2a05-476d-9d5c-030760cb60ff"
+ "da8c5543-932f-4526-bf82-ef2d873c6bcc"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144900Z:26a699ba-2a05-476d-9d5c-030760cb60ff"
+ "CENTRALINDIA:20220720T105810Z:da8c5543-932f-4526-bf82-ef2d873c6bcc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1488,7 +1488,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:49:00 GMT"
+ "Wed, 20 Jul 2022 10:58:10 GMT"
],
"Expires": [
"-1"
@@ -1501,8 +1501,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1521,22 +1521,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-request-id": [
- "93839cc7-5dce-45da-8817-5e458ff3159b"
+ "8aaa9969-06f8-4b62-b5af-b477a66f6831"
],
"x-ms-correlation-request-id": [
- "93839cc7-5dce-45da-8817-5e458ff3159b"
+ "8aaa9969-06f8-4b62-b5af-b477a66f6831"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144916Z:93839cc7-5dce-45da-8817-5e458ff3159b"
+ "CENTRALINDIA:20220720T105826Z:8aaa9969-06f8-4b62-b5af-b477a66f6831"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1545,7 +1545,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:49:16 GMT"
+ "Wed, 20 Jul 2022 10:58:25 GMT"
],
"Expires": [
"-1"
@@ -1558,8 +1558,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1578,22 +1578,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-request-id": [
- "e7869b2f-a547-4f54-9a71-950efe35e54a"
+ "f089ce64-030c-49cb-88ca-33e157c544df"
],
"x-ms-correlation-request-id": [
- "e7869b2f-a547-4f54-9a71-950efe35e54a"
+ "f089ce64-030c-49cb-88ca-33e157c544df"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144931Z:e7869b2f-a547-4f54-9a71-950efe35e54a"
+ "CENTRALINDIA:20220720T105841Z:f089ce64-030c-49cb-88ca-33e157c544df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1602,7 +1602,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:49:31 GMT"
+ "Wed, 20 Jul 2022 10:58:41 GMT"
],
"Expires": [
"-1"
@@ -1615,8 +1615,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1635,22 +1635,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-request-id": [
- "52447af7-f3ce-4e62-8ee9-f2d88dc3288d"
+ "e41171b0-4660-4def-b395-0fd455addaa1"
],
"x-ms-correlation-request-id": [
- "52447af7-f3ce-4e62-8ee9-f2d88dc3288d"
+ "e41171b0-4660-4def-b395-0fd455addaa1"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T144947Z:52447af7-f3ce-4e62-8ee9-f2d88dc3288d"
+ "CENTRALINDIA:20220720T105857Z:e41171b0-4660-4def-b395-0fd455addaa1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1659,7 +1659,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:49:46 GMT"
+ "Wed, 20 Jul 2022 10:58:57 GMT"
],
"Expires": [
"-1"
@@ -1672,8 +1672,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1692,22 +1692,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-request-id": [
- "b217ffdd-b3aa-40b1-a9e7-58e16d888e17"
+ "91df82a5-10d2-467e-8de9-4db4fd06e35d"
],
"x-ms-correlation-request-id": [
- "b217ffdd-b3aa-40b1-a9e7-58e16d888e17"
+ "91df82a5-10d2-467e-8de9-4db4fd06e35d"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T145003Z:b217ffdd-b3aa-40b1-a9e7-58e16d888e17"
+ "CENTRALINDIA:20220720T105912Z:91df82a5-10d2-467e-8de9-4db4fd06e35d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1716,7 +1716,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:50:03 GMT"
+ "Wed, 20 Jul 2022 10:59:12 GMT"
],
"Expires": [
"-1"
@@ -1729,8 +1729,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1749,22 +1749,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-request-id": [
- "4ebd95c7-7932-4a2e-8c0f-cadf74a8a613"
+ "7676bbd4-306b-4c92-8d8d-b29132cc9ebe"
],
"x-ms-correlation-request-id": [
- "4ebd95c7-7932-4a2e-8c0f-cadf74a8a613"
+ "7676bbd4-306b-4c92-8d8d-b29132cc9ebe"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T145018Z:4ebd95c7-7932-4a2e-8c0f-cadf74a8a613"
+ "CENTRALINDIA:20220720T105928Z:7676bbd4-306b-4c92-8d8d-b29132cc9ebe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1773,7 +1773,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:50:17 GMT"
+ "Wed, 20 Jul 2022 10:59:27 GMT"
],
"Expires": [
"-1"
@@ -1786,8 +1786,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1806,22 +1806,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-request-id": [
- "13864ffd-6621-4e6a-8681-a56631139b73"
+ "0d85f291-4dd9-42a3-ace9-f9478d3b7bc6"
],
"x-ms-correlation-request-id": [
- "13864ffd-6621-4e6a-8681-a56631139b73"
+ "0d85f291-4dd9-42a3-ace9-f9478d3b7bc6"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T145034Z:13864ffd-6621-4e6a-8681-a56631139b73"
+ "CENTRALINDIA:20220720T105943Z:0d85f291-4dd9-42a3-ace9-f9478d3b7bc6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:50:33 GMT"
+ "Wed, 20 Jul 2022 10:59:43 GMT"
],
"Expires": [
"-1"
@@ -1843,8 +1843,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1863,16 +1863,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-request-id": [
- "92f0014d-0ee8-4c27-98e9-0751f1f4d55c"
+ "e7ad0cb6-761a-4882-833a-d8c7953a6b9c"
],
"x-ms-correlation-request-id": [
- "92f0014d-0ee8-4c27-98e9-0751f1f4d55c"
+ "e7ad0cb6-761a-4882-833a-d8c7953a6b9c"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T145049Z:92f0014d-0ee8-4c27-98e9-0751f1f4d55c"
+ "CENTRALINDIA:20220720T105959Z:e7ad0cb6-761a-4882-833a-d8c7953a6b9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1881,7 +1881,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:50:49 GMT"
+ "Wed, 20 Jul 2022 10:59:59 GMT"
],
"Expires": [
"-1"
@@ -1894,8 +1894,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1914,16 +1914,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-request-id": [
- "60bf7ba8-5408-4a14-891e-caf1a2df0067"
+ "022e85e1-670d-41b7-a4c9-099c6512e9d1"
],
"x-ms-correlation-request-id": [
- "60bf7ba8-5408-4a14-891e-caf1a2df0067"
+ "022e85e1-670d-41b7-a4c9-099c6512e9d1"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220719T145050Z:60bf7ba8-5408-4a14-891e-caf1a2df0067"
+ "CENTRALINDIA:20220720T105959Z:022e85e1-670d-41b7-a4c9-099c6512e9d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1932,7 +1932,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Jul 2022 14:50:49 GMT"
+ "Wed, 20 Jul 2022 10:59:59 GMT"
],
"Expires": [
"-1"
@@ -1947,9 +1947,9 @@
],
"Names": {
"Test-PublishAzureWebAppFromZip": [
- "ps4974",
- "ps2910",
- "ps4505"
+ "ps6826",
+ "ps2270",
+ "ps3443"
]
},
"Variables": {
diff --git a/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
index 21bf670fbcc9..6a97a7f1707e 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
@@ -75,7 +75,7 @@ public override void ExecuteCmdlet()
Action zipDeployAction = () =>
{
if (!Path.IsPathRooted(ArchivePath))
- ArchivePath = (this.SessionState.Path.CurrentFileSystemLocation).Path + ArchivePath.Split(new string[] { ".." }, StringSplitOptions.None)[1];
+ ArchivePath = (this.SessionState.Path.CurrentFileSystemLocation).Path + ArchivePath;
using (var s = File.OpenRead(ArchivePath))
{
HttpClient client = new HttpClient();
From 1605a8caf26b7923b72f8d6f2adb67c7562e327c Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Fri, 22 Jul 2022 15:39:03 +0530
Subject: [PATCH 9/9] Updated review comments
---
.../TestPublishWebAppFromZip.json | 480 +++++++++---------
.../Cmdlets/WebApps/PublishAzureWebApp.cs | 2 +-
2 files changed, 241 insertions(+), 241 deletions(-)
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
index 9a2da3ef5519..f66d9456ba8e 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestPublishWebAppFromZip.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b629a8ad-459b-454a-8495-ad4053df4a07"
+ "f3ca95d4-c5b8-4552-803b-d01ffb43778c"
],
"Accept-Language": [
"en-US"
@@ -30,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "7751a9fb-4394-415b-8c41-3655b3a20609"
+ "ffb01be2-7544-461a-8dfe-ce6b7cf86a9f"
],
"x-ms-correlation-request-id": [
- "7751a9fb-4394-415b-8c41-3655b3a20609"
+ "ffb01be2-7544-461a-8dfe-ce6b7cf86a9f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105629Z:7751a9fb-4394-415b-8c41-3655b3a20609"
+ "JIOINDIACENTRAL:20220722T094016Z:ffb01be2-7544-461a-8dfe-ce6b7cf86a9f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:29 GMT"
+ "Fri, 22 Jul 2022 09:40:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -61,13 +61,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps6826?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNjgyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps5025?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNTAyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ff4bc56-16fe-4546-8d2e-7462b299847e"
+ "5914d44c-ab15-4c97-accd-823fea7143f1"
],
"Accept-Language": [
"en-US"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "ff88ab1e-edc7-4884-b103-75747ef8bc5e"
+ "8caa24d3-219c-40d0-8b08-f6311a810679"
],
"x-ms-correlation-request-id": [
- "ff88ab1e-edc7-4884-b103-75747ef8bc5e"
+ "8caa24d3-219c-40d0-8b08-f6311a810679"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105634Z:ff88ab1e-edc7-4884-b103-75747ef8bc5e"
+ "JIOINDIAWEST:20220722T094021Z:8caa24d3-219c-40d0-8b08-f6311a810679"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:34 GMT"
+ "Fri, 22 Jul 2022 09:40:21 GMT"
],
"Content-Length": [
"165"
@@ -123,17 +123,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826\",\r\n \"name\": \"ps6826\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025\",\r\n \"name\": \"ps5025\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY0MTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"reserved\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a52e76ec-a363-4c4f-8007-1b89f3926f50"
+ "c9aa795f-ecde-48eb-a218-83698644867f"
],
"Accept-Language": [
"en-US"
@@ -162,7 +162,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8781b55e-7495-4652-8ebc-5e6a7f3d8f94"
+ "6d4aa7a4-6cac-4bb9-8be3-621346b1c199"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -177,19 +177,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "9d1bbb03-153b-45bf-989f-f41a11ab3e8c"
+ "210d54d8-1cf6-45ce-a550-75d6a812721f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105647Z:9d1bbb03-153b-45bf-989f-f41a11ab3e8c"
+ "CENTRALINDIA:20220722T094034Z:210d54d8-1cf6-45ce-a550-75d6a812721f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:47 GMT"
+ "Fri, 22 Jul 2022 09:40:34 GMT"
],
"Content-Length": [
- "1418"
+ "1416"
],
"Content-Type": [
"application/json"
@@ -198,17 +198,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n },\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411\",\r\n \"name\": \"ps6411\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 5187,\r\n \"name\": \"ps6411\",\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n },\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5025-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5025\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-211_5187\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2021-01-15",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"ps2270\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"ps6767\",\r\n \"type\": \"Site\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -237,7 +237,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3db03c05-6322-4805-a9b9-eb981ba15a7d"
+ "cdeda10c-4367-47bd-9873-c2c0ddba8e2f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -252,16 +252,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "1434254c-6948-450c-ad1d-4446c3a7f649"
+ "c23d3705-089f-4365-9b66-54581239dfc7"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105648Z:1434254c-6948-450c-ad1d-4446c3a7f649"
+ "JIOINDIACENTRAL:20220722T094037Z:c23d3705-089f-4365-9b66-54581239dfc7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:47 GMT"
+ "Fri, 22 Jul 2022 09:40:37 GMT"
],
"Content-Length": [
"47"
@@ -277,13 +277,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY0MTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -306,7 +306,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "187f1581-3a5e-43f6-a5f7-08887c9ddddd"
+ "24739c9d-8186-410d-aecd-067433427c25"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -321,19 +321,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "cb2d3926-3b27-41b7-b4d9-142a9ece01b2"
+ "f3f27228-4562-4d98-9371-a7647b4a5161"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105649Z:cb2d3926-3b27-41b7-b4d9-142a9ece01b2"
+ "JIOINDIACENTRAL:20220722T094038Z:f3f27228-4562-4d98-9371-a7647b4a5161"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:48 GMT"
+ "Fri, 22 Jul 2022 09:40:38 GMT"
],
"Content-Length": [
- "1344"
+ "1342"
],
"Content-Type": [
"application/json"
@@ -342,17 +342,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411\",\r\n \"name\": \"ps6411\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 5187,\r\n \"name\": \"ps6411\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5025-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5025\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-211_5187\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY0MTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -375,7 +375,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "337833b9-7bfa-4042-b12c-b9320da9ddd7"
+ "b5d160f8-b90a-49f0-af29-8799df8addd4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -387,22 +387,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "85f0e158-0cd1-4b2b-b73d-e8099306e98e"
+ "1ce64e52-2c1d-44e3-b21a-ab4b117702c9"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105651Z:85f0e158-0cd1-4b2b-b73d-e8099306e98e"
+ "JIOINDIACENTRAL:20220722T094043Z:1ce64e52-2c1d-44e3-b21a-ab4b117702c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:50 GMT"
+ "Fri, 22 Jul 2022 09:40:42 GMT"
],
"Content-Length": [
- "1344"
+ "1342"
],
"Content-Type": [
"application/json"
@@ -411,17 +411,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411\",\r\n \"name\": \"ps6411\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 5187,\r\n \"name\": \"ps6411\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5025-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5025\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-211_5187\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczM0NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY0MTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -444,7 +444,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6a643ff7-0d6c-495b-beda-de020ee3db62"
+ "95266291-b163-406f-89f7-77ccdeb0a4c2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -459,19 +459,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5a9f1d47-c45a-42d6-8abc-89289cff3ef2"
+ "0c36b52c-f97f-4f0f-ab75-6a2ddd801ff9"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105652Z:5a9f1d47-c45a-42d6-8abc-89289cff3ef2"
+ "JIOINDIACENTRAL:20220722T094043Z:0c36b52c-f97f-4f0f-ab75-6a2ddd801ff9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:52 GMT"
+ "Fri, 22 Jul 2022 09:40:43 GMT"
],
"Content-Length": [
- "1344"
+ "1342"
],
"Content-Type": [
"application/json"
@@ -480,17 +480,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"name\": \"ps3443\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 19478,\r\n \"name\": \"ps3443\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps6826\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-197_19478\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411\",\r\n \"name\": \"ps6411\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 5187,\r\n \"name\": \"ps6411\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 0,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 0,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5025-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 1,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Shared\",\r\n \"siteMode\": \"Basic\",\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"elasticScaleEnabled\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5025\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-211_5187\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null,\r\n \"kubeEnvironmentProfile\": null,\r\n \"zoneRedundant\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"D1\",\r\n \"tier\": \"Shared\",\r\n \"size\": \"D1\",\r\n \"family\": \"D\",\r\n \"capacity\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3Njc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -513,13 +513,13 @@
"gateway"
],
"x-ms-request-id": [
- "b20f8563-15e4-4158-ad2b-40470c383d8c"
+ "78d3d4fe-162a-410a-829d-933834ccbfc8"
],
"x-ms-correlation-request-id": [
- "b20f8563-15e4-4158-ad2b-40470c383d8c"
+ "78d3d4fe-162a-410a-829d-933834ccbfc8"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105650Z:b20f8563-15e4-4158-ad2b-40470c383d8c"
+ "JIOINDIACENTRAL:20220722T094041Z:78d3d4fe-162a-410a-829d-933834ccbfc8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -528,7 +528,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:49 GMT"
+ "Fri, 22 Jul 2022 09:40:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -540,17 +540,17 @@
"204"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps2270' under resource group 'ps6826' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps6767' under resource group 'ps5025' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3Njc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
+ "e8dc6cb3-934b-4b8e-8c84-85a3a44f7379"
],
"Accept-Language": [
"en-US"
@@ -570,13 +570,13 @@
"no-cache"
],
"ETag": [
- "\"1D89C2770AF71B5\""
+ "\"1D89DAF23238E40\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cafb6d8d-1696-4112-bbbd-33d413e9794a"
+ "7fec7dcb-b9da-4233-8ee2-11397e84715a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -588,22 +588,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11999"
],
"x-ms-correlation-request-id": [
- "6548010f-e388-4b90-acbd-46d96b2e34c8"
+ "646aa03d-d020-49ea-aa9e-cd7374d1a103"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220720T105743Z:6548010f-e388-4b90-acbd-46d96b2e34c8"
+ "CENTRALINDIA:20220722T094127Z:646aa03d-d020-49ea-aa9e-cd7374d1a103"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:43 GMT"
+ "Fri, 22 Jul 2022 09:41:27 GMT"
],
"Content-Length": [
- "5960"
+ "5986"
],
"Content-Type": [
"application/json"
@@ -612,17 +612,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2270\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2270.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-197.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps6826-WestUSwebspace/sites/ps2270\",\r\n \"repositorySiteName\": \"ps2270\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2270.azurewebsites.net\",\r\n \"ps2270.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2270.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2270.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-20T10:57:01.5633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2270\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.66\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.66\",\r\n \"ftpUsername\": \"ps2270\\\\$ps2270\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-197.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,40.112.243.66\",\r\n \"possibleOutboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,138.91.243.158,138.91.251.247,138.91.249.225,138.91.248.210,138.91.248.20,23.99.86.21,138.91.248.132,23.99.86.61,23.99.86.122,138.91.251.255,23.99.86.230,23.99.86.48,23.99.84.6,157.56.167.194,23.99.84.65,23.99.84.85,23.99.84.112,23.99.84.237,104.40.26.248,137.135.49.75,138.91.246.140,138.91.245.60,23.99.84.253,23.99.85.58,40.112.243.66\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-197\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps6826\",\r\n \"defaultHostName\": \"ps2270.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767\",\r\n \"name\": \"ps6767\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps6767\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps6767.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5025-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-211.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5025-WestUSwebspace/sites/ps6767\",\r\n \"repositorySiteName\": \"ps6767\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps6767.azurewebsites.net\",\r\n \"ps6767.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps6767.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps6767.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-22T09:40:54.18\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps6767\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.100\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.100\",\r\n \"ftpUsername\": \"ps6767\\\\$ps6767\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-211.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,40.112.243.100\",\r\n \"possibleOutboundIpAddresses\": \"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,20.237.251.60,20.237.252.25,20.237.252.118,20.237.253.80,20.237.254.48,20.237.254.59,20.237.252.12,20.237.252.27,20.237.253.174,20.237.254.98,20.237.254.101,20.237.251.38,20.237.254.186,20.237.249.154,20.237.255.58,20.237.254.162,20.237.254.204,20.237.255.0,20.237.255.39,20.237.255.66,20.237.255.85,20.237.255.106,20.237.255.110,20.237.252.184,40.112.243.100\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-211\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5025\",\r\n \"defaultHostName\": \"ps6767.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps6826?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNjgyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps5025?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNTAyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -642,16 +642,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "89001dd3-1a05-4d6a-a518-7ccc949f4460"
+ "52f6f851-6175-4c28-9f49-bd1e3f9c2962"
],
"x-ms-correlation-request-id": [
- "89001dd3-1a05-4d6a-a518-7ccc949f4460"
+ "52f6f851-6175-4c28-9f49-bd1e3f9c2962"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105650Z:89001dd3-1a05-4d6a-a518-7ccc949f4460"
+ "JIOINDIACENTRAL:20220722T094041Z:52f6f851-6175-4c28-9f49-bd1e3f9c2962"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -660,7 +660,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:56:49 GMT"
+ "Fri, 22 Jul 2022 09:40:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -672,17 +672,17 @@
"165"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826\",\r\n \"name\": \"ps6826\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025\",\r\n \"name\": \"ps5025\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3Njc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverFarms/ps3443\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverFarms/ps6411\"\r\n },\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -708,13 +708,13 @@
"no-cache"
],
"ETag": [
- "\"1D89C2770AF71B5\""
+ "\"1D89DAF23238E40\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f32f3b3a-4107-4151-8d12-b54742f432fe"
+ "3bfa2b7b-0def-4a18-8f50-d1955ebd2166"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -729,19 +729,19 @@
"499"
],
"x-ms-correlation-request-id": [
- "f3dbc6fd-3efe-4c29-ae20-1160833d5aa5"
+ "2ea7b8df-2023-45e0-ab3c-d716958d330e"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105721Z:f3dbc6fd-3efe-4c29-ae20-1160833d5aa5"
+ "JIOINDIACENTRAL:20220722T094111Z:2ea7b8df-2023-45e0-ab3c-d716958d330e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:21 GMT"
+ "Fri, 22 Jul 2022 09:41:10 GMT"
],
"Content-Length": [
- "6160"
+ "6185"
],
"Content-Type": [
"application/json"
@@ -750,17 +750,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps2270\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps2270.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps6826-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-197.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps6826-WestUSwebspace/sites/ps2270\",\r\n \"repositorySiteName\": \"ps2270\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps2270.azurewebsites.net\",\r\n \"ps2270.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps2270.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps2270.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/serverfarms/ps3443\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-20T10:57:01.4966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps2270\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.66\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.66\",\r\n \"ftpUsername\": \"ps2270\\\\$ps2270\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-197.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,40.112.243.66\",\r\n \"possibleOutboundIpAddresses\": \"138.91.244.219,138.91.245.98,138.91.240.141,138.91.246.37,138.91.241.29,138.91.162.240,138.91.243.158,138.91.251.247,138.91.249.225,138.91.248.210,138.91.248.20,23.99.86.21,138.91.248.132,23.99.86.61,23.99.86.122,138.91.251.255,23.99.86.230,23.99.86.48,23.99.84.6,157.56.167.194,23.99.84.65,23.99.84.85,23.99.84.112,23.99.84.237,104.40.26.248,137.135.49.75,138.91.246.140,138.91.245.60,23.99.84.253,23.99.85.58,40.112.243.66\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-197\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps6826\",\r\n \"defaultHostName\": \"ps2270.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767\",\r\n \"name\": \"ps6767\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps6767\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps6767.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5025-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-211.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5025-WestUSwebspace/sites/ps6767\",\r\n \"repositorySiteName\": \"ps6767\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps6767.azurewebsites.net\",\r\n \"ps6767.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps6767.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps6767.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/serverfarms/ps6411\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2022-07-22T09:40:54.1\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"ps6767\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Shared\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.100\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.100\",\r\n \"ftpUsername\": \"ps6767\\\\$ps6767\",\r\n \"ftpsHostName\": \"ftps://waws-prod-bay-211.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,40.112.243.100\",\r\n \"possibleOutboundIpAddresses\": \"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,20.237.251.60,20.237.252.25,20.237.252.118,20.237.253.80,20.237.254.48,20.237.254.59,20.237.252.12,20.237.252.27,20.237.253.174,20.237.254.98,20.237.254.101,20.237.251.38,20.237.254.186,20.237.249.154,20.237.255.58,20.237.254.162,20.237.254.204,20.237.255.0,20.237.255.39,20.237.255.66,20.237.255.85,20.237.255.106,20.237.255.110,20.237.252.184,40.112.243.100\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-211\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5025\",\r\n \"defaultHostName\": \"ps6767.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/web?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -783,7 +783,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6cc9876-1ae3-43ce-95a6-3b90f766e175"
+ "a3f0d9d4-600d-4b94-a036-62da54b41627"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -798,16 +798,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "02d30dd1-41b4-4ce5-ad41-767bb15a3249"
+ "883ea0e2-796e-4173-b71d-cbb1887f8275"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105722Z:02d30dd1-41b4-4ce5-ad41-767bb15a3249"
+ "JIOINDIACENTRAL:20220722T094112Z:883ea0e2-796e-4173-b71d-cbb1887f8275"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:22 GMT"
+ "Fri, 22 Jul 2022 09:41:11 GMT"
],
"Content-Length": [
"3781"
@@ -819,17 +819,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2270\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/web\",\r\n \"name\": \"ps6767\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps6767\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/web?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
+ "e8dc6cb3-934b-4b8e-8c84-85a3a44f7379"
],
"Accept-Language": [
"en-US"
@@ -852,7 +852,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "930a599c-6dc8-46a3-a392-9a927582b575"
+ "e944d965-aa55-47c3-b5dd-f0110596f464"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -864,19 +864,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11998"
],
"x-ms-correlation-request-id": [
- "b52b2dc4-418d-4283-9bca-14794a02ddd5"
+ "99f17ca0-8c49-41a7-b22d-1125c8cc9f65"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220720T105745Z:b52b2dc4-418d-4283-9bca-14794a02ddd5"
+ "CENTRALINDIA:20220722T094128Z:99f17ca0-8c49-41a7-b22d-1125c8cc9f65"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:44 GMT"
+ "Fri, 22 Jul 2022 09:41:27 GMT"
],
"Content-Length": [
"3781"
@@ -888,17 +888,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/web\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps2270\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/web\",\r\n \"name\": \"ps6767\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps6767\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/appsettings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -921,7 +921,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef3e7a46-3bef-48a8-8457-3b556a9c04f7"
+ "f37c8f4c-5fdc-4c91-8313-70c22ec140d4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -936,16 +936,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "74a717c6-8bc9-48f3-a345-5a7e4691221f"
+ "321b21d4-dc34-42c7-b9d1-3457c9a5c465"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105723Z:74a717c6-8bc9-48f3-a345-5a7e4691221f"
+ "JIOINDIACENTRAL:20220722T094113Z:321b21d4-dc34-42c7-b9d1-3457c9a5c465"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:23 GMT"
+ "Fri, 22 Jul 2022 09:41:12 GMT"
],
"Content-Length": [
"270"
@@ -957,17 +957,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/appsettings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
+ "e8dc6cb3-934b-4b8e-8c84-85a3a44f7379"
],
"Accept-Language": [
"en-US"
@@ -990,7 +990,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95ae7582-5245-4f11-8028-bf766601e0d3"
+ "2da22093-8262-4678-ac38-d60ee138948a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1005,16 +1005,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "9a232c59-d424-4070-bd8d-99fc1085b344"
+ "b92d38f4-6f66-4901-88aa-1e50edbea2d0"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220720T105746Z:9a232c59-d424-4070-bd8d-99fc1085b344"
+ "CENTRALINDIA:20220722T094128Z:b92d38f4-6f66-4901-88aa-1e50edbea2d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:45 GMT"
+ "Fri, 22 Jul 2022 09:41:28 GMT"
],
"Content-Length": [
"270"
@@ -1026,17 +1026,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/connectionstrings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -1059,7 +1059,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6c1224a4-9f9d-467c-9a65-e21bb6e85880"
+ "4e6b6fc3-5c40-403c-9f90-c654a5e2e6ab"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1074,16 +1074,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "a67387d2-6cb2-4317-8f82-3698e49f8c47"
+ "e28ac7f3-1cb3-4149-bef0-1a158d89f018"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105724Z:a67387d2-6cb2-4317-8f82-3698e49f8c47"
+ "JIOINDIACENTRAL:20220722T094113Z:e28ac7f3-1cb3-4149-bef0-1a158d89f018"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:24 GMT"
+ "Fri, 22 Jul 2022 09:41:12 GMT"
],
"Content-Length": [
"244"
@@ -1095,17 +1095,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/connectionstrings/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
+ "e8dc6cb3-934b-4b8e-8c84-85a3a44f7379"
],
"Accept-Language": [
"en-US"
@@ -1128,7 +1128,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3d14a74c-613e-410d-a32c-4dd024a109a3"
+ "e2d0fe90-f445-4d60-ac54-4981f0156daa"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1143,16 +1143,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "a1538def-4e61-45c3-8e51-578208b72705"
+ "9d203b40-1425-4b05-9a96-acc496dbb59e"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220720T105746Z:a1538def-4e61-45c3-8e51-578208b72705"
+ "CENTRALINDIA:20220722T094129Z:9d203b40-1425-4b05-9a96-acc496dbb59e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:45 GMT"
+ "Fri, 22 Jul 2022 09:41:28 GMT"
],
"Content-Length": [
"244"
@@ -1164,17 +1164,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/publishxml?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/publishxml?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0d820fc-7fa1-4a4b-b12c-890ce9ecaf87"
+ "ff5bdcdc-3da0-4ffa-a243-d8d93447132d"
],
"Accept-Language": [
"en-US"
@@ -1215,19 +1215,19 @@
"11999"
],
"x-ms-request-id": [
- "8347e7f7-f96f-4705-8b0e-8ea661a554ac"
+ "62260c73-ee2a-48b0-93a2-f5ff1dc39623"
],
"x-ms-correlation-request-id": [
- "8347e7f7-f96f-4705-8b0e-8ea661a554ac"
+ "62260c73-ee2a-48b0-93a2-f5ff1dc39623"
],
"x-ms-routing-request-id": [
- "JIOINDIAWEST:20220720T105725Z:8347e7f7-f96f-4705-8b0e-8ea661a554ac"
+ "JIOINDIACENTRAL:20220722T094114Z:62260c73-ee2a-48b0-93a2-f5ff1dc39623"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:25 GMT"
+ "Fri, 22 Jul 2022 09:41:13 GMT"
],
"Content-Length": [
"1433"
@@ -1239,17 +1239,17 @@
"-1"
]
},
- "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/publishingcredentials/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL3B1Ymxpc2hpbmdjcmVkZW50aWFscy9saXN0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/publishingcredentials/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL3B1Ymxpc2hpbmdjcmVkZW50aWFscy9saXN0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
+ "e8dc6cb3-934b-4b8e-8c84-85a3a44f7379"
],
"Accept-Language": [
"en-US"
@@ -1272,7 +1272,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "287efecb-d748-49ff-a620-b14771d973cf"
+ "b641c579-32db-47a5-9499-9d3fbd321892"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1287,16 +1287,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "66236864-7751-4f9e-bee9-d802176c5d6f"
+ "098a2632-884a-4283-8472-71b10770e419"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220720T105727Z:66236864-7751-4f9e-bee9-d802176c5d6f"
+ "CENTRALINDIA:20220722T094116Z:098a2632-884a-4283-8472-71b10770e419"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:26 GMT"
+ "Fri, 22 Jul 2022 09:41:15 GMT"
],
"Content-Length": [
"594"
@@ -1308,17 +1308,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/publishingcredentials/$ps2270\",\r\n \"name\": \"ps2270\",\r\n \"type\": \"Microsoft.Web/sites/publishingcredentials\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": null,\r\n \"publishingUserName\": \"$ps2270\",\r\n \"publishingPassword\": \"CqxiQ3cjoPt0fuenoqZYTqbqv0DfGnbfnCccHT4Fnu8co9wrd2CEgCevJfEm\",\r\n \"publishingPasswordHash\": null,\r\n \"publishingPasswordHashSalt\": null,\r\n \"metadata\": null,\r\n \"isDeleted\": false,\r\n \"scmUri\": \"https://$ps2270:CqxiQ3cjoPt0fuenoqZYTqbqv0DfGnbfnCccHT4Fnu8co9wrd2CEgCevJfEm@ps2270.scm.azurewebsites.net\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/publishingcredentials/$ps6767\",\r\n \"name\": \"ps6767\",\r\n \"type\": \"Microsoft.Web/sites/publishingcredentials\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": null,\r\n \"publishingUserName\": \"$ps6767\",\r\n \"publishingPassword\": \"XT3ZyL8med6tYbqD9Q9vGZnWg4C7ss1ybxNCTZkf2mdKhRkbG9za8kutmZBk\",\r\n \"publishingPasswordHash\": null,\r\n \"publishingPasswordHashSalt\": null,\r\n \"metadata\": null,\r\n \"isDeleted\": false,\r\n \"scmUri\": \"https://$ps6767:XT3ZyL8med6tYbqD9Q9vGZnWg4C7ss1ybxNCTZkf2mdKhRkbG9za8kutmZBk@ps6767.scm.azurewebsites.net\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/azurestorageaccounts/list?api-version=2021-01-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNjgyNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczIyNzAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/azurestorageaccounts/list?api-version=2021-01-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczY3NjcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d4b7c85-ed89-4666-8c53-847dd3efe2f3"
+ "e8dc6cb3-934b-4b8e-8c84-85a3a44f7379"
],
"Accept-Language": [
"en-US"
@@ -1341,7 +1341,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98596da9-ff3d-428b-a7ec-d9c507f6c657"
+ "fdd450de-7460-48db-9d85-9032dea7de6e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1356,16 +1356,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "772ebcd8-7138-4780-b688-315b578ed05a"
+ "5fc110d4-a9a1-45f3-a4cc-17821ba9ca65"
],
"x-ms-routing-request-id": [
- "JIOINDIACENTRAL:20220720T105747Z:772ebcd8-7138-4780-b688-315b578ed05a"
+ "CENTRALINDIA:20220722T094129Z:5fc110d4-a9a1-45f3-a4cc-17821ba9ca65"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:46 GMT"
+ "Fri, 22 Jul 2022 09:41:29 GMT"
],
"Content-Length": [
"241"
@@ -1377,17 +1377,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps6826/providers/Microsoft.Web/sites/ps2270/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5025/providers/Microsoft.Web/sites/ps6767/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps6826?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNjgyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps5025?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNTAyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "905aaf8a-cf2f-42f4-b0c4-b3494d613fad"
+ "b5f37a88-90df-4d83-b8bb-64b29ac06a01"
],
"Accept-Language": [
"en-US"
@@ -1407,7 +1407,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1416,13 +1416,13 @@
"14999"
],
"x-ms-request-id": [
- "950749a7-7f1f-4cfc-a7e3-a5f233b18a4f"
+ "7fb5a952-97c4-4718-920d-4a901d9cf038"
],
"x-ms-correlation-request-id": [
- "950749a7-7f1f-4cfc-a7e3-a5f233b18a4f"
+ "7fb5a952-97c4-4718-920d-4a901d9cf038"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105755Z:950749a7-7f1f-4cfc-a7e3-a5f233b18a4f"
+ "CENTRALINDIA:20220722T094137Z:7fb5a952-97c4-4718-920d-4a901d9cf038"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1431,7 +1431,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:57:55 GMT"
+ "Fri, 22 Jul 2022 09:41:36 GMT"
],
"Expires": [
"-1"
@@ -1444,8 +1444,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1464,7 +1464,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1473,13 +1473,13 @@
"11999"
],
"x-ms-request-id": [
- "da8c5543-932f-4526-bf82-ef2d873c6bcc"
+ "d4cf4cdf-6fb6-4319-81b2-6351966b56d6"
],
"x-ms-correlation-request-id": [
- "da8c5543-932f-4526-bf82-ef2d873c6bcc"
+ "d4cf4cdf-6fb6-4319-81b2-6351966b56d6"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105810Z:da8c5543-932f-4526-bf82-ef2d873c6bcc"
+ "CENTRALINDIA:20220722T094152Z:d4cf4cdf-6fb6-4319-81b2-6351966b56d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1488,7 +1488,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:58:10 GMT"
+ "Fri, 22 Jul 2022 09:41:52 GMT"
],
"Expires": [
"-1"
@@ -1501,8 +1501,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1521,7 +1521,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1530,13 +1530,13 @@
"11998"
],
"x-ms-request-id": [
- "8aaa9969-06f8-4b62-b5af-b477a66f6831"
+ "f26a6fb7-bc2f-4eef-a776-551d9a082070"
],
"x-ms-correlation-request-id": [
- "8aaa9969-06f8-4b62-b5af-b477a66f6831"
+ "f26a6fb7-bc2f-4eef-a776-551d9a082070"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105826Z:8aaa9969-06f8-4b62-b5af-b477a66f6831"
+ "CENTRALINDIA:20220722T094208Z:f26a6fb7-bc2f-4eef-a776-551d9a082070"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1545,7 +1545,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:58:25 GMT"
+ "Fri, 22 Jul 2022 09:42:07 GMT"
],
"Expires": [
"-1"
@@ -1558,8 +1558,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1578,7 +1578,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1587,13 +1587,13 @@
"11997"
],
"x-ms-request-id": [
- "f089ce64-030c-49cb-88ca-33e157c544df"
+ "271461ef-d71b-4abc-8b53-1a102064cf99"
],
"x-ms-correlation-request-id": [
- "f089ce64-030c-49cb-88ca-33e157c544df"
+ "271461ef-d71b-4abc-8b53-1a102064cf99"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105841Z:f089ce64-030c-49cb-88ca-33e157c544df"
+ "CENTRALINDIA:20220722T094223Z:271461ef-d71b-4abc-8b53-1a102064cf99"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1602,7 +1602,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:58:41 GMT"
+ "Fri, 22 Jul 2022 09:42:23 GMT"
],
"Expires": [
"-1"
@@ -1615,8 +1615,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1635,7 +1635,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1644,13 +1644,13 @@
"11996"
],
"x-ms-request-id": [
- "e41171b0-4660-4def-b395-0fd455addaa1"
+ "88503140-e30f-4da5-a46f-8bd244081c33"
],
"x-ms-correlation-request-id": [
- "e41171b0-4660-4def-b395-0fd455addaa1"
+ "88503140-e30f-4da5-a46f-8bd244081c33"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105857Z:e41171b0-4660-4def-b395-0fd455addaa1"
+ "CENTRALINDIA:20220722T094239Z:88503140-e30f-4da5-a46f-8bd244081c33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1659,7 +1659,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:58:57 GMT"
+ "Fri, 22 Jul 2022 09:42:39 GMT"
],
"Expires": [
"-1"
@@ -1672,8 +1672,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1692,7 +1692,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1701,13 +1701,13 @@
"11995"
],
"x-ms-request-id": [
- "91df82a5-10d2-467e-8de9-4db4fd06e35d"
+ "55879824-d02b-44c9-9961-b527c6df4925"
],
"x-ms-correlation-request-id": [
- "91df82a5-10d2-467e-8de9-4db4fd06e35d"
+ "55879824-d02b-44c9-9961-b527c6df4925"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105912Z:91df82a5-10d2-467e-8de9-4db4fd06e35d"
+ "CENTRALINDIA:20220722T094254Z:55879824-d02b-44c9-9961-b527c6df4925"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1716,7 +1716,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:59:12 GMT"
+ "Fri, 22 Jul 2022 09:42:54 GMT"
],
"Expires": [
"-1"
@@ -1729,8 +1729,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1749,7 +1749,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1758,13 +1758,13 @@
"11994"
],
"x-ms-request-id": [
- "7676bbd4-306b-4c92-8d8d-b29132cc9ebe"
+ "94c93bf5-c61f-4b31-8c29-6ef50b2d0399"
],
"x-ms-correlation-request-id": [
- "7676bbd4-306b-4c92-8d8d-b29132cc9ebe"
+ "94c93bf5-c61f-4b31-8c29-6ef50b2d0399"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105928Z:7676bbd4-306b-4c92-8d8d-b29132cc9ebe"
+ "CENTRALINDIA:20220722T094310Z:94c93bf5-c61f-4b31-8c29-6ef50b2d0399"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1773,7 +1773,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:59:27 GMT"
+ "Fri, 22 Jul 2022 09:43:09 GMT"
],
"Expires": [
"-1"
@@ -1786,8 +1786,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1806,7 +1806,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1815,13 +1815,13 @@
"11993"
],
"x-ms-request-id": [
- "0d85f291-4dd9-42a3-ace9-f9478d3b7bc6"
+ "8ae003e9-ec5d-4b72-80d0-4aafa32c041a"
],
"x-ms-correlation-request-id": [
- "0d85f291-4dd9-42a3-ace9-f9478d3b7bc6"
+ "8ae003e9-ec5d-4b72-80d0-4aafa32c041a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105943Z:0d85f291-4dd9-42a3-ace9-f9478d3b7bc6"
+ "CENTRALINDIA:20220722T094326Z:8ae003e9-ec5d-4b72-80d0-4aafa32c041a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:59:43 GMT"
+ "Fri, 22 Jul 2022 09:43:25 GMT"
],
"Expires": [
"-1"
@@ -1843,8 +1843,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1866,13 +1866,13 @@
"11992"
],
"x-ms-request-id": [
- "e7ad0cb6-761a-4882-833a-d8c7953a6b9c"
+ "eeee2463-0f66-4ea5-b685-6159e6a83486"
],
"x-ms-correlation-request-id": [
- "e7ad0cb6-761a-4882-833a-d8c7953a6b9c"
+ "eeee2463-0f66-4ea5-b685-6159e6a83486"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105959Z:e7ad0cb6-761a-4882-833a-d8c7953a6b9c"
+ "CENTRALINDIA:20220722T094341Z:eeee2463-0f66-4ea5-b685-6159e6a83486"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1881,7 +1881,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:59:59 GMT"
+ "Fri, 22 Jul 2022 09:43:41 GMT"
],
"Expires": [
"-1"
@@ -1894,8 +1894,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUwMjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVd01qVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1917,13 +1917,13 @@
"11991"
],
"x-ms-request-id": [
- "022e85e1-670d-41b7-a4c9-099c6512e9d1"
+ "32375830-e5f2-4ee1-9a7b-6b459918fa46"
],
"x-ms-correlation-request-id": [
- "022e85e1-670d-41b7-a4c9-099c6512e9d1"
+ "32375830-e5f2-4ee1-9a7b-6b459918fa46"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20220720T105959Z:022e85e1-670d-41b7-a4c9-099c6512e9d1"
+ "CENTRALINDIA:20220722T094342Z:32375830-e5f2-4ee1-9a7b-6b459918fa46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1932,7 +1932,7 @@
"nosniff"
],
"Date": [
- "Wed, 20 Jul 2022 10:59:59 GMT"
+ "Fri, 22 Jul 2022 09:43:41 GMT"
],
"Expires": [
"-1"
@@ -1947,9 +1947,9 @@
],
"Names": {
"Test-PublishAzureWebAppFromZip": [
- "ps6826",
- "ps2270",
- "ps3443"
+ "ps5025",
+ "ps6767",
+ "ps6411"
]
},
"Variables": {
diff --git a/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs b/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
index 6a97a7f1707e..f72dce48c308 100644
--- a/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
+++ b/src/Websites/Websites/Cmdlets/WebApps/PublishAzureWebApp.cs
@@ -75,7 +75,7 @@ public override void ExecuteCmdlet()
Action zipDeployAction = () =>
{
if (!Path.IsPathRooted(ArchivePath))
- ArchivePath = (this.SessionState.Path.CurrentFileSystemLocation).Path + ArchivePath;
+ ArchivePath = Path.Combine(this.SessionState.Path.CurrentFileSystemLocation.Path, ArchivePath);
using (var s = File.OpenRead(ArchivePath))
{
HttpClient client = new HttpClient();